SET FOREIGN_KEY_CHECKS = 0;
DROP TABLE IF EXISTS `wp_commentmeta`;
SET character_set_client = utf8;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
INSERT INTO `wp_commentmeta` VALUES("1","8","rating","4");
INSERT INTO `wp_commentmeta` VALUES("2","8","verified","0");
INSERT INTO `wp_commentmeta` VALUES("7","10","rating","4");
INSERT INTO `wp_commentmeta` VALUES("8","10","verified","0");
INSERT INTO `wp_commentmeta` VALUES("9","11","rating","5");
INSERT INTO `wp_commentmeta` VALUES("10","11","verified","0");
INSERT INTO `wp_commentmeta` VALUES("11","12","rating","2");
INSERT INTO `wp_commentmeta` VALUES("12","12","verified","0");
INSERT INTO `wp_commentmeta` VALUES("13","13","rating","3");
INSERT INTO `wp_commentmeta` VALUES("14","13","verified","0");
INSERT INTO `wp_commentmeta` VALUES("15","14","rating","3");
INSERT INTO `wp_commentmeta` VALUES("16","14","verified","0");
INSERT INTO `wp_commentmeta` VALUES("17","15","rating","5");
INSERT INTO `wp_commentmeta` VALUES("18","15","verified","0");
INSERT INTO `wp_commentmeta` VALUES("19","16","rating","5");
INSERT INTO `wp_commentmeta` VALUES("20","16","verified","0");
INSERT INTO `wp_commentmeta` VALUES("21","17","rating","4");
INSERT INTO `wp_commentmeta` VALUES("22","17","verified","0");
INSERT INTO `wp_commentmeta` VALUES("23","18","rating","3");
INSERT INTO `wp_commentmeta` VALUES("24","18","verified","0");
INSERT INTO `wp_commentmeta` VALUES("25","19","rating","4");
INSERT INTO `wp_commentmeta` VALUES("26","19","verified","0");
INSERT INTO `wp_commentmeta` VALUES("27","20","rating","4");
INSERT INTO `wp_commentmeta` VALUES("28","20","verified","0");
INSERT INTO `wp_commentmeta` VALUES("29","21","rating","5");
INSERT INTO `wp_commentmeta` VALUES("30","21","verified","0");
DROP TABLE IF EXISTS `wp_comments`;
SET character_set_client = utf8;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10)),
KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
INSERT INTO `wp_comments` VALUES("1","1","A WordPress Commenter","wapuu@wordpress.example","https://wordpress.org/","","2017-06-04 23:05:23","2017-06-04 23:05:23","Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from Gravatar.","0","post-trashed","","","0","0");
INSERT INTO `wp_comments` VALUES("8","4928","Walter","themewpdemo@gmail.com","","127.0.0.1","2018-01-16 14:53:13","2018-01-16 14:53:13","Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\r\ntempor incididunt ut labore et dolore magna aliqua.","0","post-trashed","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36","","0","0");
INSERT INTO `wp_comments` VALUES("10","4927","Walter","themewpdemo@gmail.com","","127.0.0.1","2018-01-16 16:45:49","2018-01-16 16:45:49","Strip steak sausage shank filet mignon, pork sirloin venison kielbasa ham spare ribs.","0","post-trashed","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36","","0","0");
INSERT INTO `wp_comments` VALUES("11","4925","Walter","themewpdemo@gmail.com","","127.0.0.1","2018-01-16 16:54:11","2018-01-16 16:54:11","Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\r\ntempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam","0","post-trashed","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36","","0","0");
INSERT INTO `wp_comments` VALUES("12","4924","Walter","themewpdemo@gmail.com","","127.0.0.1","2018-01-16 16:55:22","2018-01-16 16:55:22","Duis aute irure dolor in reprehenderit in voluptate velit esse\r\ncillum dolore eu fugiat nulla pariatur.","0","post-trashed","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36","","0","0");
INSERT INTO `wp_comments` VALUES("13","4929","Walter","themewpdemo@gmail.com","","127.0.0.1","2018-01-16 16:56:44","2018-01-16 16:56:44","Excepteur sint occaecat cupidatat non\r\nproident, sunt in culpa qui officia deserunt mollit anim id est laborum.","0","post-trashed","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36","","0","0");
INSERT INTO `wp_comments` VALUES("14","4926","Walter","themewpdemo@gmail.com","","127.0.0.1","2018-01-16 17:00:44","2018-01-16 17:00:44","Excepteur sint occaecat cupidatat non\r\nproident, sunt in culpa qui officia deserunt mollit anim id est laborum.","0","post-trashed","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36","","0","0");
INSERT INTO `wp_comments` VALUES("15","23","One Customer","onecustomer@woo.com","","127.0.0.1","2017-11-10 11:39:54","2017-11-10 11:39:54","I love how the ? emoji puts me in a great mood every day I wear this hoodie.","0","1","","","0","0");
INSERT INTO `wp_comments` VALUES("16","35","One Customer","onecustomer@woo.com","","127.0.0.1","2017-11-10 11:37:32","2017-11-10 11:37:32","This amazing leather belt keeps my pants where they are supposed to be.","0","1","","","0","0");
INSERT INTO `wp_comments` VALUES("17","37","One Customer","onecustomer@woo.com","","127.0.0.1","2017-11-10 11:38:24","2017-11-10 11:38:24","Perfect for sunny, rainy, and bad hair days.","0","1","","","0","0");
INSERT INTO `wp_comments` VALUES("18","37","Another Customer","anothercustomer@woo.com","","127.0.0.1","2017-11-10 11:42:03","2017-11-10 11:42:03","I love the cap, but I\'d love it even more if it came in WooCommerce purple.","0","1","","","0","0");
INSERT INTO `wp_comments` VALUES("19","50","Another Customer","anothercustomer@woo.com","","127.0.0.1","2017-11-10 11:42:37","2017-11-10 11:42:37","This album is on repeat the whole time. I can\'t stop listening to it.","0","1","","","0","0");
INSERT INTO `wp_comments` VALUES("20","52","admin","themewpdemo@gmail.com","","127.0.0.1","2018-04-23 11:40:50","2018-04-23 11:40:50","Very nice product!","0","1","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36","","0","1");
INSERT INTO `wp_comments` VALUES("21","24","admin","themewpdemo@gmail.com","","127.0.0.1","2018-04-27 06:29:27","2018-04-27 06:29:27","Awesome product!","0","1","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36","","0","1");
DROP TABLE IF EXISTS `wp_cp_orders`;
SET character_set_client = utf8;
CREATE TABLE `wp_cp_orders` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`item` text COLLATE utf8mb4_unicode_ci NOT NULL,
`price` text COLLATE utf8mb4_unicode_ci,
`currency` text COLLATE utf8mb4_unicode_ci,
`payment_address` text COLLATE utf8mb4_unicode_ci,
`name` text COLLATE utf8mb4_unicode_ci NOT NULL,
`email` text COLLATE utf8mb4_unicode_ci NOT NULL,
`address` text COLLATE utf8mb4_unicode_ci,
`telephone` text COLLATE utf8mb4_unicode_ci,
`description` text COLLATE utf8mb4_unicode_ci,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
DROP TABLE IF EXISTS `wp_links`;
SET character_set_client = utf8;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
DROP TABLE IF EXISTS `wp_options`;
SET character_set_client = utf8;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=41470 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
INSERT INTO `wp_options` VALUES("8","use_balanceTags","0","yes");
INSERT INTO `wp_options` VALUES("10","require_name_email","1","yes");
INSERT INTO `wp_options` VALUES("11","comments_notify","1","yes");
INSERT INTO `wp_options` VALUES("12","posts_per_rss","10","yes");
INSERT INTO `wp_options` VALUES("13","rss_use_excerpt","1","yes");
INSERT INTO `wp_options` VALUES("18","default_category","138","yes");
INSERT INTO `wp_options` VALUES("19","default_comment_status","open","yes");
INSERT INTO `wp_options` VALUES("20","default_ping_status","open","yes");
INSERT INTO `wp_options` VALUES("21","default_pingback_flag","1","yes");
INSERT INTO `wp_options` VALUES("22","posts_per_page","6","yes");
INSERT INTO `wp_options` VALUES("26","comment_moderation","1","yes");
INSERT INTO `wp_options` VALUES("28","permalink_structure","/%postname%/","yes");
INSERT INTO `wp_options` VALUES("30","hack_file","0","yes");
INSERT INTO `wp_options` VALUES("32","moderation_keys","","no");
INSERT INTO `wp_options` VALUES("34","category_base","","yes");
INSERT INTO `wp_options` VALUES("36","comment_max_links","2","yes");
INSERT INTO `wp_options` VALUES("38","default_email_category","1","yes");
INSERT INTO `wp_options` VALUES("42","comment_whitelist","","yes");
INSERT INTO `wp_options` VALUES("45","html_type","text/html","yes");
INSERT INTO `wp_options` VALUES("48","db_version","43764","yes");
INSERT INTO `wp_options` VALUES("52","default_link_category","0","yes");
INSERT INTO `wp_options` VALUES("53","show_on_front","page","yes");
INSERT INTO `wp_options` VALUES("54","tag_base","","yes");
INSERT INTO `wp_options` VALUES("55","show_avatars","1","yes");
INSERT INTO `wp_options` VALUES("56","avatar_rating","G","yes");
INSERT INTO `wp_options` VALUES("58","thumbnail_size_w","150","yes");
INSERT INTO `wp_options` VALUES("59","thumbnail_size_h","150","yes");
INSERT INTO `wp_options` VALUES("60","thumbnail_crop","","yes");
INSERT INTO `wp_options` VALUES("61","medium_size_w","300","yes");
INSERT INTO `wp_options` VALUES("62","medium_size_h","300","yes");
INSERT INTO `wp_options` VALUES("63","avatar_default","mystery","yes");
INSERT INTO `wp_options` VALUES("64","large_size_w","1024","yes");
INSERT INTO `wp_options` VALUES("65","large_size_h","1024","yes");
INSERT INTO `wp_options` VALUES("66","image_default_link_type","","yes");
INSERT INTO `wp_options` VALUES("67","image_default_size","","yes");
INSERT INTO `wp_options` VALUES("68","image_default_align","","yes");
INSERT INTO `wp_options` VALUES("69","close_comments_for_old_posts","","yes");
INSERT INTO `wp_options` VALUES("70","close_comments_days_old","14","yes");
INSERT INTO `wp_options` VALUES("71","thread_comments","1","yes");
INSERT INTO `wp_options` VALUES("72","thread_comments_depth","5","yes");
INSERT INTO `wp_options` VALUES("73","page_comments","","yes");
INSERT INTO `wp_options` VALUES("74","comments_per_page","50","yes");
INSERT INTO `wp_options` VALUES("75","default_comments_page","newest","yes");
INSERT INTO `wp_options` VALUES("76","comment_order","asc","yes");
INSERT INTO `wp_options` VALUES("77","sticky_posts","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("78","widget_categories","a:2:{i:3;a:5:{s:5:\"title\";s:10:\"Categories\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:1;s:8:\"dropdown\";i:0;s:7:\"classes\";s:7:\"special\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("79","widget_text","a:3:{i:4;a:5:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:80:\"[instagram-feed num=6 cols=3 showfollow=false showheader=false showbutton=false]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:7:\"classes\";s:0:\"\";}i:5;a:5:{s:5:\"title\";s:11:\"Text Widget\";s:4:\"text\";s:257:\"Text bold italic link\r\n\r\nLorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore.\r\n
\r\n \t- Item 1
\r\n \t- Item 2
\r\n \t- Item 3
\r\n
\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:7:\"classes\";s:7:\"special\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("80","widget_rss","a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("84","page_on_front","7","yes");
INSERT INTO `wp_options` VALUES("85","default_post_format","0","yes");
INSERT INTO `wp_options` VALUES("86","link_manager_enabled","0","yes");
INSERT INTO `wp_options` VALUES("87","finished_splitting_shared_terms","1","yes");
INSERT INTO `wp_options` VALUES("88","site_icon","6843","yes");
INSERT INTO `wp_options` VALUES("89","medium_large_size_w","768","yes");
INSERT INTO `wp_options` VALUES("90","medium_large_size_h","0","yes");
INSERT INTO `wp_options` VALUES("91","initial_db_version","38590","yes");
INSERT INTO `wp_options` VALUES("93","fresh_site","0","yes");
INSERT INTO `wp_options` VALUES("94","widget_search","a:2:{i:3;a:2:{s:5:\"title\";s:6:\"Search\";s:7:\"classes\";s:7:\"special\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("95","widget_recent-posts","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("96","widget_recent-comments","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("97","widget_archives","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("98","widget_meta","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("99","sidebars_widgets","a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-main\";a:6:{i:0;s:13:\"apsc_widget-2\";i:1;s:12:\"categories-3\";i:2;s:6:\"text-4\";i:3;s:8:\"search-3\";i:4;s:11:\"tag_cloud-3\";i:5;s:6:\"text-5\";}s:16:\"sidebar-footer-1\";a:2:{i:0;s:19:\"dotdigital_banner-3\";i:1;s:20:\"dotdigital_socials-2\";}s:8:\"Services\";a:1:{i:0;s:10:\"nav_menu-2\";}s:4:\"Shop\";a:0:{}s:13:\"array_version\";i:3;}","yes");
INSERT INTO `wp_options` VALUES("100","widget_pages","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("101","widget_calendar","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("102","widget_tag_cloud","a:2:{i:3;a:4:{s:5:\"title\";s:4:\"Tags\";s:5:\"count\";i:0;s:8:\"taxonomy\";s:8:\"post_tag\";s:7:\"classes\";s:7:\"special\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("103","widget_nav_menu","a:2:{i:2;a:3:{s:5:\"title\";s:14:\"Other Services\";s:8:\"nav_menu\";i:164;s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("105","theme_mods_twentyseventeen","a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:16;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1507558022;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:7:{i:0;s:6:\"text-6\";i:1;s:10:\"nav_menu-2\";i:2;s:19:\"mc4wp_form_widget-7\";i:3;s:8:\"search-3\";i:4;s:6:\"text-4\";i:5;s:13:\"apsc_widget-2\";i:6;s:19:\"mc4wp_form_widget-3\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}","yes");
INSERT INTO `wp_options` VALUES("137","theme_switched","","yes");
INSERT INTO `wp_options` VALUES("147","apsc_settings","a:7:{s:14:\"social_profile\";a:7:{s:8:\"facebook\";a:5:{s:6:\"active\";s:1:\"1\";s:7:\"page_id\";s:0:\"\";s:6:\"app_id\";s:0:\"\";s:10:\"app_secret\";s:0:\"\";s:13:\"default_count\";s:4:\"35.4\";}s:7:\"twitter\";a:6:{s:6:\"active\";s:1:\"1\";s:8:\"username\";s:0:\"\";s:12:\"consumer_key\";s:0:\"\";s:15:\"consumer_secret\";s:0:\"\";s:12:\"access_token\";s:0:\"\";s:19:\"access_token_secret\";s:0:\"\";}s:10:\"googlePlus\";a:3:{s:6:\"active\";s:1:\"1\";s:7:\"page_id\";s:0:\"\";s:7:\"api_key\";s:0:\"\";}s:9:\"instagram\";a:3:{s:8:\"username\";s:0:\"\";s:7:\"user_id\";s:0:\"\";s:12:\"access_token\";s:0:\"\";}s:7:\"youtube\";a:4:{s:10:\"channel_id\";s:0:\"\";s:11:\"channel_url\";s:0:\"\";s:7:\"api_key\";s:0:\"\";s:17:\"subscribers_count\";s:1:\"0\";}s:10:\"soundcloud\";a:2:{s:8:\"username\";s:0:\"\";s:9:\"client_id\";s:0:\"\";}s:8:\"dribbble\";a:1:{s:8:\"username\";s:0:\"\";}}s:13:\"profile_order\";a:9:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:10:\"googlePlus\";i:3;s:9:\"instagram\";i:4;s:7:\"youtube\";i:5;s:10:\"soundcloud\";i:6;s:8:\"dribbble\";i:7;s:5:\"posts\";i:8;s:8:\"comments\";}s:12:\"cache_period\";s:0:\"\";s:20:\"social_profile_theme\";s:7:\"theme-1\";s:14:\"counter_format\";s:5:\"comma\";s:16:\"disable_font_css\";i:0;s:20:\"disable_frontend_css\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("151","widget_apsc_widget","a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"theme\";s:0:\"\";s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("152","widget_mc4wp_form_widget","a:2:{i:5;a:2:{s:5:\"title\";s:13:\"Subscribe Now\";s:7:\"classes\";s:25:\"text-center special-title\";}s:12:\"_multiwidget\";i:1;}","no");
INSERT INTO `wp_options` VALUES("153","fw_active_extensions","a:36:{s:6:\"social\";a:0:{}s:15:\"social-facebook\";a:0:{}s:14:\"social-twitter\";a:0:{}s:10:\"shortcodes\";a:0:{}s:7:\"builder\";a:0:{}s:5:\"forms\";a:0:{}s:13:\"contact-forms\";a:0:{}s:6:\"mailer\";a:0:{}s:5:\"media\";a:0:{}s:6:\"slider\";a:0:{}s:9:\"bx-slider\";a:0:{}s:11:\"nivo-slider\";a:0:{}s:12:\"owl-carousel\";a:0:{}s:12:\"theme-slider\";a:0:{}s:17:\"population-method\";a:0:{}s:28:\"population-method-categories\";a:0:{}s:24:\"population-method-custom\";a:0:{}s:23:\"population-method-posts\";a:0:{}s:22:\"population-method-tags\";a:0:{}s:11:\"breadcrumbs\";a:0:{}s:8:\"sidebars\";a:0:{}s:7:\"backups\";a:0:{}s:12:\"backups-demo\";a:0:{}s:4:\"blog\";a:0:{}s:6:\"update\";a:0:{}s:13:\"github-update\";a:0:{}s:4:\"team\";a:0:{}s:8:\"megamenu\";a:0:{}s:6:\"events\";a:0:{}s:11:\"events-tags\";a:0:{}s:12:\"page-builder\";a:0:{}s:17:\"editor-shortcodes\";a:0:{}s:8:\"services\";a:0:{}s:13:\"custom-update\";a:0:{}s:9:\"portfolio\";a:0:{}s:16:\"bitbucket-update\";a:0:{}}","yes");
INSERT INTO `wp_options` VALUES("157","sbi_rating_notice","dismissed","yes");
INSERT INTO `wp_options` VALUES("158","sb_instagram_settings","a:38:{s:15:\"sb_instagram_at\";s:51:\"3905738328.60c782d.b65ed3f058d64e6ab32c110c6ac12d9b\";s:20:\"sb_instagram_user_id\";s:0:\"\";s:30:\"sb_instagram_preserve_settings\";s:0:\"\";s:23:\"sb_instagram_ajax_theme\";s:0:\"\";s:23:\"sb_instagram_cache_time\";s:1:\"1\";s:28:\"sb_instagram_cache_time_unit\";s:5:\"hours\";s:18:\"sb_instagram_width\";s:3:\"100\";s:23:\"sb_instagram_width_unit\";s:1:\"%\";s:28:\"sb_instagram_feed_width_resp\";b:0;s:19:\"sb_instagram_height\";s:0:\"\";s:16:\"sb_instagram_num\";s:2:\"20\";s:24:\"sb_instagram_height_unit\";s:0:\"\";s:17:\"sb_instagram_cols\";s:1:\"4\";s:27:\"sb_instagram_disable_mobile\";b:0;s:26:\"sb_instagram_image_padding\";s:1:\"5\";s:31:\"sb_instagram_image_padding_unit\";s:2:\"px\";s:17:\"sb_instagram_sort\";s:4:\"none\";s:23:\"sb_instagram_background\";s:0:\"\";s:21:\"sb_instagram_show_btn\";b:1;s:27:\"sb_instagram_btn_background\";s:0:\"\";s:27:\"sb_instagram_btn_text_color\";s:0:\"\";s:21:\"sb_instagram_btn_text\";s:12:\"Load More...\";s:22:\"sb_instagram_image_res\";s:4:\"auto\";s:24:\"sb_instagram_show_header\";b:1;s:25:\"sb_instagram_header_color\";s:0:\"\";s:28:\"sb_instagram_show_follow_btn\";b:1;s:33:\"sb_instagram_folow_btn_background\";s:0:\"\";s:34:\"sb_instagram_follow_btn_text_color\";s:0:\"\";s:28:\"sb_instagram_follow_btn_text\";s:19:\"Follow on Instagram\";s:23:\"sb_instagram_custom_css\";s:0:\"\";s:22:\"sb_instagram_custom_js\";s:0:\"\";s:17:\"sb_instagram_cron\";s:2:\"no\";s:9:\"check_api\";b:1;s:19:\"sb_instagram_backup\";b:1;s:24:\"enqueue_css_in_shortcode\";b:0;s:30:\"sb_instagram_disable_mob_swipe\";b:0;s:15:\"sbi_font_method\";s:3:\"svg\";s:28:\"sb_instagram_disable_awesome\";b:0;}","yes");
INSERT INTO `wp_options` VALUES("159","WCSSC_options","a:9:{s:7:\"show_id\";b:0;s:4:\"type\";i:1;s:15:\"defined_classes\";a:0:{}s:11:\"show_number\";b:1;s:13:\"show_location\";b:1;s:12:\"show_evenodd\";b:1;s:17:\"fix_widget_params\";b:0;s:13:\"filter_unique\";b:0;s:17:\"translate_classes\";b:1;}","yes");
INSERT INTO `wp_options` VALUES("160","WCSSC_db_version","1.5.3","yes");
INSERT INTO `wp_options` VALUES("162","envato_market_version","2.0.0","yes");
INSERT INTO `wp_options` VALUES("163","widget_wp_user_avatar_profile","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("168","envato_market_state","activated","yes");
INSERT INTO `wp_options` VALUES("174","mc4wp_version","4.2.1","yes");
INSERT INTO `wp_options` VALUES("175","avatar_default_wp_user_avatar","","yes");
INSERT INTO `wp_options` VALUES("176","wp_user_avatar_allow_upload","0","yes");
INSERT INTO `wp_options` VALUES("177","wp_user_avatar_disable_gravatar","0","yes");
INSERT INTO `wp_options` VALUES("178","wp_user_avatar_edit_avatar","1","yes");
INSERT INTO `wp_options` VALUES("179","wp_user_avatar_resize_crop","0","yes");
INSERT INTO `wp_options` VALUES("180","wp_user_avatar_resize_h","96","yes");
INSERT INTO `wp_options` VALUES("181","wp_user_avatar_resize_upload","0","yes");
INSERT INTO `wp_options` VALUES("182","wp_user_avatar_resize_w","96","yes");
INSERT INTO `wp_options` VALUES("183","wp_user_avatar_tinymce","1","yes");
INSERT INTO `wp_options` VALUES("184","wp_user_avatar_upload_size_limit","0","yes");
INSERT INTO `wp_options` VALUES("185","wp_user_avatar_default_avatar_updated","1","yes");
INSERT INTO `wp_options` VALUES("186","wp_user_avatar_users_updated","1","yes");
INSERT INTO `wp_options` VALUES("187","wp_user_avatar_media_updated","1","yes");
INSERT INTO `wp_options` VALUES("189","mc4wp_flash_messages","a:0:{}","no");
INSERT INTO `wp_options` VALUES("190","fw_extensions","a:7:{s:9:\"portfolio\";a:1:{s:10:\"permalinks\";a:2:{s:4:\"post\";s:8:\"projects\";s:8:\"taxonomy\";s:9:\"portfolio\";}}s:8:\"services\";a:1:{s:10:\"permalinks\";a:2:{s:4:\"post\";s:8:\"services\";s:8:\"taxonomy\";s:12:\"services-cat\";}}s:7:\"builder\";a:3:{s:9:\"templates\";a:1:{s:12:\"page-builder\";a:0:{}}s:16:\"templates:column\";a:1:{s:12:\"page-builder\";a:0:{}}s:17:\"templates:section\";a:1:{s:12:\"page-builder\";a:0:{}}}s:4:\"team\";a:1:{s:10:\"permalinks\";a:2:{s:4:\"post\";s:6:\"member\";s:8:\"taxonomy\";s:4:\"team\";}}s:11:\"events-tags\";a:1:{s:12:\"last_updated\";i:1572457113;}s:6:\"events\";a:1:{s:10:\"permalinks\";a:2:{s:4:\"post\";s:5:\"event\";s:8:\"taxonomy\";s:6:\"events\";}}s:15:\"social-facebook\";a:1:{s:12:\"access_token\";b:0;}}","no");
INSERT INTO `wp_options` VALUES("213","fw_google_fonts","a:2:{s:11:\"last_update\";i:1573599395;s:5:\"fonts\";s:537474:\"{\n \"kind\": \"webfonts#webfontList\",\n \"items\": [\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"ABeeZee\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/abeezee/v13/esDR31xSG-6AGleN6tKukbcHCpE.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/abeezee/v13/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Abel\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/abel/v10/MwQ5bhbm2POE6VhLPJp6qGI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Abhaya Libre\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"sinhala\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/abhayalibre/v5/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/abhayalibre/v5/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/abhayalibre/v5/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/abhayalibre/v5/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/abhayalibre/v5/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Abril Fatface\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/abrilfatface/v11/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Aclonica\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/aclonica/v10/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Acme\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/acme/v9/RrQfboBx-C5_bx3Lb23lzLk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Actor\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/actor/v9/wEOzEBbCkc5cO3ekXygtUMIO.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Adamina\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/adamina/v13/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Advent Pro\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"greek\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/adventpro/v10/V8mCoQfxVT4Dvddr_yOwjVmtLZxcBtItFw.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/adventpro/v10/V8mDoQfxVT4Dvddr_yOwjfWMDbZyCts0DqQ.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/adventpro/v10/V8mDoQfxVT4Dvddr_yOwjZGPDbZyCts0DqQ.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/adventpro/v10/V8mAoQfxVT4Dvddr_yOwtT2nKb5ZFtI.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/adventpro/v10/V8mDoQfxVT4Dvddr_yOwjcmODbZyCts0DqQ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/adventpro/v10/V8mDoQfxVT4Dvddr_yOwjeWJDbZyCts0DqQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/adventpro/v10/V8mDoQfxVT4Dvddr_yOwjYGIDbZyCts0DqQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Aguafina Script\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/aguafinascript/v8/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Akronim\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/akronim/v9/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Aladin\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/aladin/v8/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Aldrich\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/aldrich/v10/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Alef\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"hebrew\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/alef/v11/FeVfS0NQpLYgrjJbC5FxxbU.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/alef/v11/FeVQS0NQpLYglo50L5la2bxii28.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Alegreya\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/alegreya/v13/4UaBrEBBsBhlBjvfkRLmzanB44N1.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/alegreya/v13/4UaHrEBBsBhlBjvfkSLkx63j5pN1MwI.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/alegreya/v13/4UaGrEBBsBhlBjvfkSoS5I3JyJ98KhtH.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/alegreya/v13/4UaErEBBsBhlBjvfkSLk_1nKwpteLwtHJlc.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/alegreya/v13/4UaGrEBBsBhlBjvfkSpa4o3JyJ98KhtH.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/alegreya/v13/4UaErEBBsBhlBjvfkSLk_xHMwpteLwtHJlc.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/alegreya/v13/4UaGrEBBsBhlBjvfkSpG4Y3JyJ98KhtH.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/alegreya/v13/4UaErEBBsBhlBjvfkSLk_w3PwpteLwtHJlc.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/alegreya/v13/4UaGrEBBsBhlBjvfkSpi4I3JyJ98KhtH.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/alegreya/v13/4UaErEBBsBhlBjvfkSLk_ynOwpteLwtHJlc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Alegreya SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/alegreyasc/v11/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/alegreyasc/v11/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/alegreyasc/v11/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/alegreyasc/v11/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/alegreyasc/v11/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/alegreyasc/v11/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/alegreyasc/v11/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/alegreyasc/v11/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/alegreyasc/v11/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/alegreyasc/v11/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Alegreya Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/alegreyasans/v10/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/alegreyasans/v10/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/alegreyasans/v10/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/alegreyasans/v10/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/alegreyasans/v10/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/alegreyasans/v10/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/alegreyasans/v10/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/alegreyasans/v10/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/alegreyasans/v10/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/alegreyasans/v10/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/alegreyasans/v10/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/alegreyasans/v10/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/alegreyasans/v10/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/alegreyasans/v10/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Alegreya Sans SC\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Aleo\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/aleo/v3/c4mg1nF8G8_syKbr9DVDno985KM.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/aleo/v3/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/aleo/v3/c4mv1nF8G8_s8ArD0D1ogoY.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/aleo/v3/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/aleo/v3/c4mg1nF8G8_syLbs9DVDno985KM.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/aleo/v3/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Alex Brush\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/alexbrush/v11/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Alfa Slab One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/alfaslabone/v9/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Alice\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/alice/v11/OpNCnoEEmtHa6FcJpA_chzJ0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Alike\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/alike/v12/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Alike Angular\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/alikeangular/v10/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Allan\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/allan/v12/ea8XadU7WuTxEtb2P9SF8nZE.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/allan/v12/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Allerta\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/allerta/v10/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Allerta Stencil\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/allertastencil/v10/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Allura\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/allura/v8/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Almarai\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"arabic\"\n ],\n \"version\": \"v2\",\n \"lastModified\": \"2019-09-17\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/almarai/v2/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/almarai/v2/tsstApxBaigK_hnnc1qPonC3vqc.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/almarai/v2/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/almarai/v2/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Almendra\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/almendra/v12/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/almendra/v12/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/almendra/v12/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/almendra/v12/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Almendra Display\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/almendradisplay/v10/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Almendra SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/almendrasc/v10/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Amarante\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/amarante/v7/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Amaranth\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/amaranth/v10/KtkuALODe433f0j1zPnCF9GqwnzW.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/amaranth/v10/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/amaranth/v10/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/amaranth/v10/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Amatic SC\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"hebrew\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/amaticsc/v13/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/amaticsc/v13/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Amethysta\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/amethysta/v8/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Amiko\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/amiko/v4/WwkQxPq1DFK04tqlc17MMZgJ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/amiko/v4/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/amiko/v4/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Amiri\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/amiri/v13/J7aRnpd8CGxBHqUpvrIw74NL.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/amiri/v13/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/amiri/v13/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/amiri/v13/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Amita\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/amita/v5/HhyaU5si9Om7PQlvAfSKEZZL.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/amita/v5/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Anaheim\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/anaheim/v7/8vII7w042Wp87g4G0UTUEE5eK_w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Andada\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/andada/v11/uK_y4riWaego3w9RCh0TMv6EXw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Andika\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/andika/v11/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Angkor\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/angkor/v12/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Annie Use Your Telescope\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/annieuseyourtelescope/v10/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Anonymous Pro\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/anonymouspro/v13/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/anonymouspro/v13/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/anonymouspro/v13/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/anonymouspro/v13/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Antic\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/antic/v11/TuGfUVB8XY5DRaZLodgzydtk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Antic Didone\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/anticdidone/v8/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Antic Slab\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/anticslab/v8/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Anton\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/anton/v11/1Ptgg87LROyAm0K08i4gS7lu.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Arapey\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/arapey/v8/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/arapey/v8/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Arbutus\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/arbutus/v9/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Arbutus Slab\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/arbutusslab/v8/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Architects Daughter\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/architectsdaughter/v10/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Archivo\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/archivo/v6/k3kQo8UDI-1M0wlSTd7iL0nAMaM.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/archivo/v6/k3kSo8UDI-1M0wlSfdzoK2vFIaOV8A.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/archivo/v6/k3kVo8UDI-1M0wlSdSrLC0HrLaqM6Q4.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/archivo/v6/k3kXo8UDI-1M0wlSfdzQ30LhKYiJ-Q7m8w.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/archivo/v6/k3kVo8UDI-1M0wlSdQbMC0HrLaqM6Q4.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/archivo/v6/k3kXo8UDI-1M0wlSfdzQ80XhKYiJ-Q7m8w.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/archivo/v6/k3kVo8UDI-1M0wlSdWLNC0HrLaqM6Q4.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/archivo/v6/k3kXo8UDI-1M0wlSfdzQl0ThKYiJ-Q7m8w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Archivo Black\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/archivoblack/v9/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Archivo Narrow\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/archivonarrow/v11/tss0ApVBdCYD5Q7hcxTE1ArZ0Yb3g31S2s8p.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/archivonarrow/v11/tss2ApVBdCYD5Q7hcxTE1ArZ0bb1iXlw398pJxk.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/archivonarrow/v11/tss3ApVBdCYD5Q7hcxTE1ArZ0b4Dqlla8dMgPgBu.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/archivonarrow/v11/tssxApVBdCYD5Q7hcxTE1ArZ0bb1sY1Z-9cCOxBu_BM.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/archivonarrow/v11/tss3ApVBdCYD5Q7hcxTE1ArZ0b4vrVla8dMgPgBu.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/archivonarrow/v11/tssxApVBdCYD5Q7hcxTE1ArZ0bb1saFe-9cCOxBu_BM.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/archivonarrow/v11/tss3ApVBdCYD5Q7hcxTE1ArZ0b5LrFla8dMgPgBu.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/archivonarrow/v11/tssxApVBdCYD5Q7hcxTE1ArZ0bb1scVf-9cCOxBu_BM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Aref Ruqaa\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/arefruqaa/v8/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/arefruqaa/v8/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Arima Madurai\",\n \"category\": \"display\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"tamil\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/arimamadurai/v5/t5t4IRoeKYORG0WNMgnC3seB1V3PqrGCch4Drg.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/arimamadurai/v5/t5t7IRoeKYORG0WNMgnC3seB1fHuipusfhcat2c.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/arimamadurai/v5/t5t7IRoeKYORG0WNMgnC3seB1ZXtipusfhcat2c.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/arimamadurai/v5/t5tmIRoeKYORG0WNMgnC3seB7TnFrpOHYh4.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/arimamadurai/v5/t5t7IRoeKYORG0WNMgnC3seB1c3sipusfhcat2c.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/arimamadurai/v5/t5t7IRoeKYORG0WNMgnC3seB1YXqipusfhcat2c.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/arimamadurai/v5/t5t7IRoeKYORG0WNMgnC3seB1Znpipusfhcat2c.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/arimamadurai/v5/t5t7IRoeKYORG0WNMgnC3seB1b3oipusfhcat2c.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Arimo\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"hebrew\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/arimo/v13/P5sMzZCDf9_T_20eziBMjI-u.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/arimo/v13/P5sCzZCDf9_T_10cxCRuiZ-uydg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/arimo/v13/P5sBzZCDf9_T_1Wi4QREp5On0ME2.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/arimo/v13/P5sHzZCDf9_T_10c_JhBrZeF1dE2PY4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Arizonia\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/arizonia/v10/neIIzCemt4A5qa7mv6WGHK06UY30.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Armata\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/armata/v11/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Arsenal\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/arsenal/v4/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/arsenal/v4/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/arsenal/v4/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/arsenal/v4/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Artifika\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/artifika/v10/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Arvo\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/arvo/v13/tDbD2oWUg0MKmSAa7Lzr7vs.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/arvo/v13/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/arvo/v13/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/arvo/v13/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Arya\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/arya/v5/ga6CawNG-HJd9Ub1-beqdFE.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/arya/v5/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Asap\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/asap/v11/KFOoCniXp96a-zwU4UROGzY.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/asap/v11/KFOmCniXp96ayz4e5WZLCzYlKw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/asap/v11/KFOnCniXp96aw8g9xUxlBz88MsA.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/asap/v11/KFOlCniXp96ayz4mEU9vAx05IsDqlA.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/asap/v11/KFOnCniXp96aw-Q6xUxlBz88MsA.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/asap/v11/KFOlCniXp96ayz4mPUhvAx05IsDqlA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/asap/v11/KFOnCniXp96aw4A7xUxlBz88MsA.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/asap/v11/KFOlCniXp96ayz4mWUlvAx05IsDqlA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Asap Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/asapcondensed/v5/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/asapcondensed/v5/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/asapcondensed/v5/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/asapcondensed/v5/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/asapcondensed/v5/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/asapcondensed/v5/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/asapcondensed/v5/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/asapcondensed/v5/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Asar\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/asar/v7/sZlLdRyI6TBIXkYQDLlTW6E.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Asset\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/asset/v10/SLXGc1na-mM4cWImRJqExst1.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Assistant\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"600\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"hebrew\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/assistant/v4/2sDZZGJYnIjSi6H75xk7p0ScA5cZbCjItw.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/assistant/v4/2sDZZGJYnIjSi6H75xk7w0ecA5cZbCjItw.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/assistant/v4/2sDcZGJYnIjSi6H75xkDb2-4C7wFZQ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/assistant/v4/2sDZZGJYnIjSi6H75xk7t0GcA5cZbCjItw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/assistant/v4/2sDZZGJYnIjSi6H75xk700CcA5cZbCjItw.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/assistant/v4/2sDZZGJYnIjSi6H75xk7z0OcA5cZbCjItw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Astloch\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/astloch/v11/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/astloch/v11/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Asul\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/asul/v9/VuJ-dNjKxYr46fMFXK78JIg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/asul/v9/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Athiti\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/athiti/v4/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/athiti/v4/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/athiti/v4/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/athiti/v4/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/athiti/v4/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/athiti/v4/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Atma\",\n \"category\": \"display\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"bengali\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/atma/v5/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/atma/v5/uK_84rqWc-Eom25bDj8WIv4.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/atma/v5/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/atma/v5/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/atma/v5/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Atomic Age\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/atomicage/v12/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Aubrey\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/aubrey/v12/q5uGsou7NPBw-p7vugNsCxVEgA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Audiowide\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/audiowide/v8/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Autour One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/autourone/v9/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Average\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/average/v8/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Average Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/averagesans/v8/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Averia Gruesa Libre\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/averiagruesalibre/v8/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Averia Libre\",\n \"category\": \"display\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/averialibre/v8/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/averialibre/v8/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/averialibre/v8/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/averialibre/v8/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/averialibre/v8/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/averialibre/v8/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Averia Sans Libre\",\n \"category\": \"display\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/averiasanslibre/v8/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v8/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/averiasanslibre/v8/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v8/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/averiasanslibre/v8/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v8/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Averia Serif Libre\",\n \"category\": \"display\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/averiaseriflibre/v9/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v9/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/averiaseriflibre/v9/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v9/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/averiaseriflibre/v9/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v9/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"B612\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/b612/v4/3JnySDDxiSz32jm4GDigUXw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/b612/v4/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/b612/v4/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/b612/v4/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"B612 Mono\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/b612mono/v4/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/b612mono/v4/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/b612mono/v4/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/b612mono/v4/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bad Script\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/badscript/v8/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bahiana\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bahiana/v4/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bahianita\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v2\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bahianita/v2/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bai Jamjuree\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/baijamjuree/v3/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/baijamjuree/v3/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/baijamjuree/v3/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/baijamjuree/v3/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/baijamjuree/v3/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/baijamjuree/v3/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/baijamjuree/v3/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/baijamjuree/v3/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/baijamjuree/v3/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/baijamjuree/v3/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/baijamjuree/v3/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/baijamjuree/v3/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Baloo\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/baloo/v5/6xKhdSpJJ92I9PWIAG_5LWwJ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Baloo Bhai\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"gujarati\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/baloobhai/v5/ZgNWjP5GM7bCUdmXgWyVjGXEM4COoE4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Baloo Bhaijaan\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"arabic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-09-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/baloobhaijaan/v6/RWmRoKCU5fcqq8fOWNzFLqSjx4ECJmVjC0-V.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Baloo Bhaina\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"oriya\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/baloobhaina/v5/Noa16Uzzzp2FIkfhq5vm9thxPAR9mhHobg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Baloo Chettan\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"malayalam\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/baloochettan/v5/0QImMXRN8o2gTC2YTr4665DA07z8_ApHqqk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Baloo Da\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"bengali\",\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/balooda/v5/LhWmMVnXOfIZO795FXkfSvtVM8mZ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Baloo Paaji\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"gurmukhi\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/baloopaaji/v6/8AttGsyxM5KQQU-Y4MTwVZnToxvQBiot.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Baloo Tamma\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"kannada\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/balootamma/v6/JTUTjIk68Cy27gWhOWIghE5B5Arr-s50.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Baloo Tammudu\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"telugu\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/balootammudu/v6/mFT3Wb8Qza7c_Z5HTsC_5nxW8EpQl9RWxD8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Baloo Thambi\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"tamil\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/baloothambi/v5/va9B4kXJzNhTFoA7CYcS8sHuQR37fF3Wlg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Balthazar\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/balthazar/v9/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bangers\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bangers/v12/FeVQS0BTqb0h60ACL5la2bxii28.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Barlow\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/barlow/v4/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/barlow/v4/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/barlow/v4/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/barlow/v4/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Barlow Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v4/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Barlow Semi Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Barriecito\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v2\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/barriecito/v2/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Barrio\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/barrio/v4/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Basic\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/basic/v9/xfu_0WLxV2_XKQN34lDVyR7D.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Battambang\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/battambang/v13/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/battambang/v13/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Baumans\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/baumans/v9/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bayon\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bayon/v13/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Be Vietnam\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-09-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/bevietnam/v1/FBVxdDflz-iPfoPuIC2iKsUn7W1hK2czPg.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/bevietnam/v1/FBVvdDflz-iPfoPuIC2iIqMfiWdlCWIjPi5p.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/bevietnam/v1/FBVwdDflz-iPfoPuIC2iKg0FzUdPJ24qJzc.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/bevietnam/v1/FBVudDflz-iPfoPuIC2iIqMfQUVFI0wvNzdwXQ.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/bevietnam/v1/FBVzdDflz-iPfoPuIC2iEqEt6U9kO2c.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/bevietnam/v1/FBVxdDflz-iPfoPuIC2iIqMn7W1hK2czPg.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/bevietnam/v1/FBVwdDflz-iPfoPuIC2iKlUEzUdPJ24qJzc.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/bevietnam/v1/FBVudDflz-iPfoPuIC2iIqMfGURFI0wvNzdwXQ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/bevietnam/v1/FBVwdDflz-iPfoPuIC2iKnkDzUdPJ24qJzc.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/bevietnam/v1/FBVudDflz-iPfoPuIC2iIqMfNUNFI0wvNzdwXQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/bevietnam/v1/FBVwdDflz-iPfoPuIC2iKh0CzUdPJ24qJzc.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/bevietnam/v1/FBVudDflz-iPfoPuIC2iIqMfUUJFI0wvNzdwXQ.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/bevietnam/v1/FBVwdDflz-iPfoPuIC2iKgEBzUdPJ24qJzc.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/bevietnam/v1/FBVudDflz-iPfoPuIC2iIqMfTUFFI0wvNzdwXQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Belgrano\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/belgrano/v10/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bellefair\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"hebrew\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bellefair/v5/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Belleza\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/belleza/v8/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"BenchNine\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/benchnine/v8/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/benchnine/v8/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/benchnine/v8/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bentham\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bentham/v10/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Berkshire Swash\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/berkshireswash/v8/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Beth Ellen\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bethellen/v1/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bevan\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bevan/v11/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Big Shoulders Display\",\n \"category\": \"display\",\n \"variants\": [\n \"100\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-09-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1xPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1Ur9DrDJYM2lAZ.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1UZ_LLJrgA00kAdA.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1_PZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1sy9rvLpMc2g.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1UP_PLJrgA00kAdA.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1UE_TLJrgA00kAdA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1Ud_XLJrgA00kAdA.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1Ua_bLJrgA00kAdA.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1UT_fLJrgA00kAdA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Big Shoulders Text\",\n \"category\": \"display\",\n \"variants\": [\n \"100\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-09-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/bigshoulderstext/v1/55xzezRtP9G3CGPIf49hxc8P0eytUxBU-IZ_YscCdXQB.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/bigshoulderstext/v1/55xyezRtP9G3CGPIf49hxc8P0eytUxBUMKRfSOkOfG0Y3A.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/bigshoulderstext/v1/55xxezRtP9G3CGPIf49hxc8P0eytUxBsnIx7QMISdQ.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/bigshoulderstext/v1/55xyezRtP9G3CGPIf49hxc8P0eytUxBUaKVfSOkOfG0Y3A.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/bigshoulderstext/v1/55xyezRtP9G3CGPIf49hxc8P0eytUxBURKJfSOkOfG0Y3A.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/bigshoulderstext/v1/55xyezRtP9G3CGPIf49hxc8P0eytUxBUIKNfSOkOfG0Y3A.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/bigshoulderstext/v1/55xyezRtP9G3CGPIf49hxc8P0eytUxBUPKBfSOkOfG0Y3A.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/bigshoulderstext/v1/55xyezRtP9G3CGPIf49hxc8P0eytUxBUGKFfSOkOfG0Y3A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bigelow Rules\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bigelowrules/v8/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bigshot One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bigshotone/v10/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bilbo\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bilbo/v9/o-0EIpgpwWwZ210hpIRz4wxE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bilbo Swash Caps\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bilboswashcaps/v12/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"BioRhyme\",\n \"category\": \"serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/biorhyme/v4/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/biorhyme/v4/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/biorhyme/v4/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/biorhyme/v4/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/biorhyme/v4/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"BioRhyme Expanded\",\n \"category\": \"serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v5/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v5/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v5/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v5/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v5/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Biryani\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/biryani/v5/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/biryani/v5/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/biryani/v5/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/biryani/v5/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/biryani/v5/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/biryani/v5/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/biryani/v5/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bitter\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v15\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bitter/v15/rax8HiqOu8IVPmnLeIZoDDlCmg.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/bitter/v15/rax-HiqOu8IVPmn7eoxsLjxSmlLZ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/bitter/v15/rax_HiqOu8IVPmnzxKlMBBJek0vA8A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Black And White Picture\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/blackandwhitepicture/v8/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Black Han Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/blackhansans/v8/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Black Ops One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/blackopsone/v11/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Blinker\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/blinker/v3/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/blinker/v3/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/blinker/v3/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/blinker/v3/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/blinker/v3/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/blinker/v3/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/blinker/v3/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/blinker/v3/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bokor\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bokor/v12/m8JcjfpeeaqTiR2WdInbcaxE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bonbon\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bonbon/v11/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Boogaloo\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/boogaloo/v11/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bowlby One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bowlbyone/v11/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bowlby One SC\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bowlbyonesc/v11/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Brawler\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/brawler/v10/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bree Serif\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/breeserif/v9/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bubblegum Sans\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bubblegumsans/v8/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bubbler One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bubblerone/v8/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Buda\",\n \"category\": \"display\",\n \"variants\": [\n \"300\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/buda/v10/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Buenard\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/buenard/v11/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/buenard/v11/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bungee\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bungee/v5/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bungee Hairline\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bungeehairline/v5/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bungee Inline\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bungeeinline/v5/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bungee Outline\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bungeeoutline/v5/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Bungee Shade\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/bungeeshade/v5/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Butcherman\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/butcherman/v11/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Butterfly Kids\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/butterflykids/v8/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cabin\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cabin/v14/u-4x0qWljRw-Pe839fxqmjRv.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/cabin/v14/u-4_0qWljRw-Pd81__hInyRvYwc.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/cabin/v14/u-480qWljRw-PdfD3NhisShmeh5I.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/cabin/v14/u-460qWljRw-Pd81xwxhuyxEfw5IR-Y.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/cabin/v14/u-480qWljRw-Pdfv29hisShmeh5I.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/cabin/v14/u-460qWljRw-Pd81xyBmuyxEfw5IR-Y.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cabin/v14/u-480qWljRw-PdeL2thisShmeh5I.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/cabin/v14/u-460qWljRw-Pd81x0RnuyxEfw5IR-Y.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cabin Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cabincondensed/v13/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/cabincondensed/v13/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/cabincondensed/v13/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cabincondensed/v13/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cabin Sketch\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cabinsketch/v13/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cabinsketch/v13/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Caesar Dressing\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/caesardressing/v8/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cagliostro\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cagliostro/v8/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cairo\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"600\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/cairo/v6/SLXLc1nY6Hkvalrub76M7dd8aGZk.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/cairo/v6/SLXLc1nY6HkvalqKbL6M7dd8aGZk.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/cairo/v6/SLXGc1nY6HkvamImRJqExst1.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/cairo/v6/SLXLc1nY6Hkvalr-ar6M7dd8aGZk.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cairo/v6/SLXLc1nY6Hkvalqaa76M7dd8aGZk.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/cairo/v6/SLXLc1nY6Hkvalqiab6M7dd8aGZk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Calligraffitti\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/calligraffitti/v11/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cambay\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cambay/v6/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/cambay/v6/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cambay/v6/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/cambay/v6/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cambo\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cambo/v8/IFSqHeNEk8FJk416ok7xkPm8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Candal\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/candal/v9/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cantarell\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cantarell/v9/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/cantarell/v9/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cantarell/v9/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/cantarell/v9/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cantata One\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cantataone/v9/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cantora One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cantoraone/v9/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Capriola\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/capriola/v7/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cardo\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"greek\",\n \"greek-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cardo/v11/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/cardo/v11/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cardo/v11/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Carme\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/carme/v10/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Carrois Gothic\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/carroisgothic/v10/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Carrois Gothic SC\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/carroisgothicsc/v9/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Carter One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/carterone/v11/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Catamaran\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"tamil\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/catamaran/v6/o-0OIpQoyXQa2RxT7-5jhjRFSfiM7HBj.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/catamaran/v6/o-0NIpQoyXQa2RxT7-5jKhVlY9aA5Wl6PQ.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/catamaran/v6/o-0NIpQoyXQa2RxT7-5jThZlY9aA5Wl6PQ.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/catamaran/v6/o-0IIpQoyXQa2RxT7-5b4j5Ba_2c7A.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/catamaran/v6/o-0NIpQoyXQa2RxT7-5jFhdlY9aA5Wl6PQ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/catamaran/v6/o-0NIpQoyXQa2RxT7-5jOhBlY9aA5Wl6PQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/catamaran/v6/o-0NIpQoyXQa2RxT7-5jXhFlY9aA5Wl6PQ.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/catamaran/v6/o-0NIpQoyXQa2RxT7-5jQhJlY9aA5Wl6PQ.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/catamaran/v6/o-0NIpQoyXQa2RxT7-5jZhNlY9aA5Wl6PQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Caudex\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"greek\",\n \"greek-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/caudex/v9/esDQ311QOP6BJUrIyviAnb4eEw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/caudex/v9/esDS311QOP6BJUr4yPKEv7sOE4in.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/caudex/v9/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/caudex/v9/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Caveat\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/caveat/v7/Wnz6HAc5bAfYB2QLYTwZqg_MPQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/caveat/v7/Wnz5HAc5bAfYB2Qz3RM9oiTQNAuxjA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Caveat Brush\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/caveatbrush/v5/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cedarville Cursive\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cedarvillecursive/v11/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ceviche One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cevicheone/v10/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Chakra Petch\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/chakrapetch/v3/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/chakrapetch/v3/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/chakrapetch/v3/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/chakrapetch/v3/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/chakrapetch/v3/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/chakrapetch/v3/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/chakrapetch/v3/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/chakrapetch/v3/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/chakrapetch/v3/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/chakrapetch/v3/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Changa\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/changa/v7/2-cl9JNi2YuVOUcsqb2bUsT5rZhaZg.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/changa/v7/2-cl9JNi2YuVOUcszb6bUsT5rZhaZg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/changa/v7/2-cm9JNi2YuVOUcUYZa_Wu_lpA.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/changa/v7/2-cl9JNi2YuVOUcslb-bUsT5rZhaZg.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/changa/v7/2-cl9JNi2YuVOUcsubibUsT5rZhaZg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/changa/v7/2-cl9JNi2YuVOUcs3bmbUsT5rZhaZg.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/changa/v7/2-cl9JNi2YuVOUcswbqbUsT5rZhaZg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Changa One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/changaone/v12/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/changaone/v12/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Chango\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/chango/v8/2V0cKI0OB5U7WaJyz324TFUaAw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Charm\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/charm/v4/7cHmv4oii5K0MeYvIe804WIo.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/charm/v4/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Charmonman\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/charmonman/v3/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/charmonman/v3/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Chathura\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"300\",\n \"regular\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/chathura/v5/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/chathura/v5/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/chathura/v5/_gP71R7-rzUuVjim418goUC5S-Zy.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/chathura/v5/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/chathura/v5/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Chau Philomene One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/chauphilomeneone/v9/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/chauphilomeneone/v9/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Chela One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/chelaone/v8/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Chelsea Market\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/chelseamarket/v7/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Chenla\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/chenla/v12/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cherry Cream Soda\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cherrycreamsoda/v10/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cherry Swash\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cherryswash/v8/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cherryswash/v8/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Chewy\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/chewy/v11/uK_94ruUb-k-wk5xIDMfO-ed.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Chicle\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/chicle/v8/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Chilanka\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"malayalam\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-08-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/chilanka/v5/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Chivo\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/chivo/v11/va9F4kzIxd1KFrjDY8Z_uqzGQC_-.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/chivo/v11/va9D4kzIxd1KFrBteUp9sKjkRT_-bF0.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/chivo/v11/va9I4kzIxd1KFoBvS-J3kbDP.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/chivo/v11/va9G4kzIxd1KFrBtQeZVlKDPWTY.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/chivo/v11/va9F4kzIxd1KFrjTZMZ_uqzGQC_-.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/chivo/v11/va9D4kzIxd1KFrBteVp6sKjkRT_-bF0.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/chivo/v11/va9F4kzIxd1KFrjrZsZ_uqzGQC_-.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/chivo/v11/va9D4kzIxd1KFrBteWJ4sKjkRT_-bF0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Chonburi\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/chonburi/v4/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cinzel\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cinzel/v9/8vIJ7ww63mVu7gtL8W76HEdHMg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cinzel/v9/8vIK7ww63mVu7gtzTUHeFGxbO_zo-w.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/cinzel/v9/8vIK7ww63mVu7gtzdUPeFGxbO_zo-w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cinzel Decorative\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cinzeldecorative/v8/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cinzeldecorative/v8/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/cinzeldecorative/v8/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Clicker Script\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/clickerscript/v7/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Coda\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"800\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v15\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/coda/v15/SLXHc1jY5nQ8JUIMapaN39I.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/coda/v15/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Coda Caption\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"800\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"800\": \"http://fonts.gstatic.com/s/codacaption/v13/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Codystar\",\n \"category\": \"display\",\n \"variants\": [\n \"300\",\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/codystar/v7/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/codystar/v7/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Coiny\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"tamil\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/coiny/v5/gyByhwU1K989PXwbElSvO5Tc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Combo\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/combo/v8/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Comfortaa\",\n \"category\": \"display\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v27\",\n \"lastModified\": \"2019-10-22\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/comfortaa/v27/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/comfortaa/v27/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/comfortaa/v27/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/comfortaa/v27/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/comfortaa/v27/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Coming Soon\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/comingsoon/v11/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Concert One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/concertone/v10/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Condiment\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/condiment/v7/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Content\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/content/v12/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/content/v12/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Contrail One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/contrailone/v9/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Convergence\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/convergence/v8/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cookie\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cookie/v11/syky-y18lb0tSbfNlQCT9tPdpw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Copse\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/copse/v9/11hPGpDKz1rGb0djHkihUb-A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Corben\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/corben/v13/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/corben/v13/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cormorant\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/cormorant/v8/H4cgBXOCl9bbnla_nHIiRLmYgoyyYzFzFw.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/cormorant/v8/H4c-BXOCl9bbnla_nHIq6qMUgIa2QTRjF8ER.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/cormorant/v8/H4clBXOCl9bbnla_nHIa6JG8iqeuag.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/cormorant/v8/H4cjBXOCl9bbnla_nHIq6pu4qKK-aihq.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/cormorant/v8/H4cgBXOCl9bbnla_nHIiHLiYgoyyYzFzFw.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/cormorant/v8/H4c-BXOCl9bbnla_nHIq6qNMgYa2QTRjF8ER.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/cormorant/v8/H4cgBXOCl9bbnla_nHIiML-YgoyyYzFzFw.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/cormorant/v8/H4c-BXOCl9bbnla_nHIq6qNghoa2QTRjF8ER.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cormorant/v8/H4cgBXOCl9bbnla_nHIiVL6YgoyyYzFzFw.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/cormorant/v8/H4c-BXOCl9bbnla_nHIq6qMEh4a2QTRjF8ER.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cormorant Garamond\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/cormorantgaramond/v7/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v7/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/cormorantgaramond/v7/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v7/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/cormorantgaramond/v7/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v7/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/cormorantgaramond/v7/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v7/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cormorantgaramond/v7/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v7/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cormorant Infant\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/cormorantinfant/v8/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v8/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/cormorantinfant/v8/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v8/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/cormorantinfant/v8/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v8/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/cormorantinfant/v8/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v8/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cormorantinfant/v8/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v8/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cormorant SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/cormorantsc/v8/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/cormorantsc/v8/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/cormorantsc/v8/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/cormorantsc/v8/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cormorantsc/v8/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cormorant Unicase\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/cormorantunicase/v8/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/cormorantunicase/v8/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/cormorantunicase/v8/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/cormorantunicase/v8/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cormorantunicase/v8/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cormorant Upright\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/cormorantupright/v6/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/cormorantupright/v6/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/cormorantupright/v6/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/cormorantupright/v6/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cormorantupright/v6/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Courgette\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/courgette/v7/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cousine\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"hebrew\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cousine/v14/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/cousine/v14/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cousine/v14/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/cousine/v14/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Coustard\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"900\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/coustard/v10/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/coustard/v10/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Covered By Your Grace\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/coveredbyyourgrace/v9/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Crafty Girls\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/craftygirls/v9/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Creepster\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/creepster/v8/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Crete Round\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/creteround/v8/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/creteround/v8/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Crimson Pro\",\n \"category\": \"serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\",\n \"200italic\",\n \"300italic\",\n \"italic\",\n \"500italic\",\n \"600italic\",\n \"700italic\",\n \"800italic\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-10-21\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/crimsonpro/v11/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Crimson Text\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/crimsontext/v10/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/crimsontext/v10/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/crimsontext/v10/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/crimsontext/v10/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/crimsontext/v10/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/crimsontext/v10/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Croissant One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/croissantone/v7/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Crushed\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/crushed/v10/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cuprum\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cuprum/v11/dg4k_pLmvrkcOkB9IeFDh701Sg.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/cuprum/v11/dg4m_pLmvrkcOkBNI-tHpbglShon.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/cuprum/v11/dg4n_pLmvrkcOkBFnc5nj5YpQwM-gg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/cuprum/v11/dg4h_pLmvrkcOkBNI9P7ipwtYQYugjW4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cute Font\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cutefont/v8/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cutive\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cutive/v11/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Cutive Mono\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/cutivemono/v8/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"DM Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/dmsans/v3/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/dmsans/v3/rP2Fp2ywxg089UriCZaIGDWCBl0O8Q.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/dmsans/v3/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/dmsans/v3/rP2Ap2ywxg089UriCZaw7BymDnYS-Cjk6Q.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/dmsans/v3/rP2Cp2ywxg089UriASitOB-sClQX6Cg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/dmsans/v3/rP2Ap2ywxg089UriCZawpBqmDnYS-Cjk6Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"DM Serif Display\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/dmserifdisplay/v3/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/dmserifdisplay/v3/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"DM Serif Text\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/dmseriftext/v3/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/dmseriftext/v3/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Damion\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/damion/v9/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Dancing Script\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/dancingscript/v11/If2RXTr6YS-zF4S-kcSWSVi_swLngOAliz4X.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/dancingscript/v11/If2SXTr6YS-zF4S-kcSWSVi_szpbr8QtoCIervbA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Dangrek\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/dangrek/v11/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Darker Grotesque\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/darkergrotesque/v1/U9MA6cuh-mLQlC4BKCtayOfARkSVoxr2AW8hTOsXsX0.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/darkergrotesque/v1/U9MH6cuh-mLQlC4BKCtayOfARkSVm7beJWcKUOI.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/darkergrotesque/v1/U9MA6cuh-mLQlC4BKCtayOfARkSVo0L3AW8hTOsXsX0.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/darkergrotesque/v1/U9MA6cuh-mLQlC4BKCtayOfARkSVo27wAW8hTOsXsX0.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/darkergrotesque/v1/U9MA6cuh-mLQlC4BKCtayOfARkSVowrxAW8hTOsXsX0.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/darkergrotesque/v1/U9MA6cuh-mLQlC4BKCtayOfARkSVoxbyAW8hTOsXsX0.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/darkergrotesque/v1/U9MA6cuh-mLQlC4BKCtayOfARkSVozLzAW8hTOsXsX0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"David Libre\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"hebrew\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/davidlibre/v4/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/davidlibre/v4/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/davidlibre/v4/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Dawning of a New Day\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/dawningofanewday/v10/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Days One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/daysone/v9/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Dekko\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/dekko/v6/46khlb_wWjfSrttFR0vsfl1B.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Delius\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/delius/v9/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Delius Swash Caps\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/deliusswashcaps/v11/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Delius Unicase\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/deliusunicase/v13/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/deliusunicase/v13/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Della Respira\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/dellarespira/v7/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Denk One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/denkone/v7/dg4m_pzhrqcFb2IzROtHpbglShon.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Devonshire\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/devonshire/v8/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Dhurjati\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/dhurjati/v7/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Didact Gothic\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/didactgothic/v13/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Diplomata\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/diplomata/v11/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Diplomata SC\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/diplomatasc/v8/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Do Hyeon\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/dohyeon/v11/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Dokdo\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/dokdo/v8/esDf315XNuCBLxLo4NaMlKcH.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Domine\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/domine/v7/L0x8DFMnlVwD4h3RvPCmRSlUig.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/domine/v7/L0x_DFMnlVwD4h3pAN-CTQJIg3uuXg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Donegal One\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/donegalone/v7/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Doppio One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/doppioone/v7/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Dorsa\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/dorsa/v10/yYLn0hjd0OGwqo493XCFxAnQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Dosis\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v16\",\n \"lastModified\": \"2019-10-22\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/dosis/v16/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/dosis/v16/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/dosis/v16/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/dosis/v16/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/dosis/v16/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/dosis/v16/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/dosis/v16/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Dr Sugiyama\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/drsugiyama/v9/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Duru Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/durusans/v13/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Dynalight\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/dynalight/v8/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"EB Garamond\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ebgaramond/v11/SlGUmQSNjdsmc35JDF1K5FRyQjgdYxPJ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/ebgaramond/v11/SlGWmQSNjdsmc35JDF1K5GRwSDw_ZgPJtWk.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/ebgaramond/v11/SlGJmQSNjdsmc35JDF1K5GyGaxwVSA_ArHC_.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/ebgaramond/v11/SlGLmQSNjdsmc35JDF1K5GRwcMgWQgviqWC_O7Y.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/ebgaramond/v11/SlGJmQSNjdsmc35JDF1K5GyqbBwVSA_ArHC_.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/ebgaramond/v11/SlGLmQSNjdsmc35JDF1K5GRwcOQRQgviqWC_O7Y.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/ebgaramond/v11/SlGJmQSNjdsmc35JDF1K5GzObRwVSA_ArHC_.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/ebgaramond/v11/SlGLmQSNjdsmc35JDF1K5GRwcIAQQgviqWC_O7Y.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/ebgaramond/v11/SlGJmQSNjdsmc35JDF1K5GzSbhwVSA_ArHC_.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/ebgaramond/v11/SlGLmQSNjdsmc35JDF1K5GRwcJwTQgviqWC_O7Y.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Eagle Lake\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/eaglelake/v7/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"East Sea Dokdo\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/eastseadokdo/v8/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Eater\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/eater/v8/mtG04_FCK7bOvpu2u3FwsXsR.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Economica\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/economica/v7/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/economica/v7/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/economica/v7/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/economica/v7/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Eczar\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/eczar/v8/BXRlvF3Pi-DLmw0iBu9y8Hf0.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/eczar/v8/BXRovF3Pi-DLmzXWL8t622v9WNjW.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/eczar/v8/BXRovF3Pi-DLmzX6KMt622v9WNjW.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/eczar/v8/BXRovF3Pi-DLmzWeKct622v9WNjW.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/eczar/v8/BXRovF3Pi-DLmzWCKst622v9WNjW.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"El Messiri\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"arabic\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/elmessiri/v6/K2F0fZBRmr9vQ1pHEey6AoqKAyLzfWo.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/elmessiri/v6/K2F3fZBRmr9vQ1pHEey6On6jJyrYYWOMluQ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/elmessiri/v6/K2F3fZBRmr9vQ1pHEey6OlKkJyrYYWOMluQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/elmessiri/v6/K2F3fZBRmr9vQ1pHEey6OjalJyrYYWOMluQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Electrolize\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/electrolize/v8/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Elsie\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/elsie/v9/BCanqZABrez54yYu9slAeLgX.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/elsie/v9/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Elsie Swash Caps\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/elsieswashcaps/v8/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/elsieswashcaps/v8/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Emblema One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/emblemaone/v8/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Emilys Candy\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/emilyscandy/v7/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Encode Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/encodesans/v4/LDI0apOFNxEwR-Bd1O9uYPvIeeLkl7Iw6yg.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/encodesans/v4/LDIrapOFNxEwR-Bd1O9uYPtkWMLOub458jGL.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/encodesans/v4/LDIrapOFNxEwR-Bd1O9uYPsAW8LOub458jGL.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/encodesans/v4/LDI2apOFNxEwR-Bd1O9uYMOsc-bGkqIw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/encodesans/v4/LDIrapOFNxEwR-Bd1O9uYPtYWsLOub458jGL.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/encodesans/v4/LDIrapOFNxEwR-Bd1O9uYPt0XcLOub458jGL.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/encodesans/v4/LDIrapOFNxEwR-Bd1O9uYPsQXMLOub458jGL.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/encodesans/v4/LDIrapOFNxEwR-Bd1O9uYPsMX8LOub458jGL.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/encodesans/v4/LDIrapOFNxEwR-Bd1O9uYPsoXsLOub458jGL.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Encode Sans Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Encode Sans Expanded\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/encodesansexpanded/v4/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Encode Sans Semi Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Encode Sans Semi Expanded\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Engagement\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/engagement/v9/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Englebert\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/englebert/v7/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Enriqueta\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/enriqueta/v9/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/enriqueta/v9/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/enriqueta/v9/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/enriqueta/v9/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Erica One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ericaone/v10/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Esteban\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/esteban/v8/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Euphoria Script\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/euphoriascript/v8/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ewert\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ewert/v7/va9I4kzO2tFODYBvS-J3kbDP.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Exo\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/exo/v9/4UaMrEtFpBIaEH6m2jbu5rXI.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/exo/v9/4UaCrEtFpBISdkbC0DLM46XI-po.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/exo/v9/4UaDrEtFpBIavF-G8Bji76zR4w.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/exo/v9/4UaBrEtFpBISdkZu8RLmzanB44N1.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/exo/v9/4UaDrEtFpBIa2FyG8Bji76zR4w.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/exo/v9/4UaBrEtFpBISdkYK8hLmzanB44N1.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/exo/v9/4UaOrEtFpBIidHSi-DP-5g.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/exo/v9/4UaMrEtFpBISdn6m2jbu5rXI.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/exo/v9/4UaDrEtFpBIagF2G8Bji76zR4w.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/exo/v9/4UaBrEtFpBISdkZS8xLmzanB44N1.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/exo/v9/4UaDrEtFpBIarFqG8Bji76zR4w.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/exo/v9/4UaBrEtFpBISdkZ-9BLmzanB44N1.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/exo/v9/4UaDrEtFpBIayFuG8Bji76zR4w.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/exo/v9/4UaBrEtFpBISdkYa9RLmzanB44N1.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/exo/v9/4UaDrEtFpBIa1FiG8Bji76zR4w.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/exo/v9/4UaBrEtFpBISdkYG9hLmzanB44N1.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/exo/v9/4UaDrEtFpBIa8FmG8Bji76zR4w.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/exo/v9/4UaBrEtFpBISdkYi9xLmzanB44N1.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Exo 2\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-09-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/exo2/v7/7cHov4okm5zmbt5LK-sW5HIohT4.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/exo2/v7/7cHqv4okm5zmbtYtE48c4FAtlT47dw.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/exo2/v7/7cHrv4okm5zmbt7nCss8yn4hnCci.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/exo2/v7/7cHtv4okm5zmbtYtEyM9wHoDmTcibrA.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/exo2/v7/7cHrv4okm5zmbt6DCcs8yn4hnCci.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/exo2/v7/7cHtv4okm5zmbtYtE0c-wHoDmTcibrA.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/exo2/v7/7cHmv4okm5zmbuYvIe804WIo.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/exo2/v7/7cHov4okm5zmbtYtK-sW5HIohT4.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/exo2/v7/7cHrv4okm5zmbt7bCMs8yn4hnCci.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/exo2/v7/7cHtv4okm5zmbtYtEx8_wHoDmTcibrA.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/exo2/v7/7cHrv4okm5zmbt73D8s8yn4hnCci.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/exo2/v7/7cHtv4okm5zmbtYtEzM4wHoDmTcibrA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/exo2/v7/7cHrv4okm5zmbt6TDss8yn4hnCci.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/exo2/v7/7cHtv4okm5zmbtYtE1c5wHoDmTcibrA.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/exo2/v7/7cHrv4okm5zmbt6PDcs8yn4hnCci.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/exo2/v7/7cHtv4okm5zmbtYtE0s6wHoDmTcibrA.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/exo2/v7/7cHrv4okm5zmbt6rDMs8yn4hnCci.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/exo2/v7/7cHtv4okm5zmbtYtE287wHoDmTcibrA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Expletus Sans\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/expletussans/v13/RLp5K5v5_bqufTYdnhFzDj2dRfkSu6EuTHo.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/expletussans/v13/RLpnK5v5_bqufTYdnhFzDj2ddfsYv4MrXHrRDA.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/expletussans/v13/RLpkK5v5_bqufTYdnhFzDj2dfQ07n6kFUHPIFaU.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/expletussans/v13/RLpiK5v5_bqufTYdnhFzDj2ddfsgS6oPVFHNBaVImA.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/expletussans/v13/RLpkK5v5_bqufTYdnhFzDj2dfSE8n6kFUHPIFaU.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/expletussans/v13/RLpiK5v5_bqufTYdnhFzDj2ddfsgZ60PVFHNBaVImA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/expletussans/v13/RLpkK5v5_bqufTYdnhFzDj2dfUU9n6kFUHPIFaU.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/expletussans/v13/RLpiK5v5_bqufTYdnhFzDj2ddfsgA6wPVFHNBaVImA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fahkwang\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/fahkwang/v3/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/fahkwang/v3/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/fahkwang/v3/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/fahkwang/v3/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/fahkwang/v3/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/fahkwang/v3/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/fahkwang/v3/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/fahkwang/v3/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/fahkwang/v3/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/fahkwang/v3/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/fahkwang/v3/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/fahkwang/v3/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fanwood Text\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fanwoodtext/v9/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/fanwoodtext/v9/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Farro\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/farro/v1/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/farro/v1/i7dEIFl3byGNHZVNHLq2cV5d.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/farro/v1/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/farro/v1/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Farsan\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"gujarati\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/farsan/v5/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fascinate\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fascinate/v8/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fascinate Inline\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fascinateinline/v9/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Faster One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fasterone/v11/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fasthand\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fasthand/v10/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fauna One\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/faunaone/v7/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Faustina\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/faustina/v4/XLYlIZPxYpJfTbZAFW-4F81Kp28v.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/faustina/v4/XLYjIZPxYpJfTbZAFV-6Hcloon8vVXg.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/faustina/v4/XLYiIZPxYpJfTbZAFVdMPulCjHMmTGFt.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/faustina/v4/XLYgIZPxYpJfTbZAFV-6JT1BhncESXFtUsM.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/faustina/v4/XLYiIZPxYpJfTbZAFVdgOelCjHMmTGFt.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/faustina/v4/XLYgIZPxYpJfTbZAFV-6JRFGhncESXFtUsM.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/faustina/v4/XLYiIZPxYpJfTbZAFVcEOOlCjHMmTGFt.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/faustina/v4/XLYgIZPxYpJfTbZAFV-6JXVHhncESXFtUsM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Federant\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/federant/v12/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Federo\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/federo/v11/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Felipa\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/felipa/v7/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fenix\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fenix/v7/XoHo2YL_S7-g5ostKzAFvs8o.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Finger Paint\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fingerpaint/v9/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fira Code\",\n \"category\": \"monospace\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-10-22\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/firacode/v7/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/firacode/v7/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/firacode/v7/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/firacode/v7/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/firacode/v7/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fira Mono\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"700\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/firamono/v8/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/firamono/v8/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/firamono/v8/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fira Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/firasans/v10/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/firasans/v10/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/firasans/v10/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/firasans/v10/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fira Sans Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fira Sans Extra Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fjalla One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fjallaone/v7/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fjord One\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fjordone/v8/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Flamenco\",\n \"category\": \"display\",\n \"variants\": [\n \"300\",\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/flamenco/v10/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/flamenco/v10/neIIzCehqYguo67ssaWGHK06UY30.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Flavors\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/flavors/v9/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fondamento\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fondamento/v10/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/fondamento/v10/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fontdiner Swanky\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fontdinerswanky/v10/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Forum\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/forum/v10/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Francois One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/francoisone/v14/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Frank Ruhl Libre\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"hebrew\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/frankruhllibre/v5/j8_36_fAw7jrcalD7oKYNX0QfAnPUxvHxJDMhYeIHw8.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/frankruhllibre/v5/j8_w6_fAw7jrcalD7oKYNX0QfAnPa7fv4JjnmY4.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/frankruhllibre/v5/j8_36_fAw7jrcalD7oKYNX0QfAnPU0PGxJDMhYeIHw8.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/frankruhllibre/v5/j8_36_fAw7jrcalD7oKYNX0QfAnPUwvAxJDMhYeIHw8.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/frankruhllibre/v5/j8_36_fAw7jrcalD7oKYNX0QfAnPUzPCxJDMhYeIHw8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Freckle Face\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/freckleface/v8/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fredericka the Great\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/frederickathegreat/v9/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fredoka One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fredokaone/v7/k3kUo8kEI-tA1RRcTZGmTmHBA6aF8Bf_.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Freehand\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/freehand/v11/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fresca\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fresca/v8/6ae94K--SKgCzbM2Gr0W13DKPA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Frijole\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/frijole/v8/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fruktur\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fruktur/v12/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Fugaz One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/fugazone/v9/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"GFS Didot\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"greek\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gfsdidot/v9/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"GFS Neohellenic\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"greek\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gfsneohellenic/v12/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/gfsneohellenic/v12/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/gfsneohellenic/v12/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/gfsneohellenic/v12/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gabriela\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gabriela/v8/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gaegu\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/gaegu/v8/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/gaegu/v8/TuGfUVB6Up9NU6ZLodgzydtk.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/gaegu/v8/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gafata\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gafata/v8/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Galada\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"bengali\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/galada/v5/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Galdeano\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/galdeano/v9/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Galindo\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/galindo/v7/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gamja Flower\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gamjaflower/v8/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gayathri\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"malayalam\",\n \"latin\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/gayathri/v1/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/gayathri/v1/MCoQzAb429DbBilWLIA48J_wBugA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/gayathri/v1/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gentium Basic\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gentiumbasic/v11/Wnz9HAw9aB_JD2VGQVR80We3HAqDiTI_cIM.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/gentiumbasic/v11/WnzjHAw9aB_JD2VGQVR80We3LAiJjRA6YIORZQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/gentiumbasic/v11/WnzgHAw9aB_JD2VGQVR80We3JLasrToUbIqIfBU.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/gentiumbasic/v11/WnzmHAw9aB_JD2VGQVR80We3LAixMT8eaKiNbBVWkw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gentium Book Basic\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v10/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjcIV7t7w6bE2A.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v10/pe0xMJCbPYBVokB1LHA9bbyaQb8ZGjc4VbF_4aPU2Ec9.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v10/pe0wMJCbPYBVokB1LHA9bbyaQb8ZGjcw65Rfy43Y0V4kvg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v10/pe0-MJCbPYBVokB1LHA9bbyaQb8ZGjc4VYnDzofc81s0voO3.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Geo\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/geo/v11/CSRz4zRZlufVL3BmQjlCbQ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/geo/v11/CSRx4zRZluflLXpiYDxSbf8r.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Geostar\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/geostar/v10/sykz-yx4n701VLOftSq9-trEvlQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Geostar Fill\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/geostarfill/v10/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Germania One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/germaniaone/v7/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gidugu\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gidugu/v6/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gilda Display\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gildadisplay/v7/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Give You Glory\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/giveyouglory/v9/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Glass Antiqua\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/glassantiqua/v7/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Glegoo\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/glegoo/v9/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/glegoo/v9/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gloria Hallelujah\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gloriahallelujah/v11/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Goblin One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/goblinone/v9/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gochi Hand\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gochihand/v10/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gorditas\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gorditas/v7/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/gorditas/v7/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gothic A1\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/gothica1/v8/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/gothica1/v8/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Goudy Bookletter 1911\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/goudybookletter1911/v9/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Graduate\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/graduate/v7/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Grand Hotel\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/grandhotel/v7/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gravitas One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gravitasone/v9/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Great Vibes\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/greatvibes/v7/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Grenze\",\n \"category\": \"serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/grenze/v1/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Griffy\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/griffy/v8/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gruppo\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gruppo/v10/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gudea\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gudea/v9/neIFzCqgsI0mp-CP9IGON7Ez.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/gudea/v9/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/gudea/v9/neIIzCqgsI0mp9gz26WGHK06UY30.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gugi\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gugi/v8/A2BVn5dXywshVA6A9DEfgqM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Gurajada\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/gurajada/v7/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Habibi\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/habibi/v8/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Halant\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/halant/v7/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/halant/v7/u-4-0qaujRI2PbsX39Jmky12eg.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/halant/v7/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/halant/v7/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/halant/v7/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Hammersmith One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/hammersmithone/v10/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Hanalei\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-09-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/hanalei/v10/E21n_dD8iufIjBRHXzgmVydREus.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Hanalei Fill\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/hanaleifill/v8/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Handlee\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/handlee/v8/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Hanuman\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/hanuman/v13/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/hanuman/v13/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Happy Monkey\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/happymonkey/v8/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Harmattan\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/harmattan/v6/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Headland One\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/headlandone/v7/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Heebo\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"300\",\n \"regular\",\n \"500\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"hebrew\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/heebo/v5/NGS0v5_NC0k9P9mVTbRhtKMByaw.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/heebo/v5/NGS3v5_NC0k9P9ldb5RLmq8I0LVF.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/heebo/v5/NGS6v5_NC0k9P-HxR7BDsbMB.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/heebo/v5/NGS3v5_NC0k9P9kFbpRLmq8I0LVF.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/heebo/v5/NGS3v5_NC0k9P9lNaJRLmq8I0LVF.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/heebo/v5/NGS3v5_NC0k9P9lRa5RLmq8I0LVF.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/heebo/v5/NGS3v5_NC0k9P9l1apRLmq8I0LVF.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Henny Penny\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/hennypenny/v7/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Hepta Slab\",\n \"category\": \"serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-10-22\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/heptaslab/v6/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/heptaslab/v6/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/heptaslab/v6/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/heptaslab/v6/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/heptaslab/v6/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/heptaslab/v6/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/heptaslab/v6/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/heptaslab/v6/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/heptaslab/v6/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Herr Von Muellerhoff\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/herrvonmuellerhoff/v9/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Hi Melody\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/himelody/v8/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Hind\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/hind/v10/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/hind/v10/5aU69_a8oxmIRG5yBROzkDM.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/hind/v10/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/hind/v10/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/hind/v10/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Hind Guntur\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/hindguntur/v5/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/hindguntur/v5/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/hindguntur/v5/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/hindguntur/v5/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/hindguntur/v5/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Hind Madurai\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"tamil\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/hindmadurai/v5/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/hindmadurai/v5/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/hindmadurai/v5/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/hindmadurai/v5/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/hindmadurai/v5/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Hind Siliguri\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"bengali\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/hindsiliguri/v6/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/hindsiliguri/v6/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/hindsiliguri/v6/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/hindsiliguri/v6/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/hindsiliguri/v6/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Hind Vadodara\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"gujarati\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/hindvadodara/v6/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/hindvadodara/v6/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/hindvadodara/v6/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/hindvadodara/v6/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/hindvadodara/v6/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Holtwood One SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/holtwoodonesc/v10/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Homemade Apple\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/homemadeapple/v10/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Homenaje\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/homenaje/v9/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"IBM Plex Mono\",\n \"category\": \"monospace\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/ibmplexmono/v5/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v5/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/ibmplexmono/v5/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v5/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/ibmplexmono/v5/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v5/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/ibmplexmono/v5/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v5/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/ibmplexmono/v5/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v5/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/ibmplexmono/v5/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v5/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/ibmplexmono/v5/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v5/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"IBM Plex Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/ibmplexsans/v7/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v7/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/ibmplexsans/v7/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v7/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/ibmplexsans/v7/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v7/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/ibmplexsans/v7/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v7/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/ibmplexsans/v7/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v7/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/ibmplexsans/v7/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v7/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/ibmplexsans/v7/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v7/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"IBM Plex Sans Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"IBM Plex Serif\",\n \"category\": \"serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/ibmplexserif/v8/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v8/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/ibmplexserif/v8/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v8/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/ibmplexserif/v8/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v8/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/ibmplexserif/v8/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v8/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/ibmplexserif/v8/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v8/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/ibmplexserif/v8/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v8/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/ibmplexserif/v8/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v8/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"IM Fell DW Pica\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/imfelldwpica/v9/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/imfelldwpica/v9/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"IM Fell DW Pica SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/imfelldwpicasc/v9/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"IM Fell Double Pica\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/imfelldoublepica/v9/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/imfelldoublepica/v9/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"IM Fell Double Pica SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/imfelldoublepicasc/v9/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"IM Fell English\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/imfellenglish/v9/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/imfellenglish/v9/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"IM Fell English SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/imfellenglishsc/v9/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"IM Fell French Canon\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/imfellfrenchcanon/v9/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/imfellfrenchcanon/v9/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"IM Fell French Canon SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/imfellfrenchcanonsc/v9/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"IM Fell Great Primer\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/imfellgreatprimer/v9/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/imfellgreatprimer/v9/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"IM Fell Great Primer SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/imfellgreatprimersc/v9/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Iceberg\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/iceberg/v7/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Iceland\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/iceland/v8/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Imprima\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/imprima/v8/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Inconsolata\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v18\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/inconsolata/v18/QldKNThLqRwH-OJ1UHjlKFle7KlmxuHx.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/inconsolata/v18/QldXNThLqRwH-OJ1UHjlKGHiw41u7f34DYwn.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Inder\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/inder/v8/w8gUH2YoQe8_4vq6pw-P3U4O.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Indie Flower\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/indieflower/v11/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Inika\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/inika/v8/rnCm-x5X3QP-phTHRcc2s2XH.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/inika/v8/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Inknut Antiqua\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/inknutantiqua/v5/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/inknutantiqua/v5/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/inknutantiqua/v5/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/inknutantiqua/v5/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/inknutantiqua/v5/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/inknutantiqua/v5/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/inknutantiqua/v5/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Irish Grover\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/irishgrover/v10/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Istok Web\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/istokweb/v14/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/istokweb/v14/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/istokweb/v14/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/istokweb/v14/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Italiana\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/italiana/v8/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Italianno\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/italianno/v9/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Itim\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/itim/v4/0nknC9ziJOYewARKkc7ZdwU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Jacques Francois\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/jacquesfrancois/v7/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Jacques Francois Shadow\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/jacquesfrancoisshadow/v8/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Jaldi\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/jaldi/v6/or3sQ67z0_CI30NUZpD_B6g8.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/jaldi/v6/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Jim Nightshade\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/jimnightshade/v7/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Jockey One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/jockeyone/v9/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Jolly Lodger\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/jollylodger/v7/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Jomhuria\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/jomhuria/v7/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Jomolhari\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"tibetan\",\n \"latin\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-10-15\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/jomolhari/v1/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Josefin Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/josefinsans/v14/Qw3EZQNVED7rKGKxtqIqX5Ecbnx9Vnksi4M7.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/josefinsans/v14/Qw3GZQNVED7rKGKxtqIqX5EUCEQZXH0OjpM75PE.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/josefinsans/v14/Qw3FZQNVED7rKGKxtqIqX5Ecpl5dfFcggpoi_Q.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/josefinsans/v14/Qw3HZQNVED7rKGKxtqIqX5EUCETRfl0koJ8y_eiS.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/josefinsans/v14/Qw3aZQNVED7rKGKxtqIqX5EkCnZ5dHw8iw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/josefinsans/v14/Qw3EZQNVED7rKGKxtqIqX5EUCHx9Vnksi4M7.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/josefinsans/v14/Qw3FZQNVED7rKGKxtqIqX5Ec0lhdfFcggpoi_Q.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/josefinsans/v14/Qw3HZQNVED7rKGKxtqIqX5EUCESleF0koJ8y_eiS.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/josefinsans/v14/Qw3FZQNVED7rKGKxtqIqX5EctlldfFcggpoi_Q.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/josefinsans/v14/Qw3HZQNVED7rKGKxtqIqX5EUCETBeV0koJ8y_eiS.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Josefin Slab\",\n \"category\": \"serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/josefinslab/v10/lW-nwjwOK3Ps5GSJlNNkMalvyQ6qBM7oPxMX.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/josefinslab/v10/lW-lwjwOK3Ps5GSJlNNkMalnrzbODsrKOgMX95A.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/josefinslab/v10/lW-mwjwOK3Ps5GSJlNNkMalvASyKLuDkNgoO7g.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/josefinslab/v10/lW-kwjwOK3Ps5GSJlNNkMalnrzYGLOrgFA8e7onu.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/josefinslab/v10/lW-5wjwOK3Ps5GSJlNNkMalXrQSuJsv4Pw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/josefinslab/v10/lW-nwjwOK3Ps5GSJlNNkMalnrw6qBM7oPxMX.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/josefinslab/v10/lW-mwjwOK3Ps5GSJlNNkMalvdSqKLuDkNgoO7g.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/josefinslab/v10/lW-kwjwOK3Ps5GSJlNNkMalnrzZyKurgFA8e7onu.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/josefinslab/v10/lW-mwjwOK3Ps5GSJlNNkMalvESuKLuDkNgoO7g.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/josefinslab/v10/lW-kwjwOK3Ps5GSJlNNkMalnrzYWK-rgFA8e7onu.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Joti One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/jotione/v8/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Jua\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/jua/v8/co3KmW9ljjAjc-DZCsKgsg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Judson\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/judson/v12/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/judson/v12/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/judson/v12/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Julee\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/julee/v9/TuGfUVB3RpZPQ6ZLodgzydtk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Julius Sans One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/juliussansone/v8/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Junge\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/junge/v7/gokgH670Gl1lUqAdvhB7SnKm.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Jura\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-10-24\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/jura/v13/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/jura/v13/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/jura/v13/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/jura/v13/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/jura/v13/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Just Another Hand\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/justanotherhand/v11/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Just Me Again Down Here\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/justmeagaindownhere/v11/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"K2D\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/k2d/v3/J7aRnpF2V0ErE6UpvrIw74NL.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/k2d/v3/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/k2d/v3/J7aenpF2V0Erv4QJlJw85ppSGw.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/k2d/v3/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/k2d/v3/J7aenpF2V0Er24cJlJw85ppSGw.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/k2d/v3/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/k2d/v3/J7aTnpF2V0ETd68tnLcg7w.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/k2d/v3/J7aRnpF2V0EjdaUpvrIw74NL.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/k2d/v3/J7aenpF2V0Erg4YJlJw85ppSGw.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/k2d/v3/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/k2d/v3/J7aenpF2V0Err4EJlJw85ppSGw.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/k2d/v3/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/k2d/v3/J7aenpF2V0Ery4AJlJw85ppSGw.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/k2d/v3/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/k2d/v3/J7aenpF2V0Er14MJlJw85ppSGw.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/k2d/v3/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kadwa\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kadwa/v4/rnCm-x5V0g7iphTHRcc2s2XH.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/kadwa/v4/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kalam\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/kalam/v10/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/kalam/v10/YA9dr0Wd4kDdMuhWMibDszkB.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/kalam/v10/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kameron\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kameron/v10/vm82dR7vXErQxuznsL4wL-XIYH8.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/kameron/v10/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kanit\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/kanit/v5/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/kanit/v5/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/kanit/v5/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/kanit/v5/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/kanit/v5/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/kanit/v5/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/kanit/v5/nKKZ-Go6G5tXcoaSEQGodLxA.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/kanit/v5/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/kanit/v5/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/kanit/v5/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/kanit/v5/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/kanit/v5/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/kanit/v5/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/kanit/v5/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/kanit/v5/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/kanit/v5/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/kanit/v5/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/kanit/v5/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kantumruy\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/kantumruy/v7/syk0-yJ0m7wyVb-f4FOPUtDlpn-UJ1H6Uw.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/kantumruy/v7/sykx-yJ0m7wyVb-f4FO3_vjBrlSILg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/kantumruy/v7/syk0-yJ0m7wyVb-f4FOPQtflpn-UJ1H6Uw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Karla\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-10-15\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/karla/v8/qkBbXvYC6trAT4RSJN225aZO.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/karla/v8/qkBVXvYC6trAT7RQLtmU4LZOgAU.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/karla/v8/qkBWXvYC6trAT7zuC_m-zrpHmRzC.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/karla/v8/qkBQXvYC6trAT7RQFmW7xL5lnAzCKNg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Karma\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/karma/v10/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/karma/v10/va9I4kzAzMZRGIBvS-J3kbDP.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/karma/v10/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/karma/v10/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/karma/v10/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Katibeh\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/katibeh/v7/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kaushan Script\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kaushanscript/v8/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kavivanar\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"tamil\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kavivanar/v5/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kavoon\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kavoon/v8/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kdam Thmor\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kdamthmor/v7/MwQzbhjs3veF6QwJVf0JkGMViblPtXs.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Keania One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/keaniaone/v7/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kelly Slab\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kellyslab/v10/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kenia\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kenia/v11/jizURE5PuHQH9qCONUGswfGM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Khand\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/khand/v8/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/khand/v8/TwMA-IINQlQQ0YpVWHU_TBqO.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/khand/v8/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/khand/v8/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/khand/v8/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Khmer\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/khmer/v12/MjQImit_vPPwpF-BpN2EeYmD.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Khula\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"600\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/khula/v5/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/khula/v5/OpNCnoEOns3V7FcJpA_chzJ0.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/khula/v5/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/khula/v5/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/khula/v5/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kirang Haerang\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kiranghaerang/v8/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kite One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kiteone/v7/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Knewave\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/knewave/v8/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"KoHo\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/koho/v3/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/koho/v3/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/koho/v3/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/koho/v3/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/koho/v3/K2F-fZ5fmddNBikefJbSOos.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/koho/v3/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/koho/v3/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/koho/v3/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/koho/v3/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/koho/v3/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/koho/v3/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/koho/v3/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kodchasan\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/kodchasan/v3/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/kodchasan/v3/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/kodchasan/v3/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/kodchasan/v3/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/kodchasan/v3/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/kodchasan/v3/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/kodchasan/v3/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/kodchasan/v3/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/kodchasan/v3/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/kodchasan/v3/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/kodchasan/v3/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/kodchasan/v3/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kosugi\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"japanese\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kosugi/v6/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kosugi Maru\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"japanese\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kosugimaru/v6/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kotta One\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kottaone/v7/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Koulen\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/koulen/v13/AMOQz46as3KIBPeWgnA9kuYMUg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kranky\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kranky/v10/hESw6XVgJzlPsFnMpheEZo_H_w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kreon\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v21\",\n \"lastModified\": \"2019-10-22\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/kreon/v21/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/kreon/v21/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/kreon/v21/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/kreon/v21/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/kreon/v21/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kristi\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kristi/v11/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Krona One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kronaone/v8/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Krub\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/krub/v3/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/krub/v3/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/krub/v3/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/krub/v3/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/krub/v3/sZlLdRyC6CRYXkYQDLlTW6E.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/krub/v3/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/krub/v3/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/krub/v3/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/krub/v3/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/krub/v3/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/krub/v3/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/krub/v3/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kumar One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"gujarati\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kumarone/v4/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kumar One Outline\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"gujarati\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kumaroneoutline/v5/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Kurale\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/kurale/v5/4iCs6KV9e9dXjho6eAT3v02QFg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"La Belle Aurore\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/labelleaurore/v10/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lacquer\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lacquer/v1/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Laila\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/laila/v6/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/laila/v6/LYjMdG_8nE8jDIRdiidIrEIu.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/laila/v6/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/laila/v6/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/laila/v6/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lakki Reddy\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lakkireddy/v6/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lalezar\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"arabic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lalezar/v6/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lancelot\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lancelot/v9/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lateef\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v15\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lateef/v15/hESw6XVnNCxEvkbMpheEZo_H_w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lato\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v16\",\n \"lastModified\": \"2019-07-23\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/lato/v16/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/lato/v16/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/lato/v16/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/lato/v16/S6uyw4BMUTPHvxk6XweuBCY.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/lato/v16/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/lato/v16/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/lato/v16/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"League Script\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/leaguescript/v11/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Leckerli One\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/leckerlione/v10/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ledger\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ledger/v7/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lekton\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lekton/v10/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/lekton/v10/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/lekton/v10/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lemon\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lemon/v8/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lemonada\",\n \"category\": \"display\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"arabic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/lemonada/v7/0QIkMXFD9oygTWy_R8PindGu2bje-RpH.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/lemonada/v7/0QIjMXFD9oygTWy_R_tOtfWm8qTX.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/lemonada/v7/0QIkMXFD9oygTWy_R8OWm9Gu2bje-RpH.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/lemonada/v7/0QIkMXFD9oygTWy_R8PymtGu2bje-RpH.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lexend Deca\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-08-14\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lexenddeca/v1/K2F1fZFYk-dHSE0UPPuwQ6qgLS76ZHOM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lexend Exa\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-08-14\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lexendexa/v1/UMBXrPdOoHOnxExyjdBeWirXArM58BY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lexend Giga\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-08-14\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lexendgiga/v1/PlI5Fl67Mah5Y8yMHE7lkVxEt8CwfGaD.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lexend Mega\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-08-14\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lexendmega/v1/qFdA35aBi5JtHD41zSTFEv7K6BsAikI7.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lexend Peta\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-08-14\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lexendpeta/v1/BXRvvFPGjeLPh0kCfI4OkE_1c8Tf1IW3.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lexend Tera\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-08-14\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lexendtera/v1/RrQUbo98_jt_IXnBPwCWtZhARYMgGtWA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lexend Zetta\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-08-14\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lexendzetta/v1/ll87K2KYXje7CdOFnEWcU8soliQejRR7AQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Libre Barcode 128\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/librebarcode128/v9/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Libre Barcode 128 Text\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/librebarcode128text/v9/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Libre Barcode 39\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/librebarcode39/v9/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Libre Barcode 39 Extended\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/librebarcode39extended/v8/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Libre Barcode 39 Extended Text\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/librebarcode39extendedtext/v8/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Libre Barcode 39 Text\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/librebarcode39text/v9/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Libre Baskerville\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/librebaskerville/v7/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/librebaskerville/v7/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/librebaskerville/v7/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Libre Caslon Display\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/librecaslondisplay/v1/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Libre Caslon Text\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/librecaslontext/v1/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/librecaslontext/v1/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/librecaslontext/v1/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Libre Franklin\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizBREVItHgc8qDIbSTKq4XkRi182zIZj1bIkNo.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizHREVItHgc8qDIbSTKq4XkRiUa41YTi3TNgNq55w.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizAREVItHgc8qDIbSTKq4XkRi3Q-hIzoVrBicOg.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizGREVItHgc8qDIbSTKq4XkRiUa4_oyq17jjNOg_oc.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizAREVItHgc8qDIbSTKq4XkRi20-RIzoVrBicOg.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizGREVItHgc8qDIbSTKq4XkRiUa454xq17jjNOg_oc.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizDREVItHgc8qDIbSTKq4XkRhUY0TY7ikbI.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizBREVItHgc8qDIbSTKq4XkRiUa2zIZj1bIkNo.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizAREVItHgc8qDIbSTKq4XkRi3s-BIzoVrBicOg.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizGREVItHgc8qDIbSTKq4XkRiUa48Ywq17jjNOg_oc.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizAREVItHgc8qDIbSTKq4XkRi3A_xIzoVrBicOg.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizGREVItHgc8qDIbSTKq4XkRiUa4-o3q17jjNOg_oc.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizAREVItHgc8qDIbSTKq4XkRi2k_hIzoVrBicOg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizGREVItHgc8qDIbSTKq4XkRiUa4442q17jjNOg_oc.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizAREVItHgc8qDIbSTKq4XkRi24_RIzoVrBicOg.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizGREVItHgc8qDIbSTKq4XkRiUa45I1q17jjNOg_oc.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizAREVItHgc8qDIbSTKq4XkRi2c_BIzoVrBicOg.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/librefranklin/v4/jizGREVItHgc8qDIbSTKq4XkRiUa47Y0q17jjNOg_oc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Life Savers\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lifesavers/v10/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/lifesavers/v10/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/lifesavers/v10/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lilita One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lilitaone/v7/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lily Script One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lilyscriptone/v7/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Limelight\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/limelight/v10/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Linden Hill\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lindenhill/v9/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/lindenhill/v9/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Literata\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"italic\",\n \"500italic\",\n \"600italic\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-10-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/literata/v14/or38Q6P12-iJxAIgLa78DkTtAoDhk0oVpaLVa5RXzC1KOw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/literata/v14/or38Q6P12-iJxAIgLa78DkTtAoDhk0oVl6LVa5RXzC1KOw.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/literata/v14/or38Q6P12-iJxAIgLa78DkTtAoDhk0oVe6XVa5RXzC1KOw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/literata/v14/or38Q6P12-iJxAIgLa78DkTtAoDhk0oVQqXVa5RXzC1KOw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/literata/v14/or3yQ6P12-iJxAIgLYT1PLs1a-t7PU0AbeE9KJ5T7ihaO_CS.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/literata/v14/or3yQ6P12-iJxAIgLYT1PLs1a-t7PU0AbeEPKJ5T7ihaO_CS.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/literata/v14/or3yQ6P12-iJxAIgLYT1PLs1a-t7PU0AbeHjL55T7ihaO_CS.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/literata/v14/or3yQ6P12-iJxAIgLYT1PLs1a-t7PU0AbeHaL55T7ihaO_CS.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Liu Jian Mao Cao\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"chinese-simplified\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/liujianmaocao/v5/845DNN84HJrccNonurqXILGpvCOoferVKGWsUo8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Livvic\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/livvic/v3/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/livvic/v3/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/livvic/v3/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/livvic/v3/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/livvic/v3/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/livvic/v3/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/livvic/v3/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/livvic/v3/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/livvic/v3/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/livvic/v3/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/livvic/v3/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/livvic/v3/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/livvic/v3/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/livvic/v3/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/livvic/v3/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/livvic/v3/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lobster\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v22\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lobster/v22/neILzCirqoswsqX9_oWsMqEzSJQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lobster Two\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lobstertwo/v12/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/lobstertwo/v12/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/lobstertwo/v12/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/lobstertwo/v12/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Londrina Outline\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/londrinaoutline/v10/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Londrina Shadow\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/londrinashadow/v9/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Londrina Sketch\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/londrinasketch/v8/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Londrina Solid\",\n \"category\": \"display\",\n \"variants\": [\n \"100\",\n \"300\",\n \"regular\",\n \"900\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/londrinasolid/v9/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/londrinasolid/v9/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/londrinasolid/v9/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/londrinasolid/v9/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Long Cang\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"chinese-simplified\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/longcang/v5/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lora\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lora/v14/0QIvMX1D_JOuAw3xItNPh_A.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/lora/v14/0QIhMX1D_JOuMw_7JvFKl_C28g.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/lora/v14/0QIgMX1D_JOuO7HeBttkm_mv670.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/lora/v14/0QIiMX1D_JOuMw_Dmt5un9uq-73O-Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Love Ya Like A Sister\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/loveyalikeasister/v10/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Loved by the King\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lovedbytheking/v9/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lovers Quarrel\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/loversquarrel/v7/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Luckiest Guy\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/luckiestguy/v10/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lusitana\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lusitana/v7/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/lusitana/v7/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Lustria\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/lustria/v7/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"M PLUS 1p\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"300\",\n \"regular\",\n \"500\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"japanese\",\n \"cyrillic\",\n \"greek-ext\",\n \"hebrew\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v19\",\n \"lastModified\": \"2019-07-23\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/mplus1p/v19/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/mplus1p/v19/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"M PLUS Rounded 1c\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"300\",\n \"regular\",\n \"500\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"japanese\",\n \"cyrillic\",\n \"greek-ext\",\n \"hebrew\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ma Shan Zheng\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"chinese-simplified\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mashanzheng/v5/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Macondo\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/macondo/v8/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Macondo Swash Caps\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/macondoswashcaps/v7/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mada\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/mada/v8/7Au_p_0qnzeSdf3nCCL8zkwMIFg.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/mada/v8/7Au_p_0qnzeSdZnkCCL8zkwMIFg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/mada/v8/7Auwp_0qnzeSTTXMLCrX0kU.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/mada/v8/7Au_p_0qnzeSdcHlCCL8zkwMIFg.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/mada/v8/7Au_p_0qnzeSde3iCCL8zkwMIFg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/mada/v8/7Au_p_0qnzeSdYnjCCL8zkwMIFg.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/mada/v8/7Au_p_0qnzeSdbHhCCL8zkwMIFg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Magra\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/magra/v8/uK_94ruaZus72k5xIDMfO-ed.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/magra/v8/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Maiden Orange\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/maidenorange/v10/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Maitree\",\n \"category\": \"serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/maitree/v4/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/maitree/v4/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/maitree/v4/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/maitree/v4/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/maitree/v4/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/maitree/v4/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Major Mono Display\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/majormonodisplay/v3/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mako\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mako/v11/H4coBX6Mmc_Z0ST09g478Lo.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mali\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/mali/v3/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/mali/v3/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/mali/v3/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/mali/v3/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/mali/v3/N0ba2SRONuN4eCrODlxxOd8.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/mali/v3/N0bU2SRONuN4SCjECn50Kd_PmA.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/mali/v3/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/mali/v3/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/mali/v3/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/mali/v3/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/mali/v3/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/mali/v3/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mallanna\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mallanna/v7/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mandali\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mandali/v8/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Manjari\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"malayalam\",\n \"latin\"\n ],\n \"version\": \"v2\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/manjari/v2/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/manjari/v2/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/manjari/v2/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mansalva\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-09-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mansalva/v1/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Manuale\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/manuale/v4/f0X20eas_8Z-TFZdBPbEw8nG6aY.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/manuale/v4/f0X00eas_8Z-TFZdNPTOx-vD-aYfeA.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/manuale/v4/f0Xz0eas_8Z-TFZdPALt58Ht9a8GYeA.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/manuale/v4/f0Xx0eas_8Z-TFZdNPT2M8Ln8Y0DceA0OQ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/manuale/v4/f0Xz0eas_8Z-TFZdPC7q58Ht9a8GYeA.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/manuale/v4/f0Xx0eas_8Z-TFZdNPT2H8Xn8Y0DceA0OQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/manuale/v4/f0Xz0eas_8Z-TFZdPErr58Ht9a8GYeA.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/manuale/v4/f0Xx0eas_8Z-TFZdNPT2e8Tn8Y0DceA0OQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Marcellus\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/marcellus/v7/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Marcellus SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/marcellussc/v7/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Marck Script\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/marckscript/v10/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Margarine\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/margarine/v8/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Markazi Text\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"arabic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-10-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/markazitext/v10/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/markazitext/v10/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/markazitext/v10/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/markazitext/v10/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Marko One\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/markoone/v9/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Marmelad\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/marmelad/v9/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Martel\",\n \"category\": \"serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/martel/v4/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/martel/v4/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/martel/v4/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/martel/v4/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/martel/v4/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/martel/v4/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/martel/v4/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Martel Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/martelsans/v6/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/martelsans/v6/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/martelsans/v6/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/martelsans/v6/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/martelsans/v6/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/martelsans/v6/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/martelsans/v6/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Marvel\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/marvel/v9/nwpVtKeoNgBV0qaIkV7ED366zg.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/marvel/v9/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/marvel/v9/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/marvel/v9/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mate\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mate/v8/m8JdjftRd7WZ2z28WoXSaLU.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/mate/v8/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mate SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/matesc/v8/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Maven Pro\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-10-15\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mavenpro/v13/7Au9p_AqnyWWAxW2Wk32ym4JMFge0g.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/mavenpro/v13/7Au4p_AqnyWWAxW2Wk3OPkctOHMC21go8A.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/mavenpro/v13/7Au4p_AqnyWWAxW2Wk3OdkEtOHMC21go8A.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/mavenpro/v13/7Au4p_AqnyWWAxW2Wk3OTkMtOHMC21go8A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"McLaren\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mclaren/v7/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Meddon\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/meddon/v12/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"MedievalSharp\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/medievalsharp/v12/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Medula One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/medulaone/v9/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Meera Inimai\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"tamil\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/meerainimai/v4/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Megrim\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/megrim/v10/46kulbz5WjvLqJZlbWXgd0RY1g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Meie Script\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/meiescript/v7/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Merienda\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/merienda/v8/gNMHW3x8Qoy5_mf8uVMCOou6_dvg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/merienda/v8/gNMAW3x8Qoy5_mf8uWu-Fa-y1sfpPES4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Merienda One\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/meriendaone/v10/H4cgBXaMndbflEq6kyZ1ht6YgoyyYzFzFw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Merriweather\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v21\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/merriweather/v21/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/merriweather/v21/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/merriweather/v21/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/merriweather/v21/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/merriweather/v21/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/merriweather/v21/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/merriweather/v21/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/merriweather/v21/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Merriweather Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/merriweathersans/v11/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1eYBDD2BdWzIqY.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/merriweathersans/v11/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXwepzB0hN0yZqYcqw.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/merriweathersans/v11/2-c99IRs1JiJN1FRAMjTN5zd9vgsFEXySDTL8wtf.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/merriweathersans/v11/2-c79IRs1JiJN1FRAMjTN5zd9vgsFHXwQjDp9htf1ZM.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/merriweathersans/v11/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1OZxDD2BdWzIqY.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/merriweathersans/v11/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXweozG0hN0yZqYcqw.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/merriweathersans/v11/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1SZBDD2BdWzIqY.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/merriweathersans/v11/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXwepDF0hN0yZqYcqw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Metal\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/metal/v12/lW-wwjUJIXTo7i3nnoQAUdN2.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Metal Mania\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/metalmania/v9/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Metamorphous\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/metamorphous/v10/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Metrophobic\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/metrophobic/v13/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Michroma\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/michroma/v10/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Milonga\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/milonga/v7/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Miltonian\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/miltonian/v13/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Miltonian Tattoo\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v15\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/miltoniantattoo/v15/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mina\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"bengali\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mina/v3/-nFzOGc18vARrz9j7i3y65o.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/mina/v3/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Miniver\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/miniver/v8/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Miriam Libre\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"hebrew\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/miriamlibre/v6/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/miriamlibre/v6/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mirza\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mirza/v7/co3ImWlikiN5EurdKMewsrvI.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/mirza/v7/co3FmWlikiN5EtIpAeO4mafBomDi.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/mirza/v7/co3FmWlikiN5EtIFBuO4mafBomDi.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/mirza/v7/co3FmWlikiN5EtJhB-O4mafBomDi.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Miss Fajardose\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/missfajardose/v9/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mitr\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/mitr/v5/pxiLypw5ucZFyTsyMJj_b1o.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Modak\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/modak/v5/EJRYQgs1XtIEsnMH8BVZ76KU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Modern Antiqua\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/modernantiqua/v9/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mogra\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"gujarati\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mogra/v6/f0X40eSs8c95TBo4DvLmxtnG.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Molengo\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/molengo/v10/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Molle\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"italic\": \"http://fonts.gstatic.com/s/molle/v8/E21n_dL5hOXFhWEsXzgmVydREus.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Monda\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/monda/v9/TK3tWkYFABsmjvpmNBsLvPdG.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/monda/v9/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Monofett\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/monofett/v9/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Monoton\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/monoton/v9/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Monsieur La Doulaise\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/monsieurladoulaise/v8/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Montaga\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/montaga/v7/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Montez\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/montez/v10/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Montserrat\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-07-23\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/montserrat/v14/JTUQjIg1_i6t8kCHKm45_QphziTn89dtpQ.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/montserrat/v14/JTUOjIg1_i6t8kCHKm459WxZqi7j0dJ9pTOi.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_aZA7g7J_950vCo.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZBg_D-_xxrCq7qg.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_cJD7g7J_950vCo.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZYgzD-_xxrCq7qg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/montserrat/v14/JTUSjIg1_i6t8kCHKm45xW5rygbi49c.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxhziTn89dtpQ.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_ZpC7g7J_950vCo.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZOg3D-_xxrCq7qg.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_bZF7g7J_950vCo.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZFgrD-_xxrCq7qg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE7g7J_950vCo.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvD-_xxrCq7qg.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_c5H7g7J_950vCo.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZbgjD-_xxrCq7qg.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_epG7g7J_950vCo.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZSgnD-_xxrCq7qg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Montserrat Alternates\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/montserratalternates/v11/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Montserrat Subrayada\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/montserratsubrayada/v9/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/montserratsubrayada/v9/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Moul\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/moul/v11/nuF2D__FSo_3E-RYiJCy-00.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Moulpali\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/moulpali/v12/H4ckBXKMl9HagUWymyY6wr-wg763.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mountains of Christmas\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mountainsofchristmas/v12/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/mountainsofchristmas/v12/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mouse Memoirs\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mousememoirs/v7/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mr Bedfort\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mrbedfort/v8/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mr Dafoe\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mrdafoe/v8/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mr De Haviland\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mrdehaviland/v8/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mrs Saint Delafield\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mrssaintdelafield/v7/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mrs Sheppards\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mrssheppards/v8/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mukta\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/mukta/v7/iJWKBXyXfDDVXYnGp32S0H3f.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mukta Mahee\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"gurmukhi\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/muktamahee/v5/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/muktamahee/v5/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/muktamahee/v5/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/muktamahee/v5/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/muktamahee/v5/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/muktamahee/v5/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/muktamahee/v5/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mukta Malar\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"tamil\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/muktamalar/v6/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/muktamalar/v6/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/muktamalar/v6/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/muktamalar/v6/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/muktamalar/v6/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/muktamalar/v6/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/muktamalar/v6/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mukta Vaani\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"gujarati\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/muktavaani/v7/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Muli\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v16\",\n \"lastModified\": \"2019-10-15\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/muli/v16/7Au_p_0qiz-adf3nCCL8zkwMIFg.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/muli/v16/7Au9p_0qiz-afTf-4CP2ym4JMFge0g.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/muli/v16/7Au_p_0qiz-adZnkCCL8zkwMIFg.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/muli/v16/7Au9p_0qiz-afTf-hCD2ym4JMFge0g.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/muli/v16/7Auwp_0qiz-aTTXMLCrX0kU.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/muli/v16/7Au-p_0qiz-afTfGKAjSwkUVOQ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/muli/v16/7Au_p_0qiz-ade3iCCL8zkwMIFg.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/muli/v16/7Au9p_0qiz-afTf-8Cb2ym4JMFge0g.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/muli/v16/7Au_p_0qiz-adYnjCCL8zkwMIFg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/muli/v16/7Au9p_0qiz-afTf-lCf2ym4JMFge0g.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/muli/v16/7Au_p_0qiz-adZXgCCL8zkwMIFg.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/muli/v16/7Au9p_0qiz-afTf-iCT2ym4JMFge0g.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/muli/v16/7Au_p_0qiz-adbHhCCL8zkwMIFg.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/muli/v16/7Au9p_0qiz-afTf-rCX2ym4JMFge0g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Mystery Quest\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/mysteryquest/v7/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"NTR\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ntr/v7/RLpzK5Xy0ZjiGGhs5TA4bg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nanum Brush Script\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v17\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/nanumbrushscript/v17/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nanum Gothic\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v17\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/nanumgothic/v17/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/nanumgothic/v17/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/nanumgothic/v17/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nanum Gothic Coding\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/nanumgothiccoding/v14/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/nanumgothiccoding/v14/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nanum Myeongjo\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v15\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/nanummyeongjo/v15/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/nanummyeongjo/v15/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/nanummyeongjo/v15/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nanum Pen Script\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v15\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/nanumpenscript/v15/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Neucha\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/neucha/v11/q5uGsou0JOdh94bvugNsCxVEgA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Neuton\",\n \"category\": \"serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"italic\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/neuton/v12/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/neuton/v12/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/neuton/v12/UMBTrPtMoH62xUZyyII7civlBw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/neuton/v12/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/neuton/v12/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/neuton/v12/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"New Rocker\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/newrocker/v8/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"News Cycle\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v16\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/newscycle/v16/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/newscycle/v16/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Niconne\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/niconne/v9/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Niramit\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/niramit/v4/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/niramit/v4/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/niramit/v4/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/niramit/v4/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/niramit/v4/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/niramit/v4/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/niramit/v4/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/niramit/v4/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/niramit/v4/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/niramit/v4/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/niramit/v4/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/niramit/v4/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nixie One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/nixieone/v10/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nobile\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/nobile/v11/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/nobile/v11/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/nobile/v11/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/nobile/v11/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/nobile/v11/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/nobile/v11/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nokora\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/nokora/v13/hYkIPuwgTubzaWxQOzoPovZg8Q.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/nokora/v13/hYkLPuwgTubzaWxohxUrqt18-B9Uuw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Norican\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/norican/v8/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nosifer\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/nosifer/v8/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Notable\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/notable/v4/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nothing You Could Do\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/nothingyoucoulddo/v9/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Noticia Text\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/noticiatext/v9/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/noticiatext/v9/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/noticiatext/v9/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/noticiatext/v9/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Noto Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/notosans/v9/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/notosans/v9/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/notosans/v9/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/notosans/v9/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Noto Sans HK\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"300\",\n \"regular\",\n \"500\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"chinese-hongkong\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/notosanshk/v5/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf\",\n \"300\": \"http://fonts.gstatic.com/s/notosanshk/v5/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf\",\n \"regular\": \"http://fonts.gstatic.com/s/notosanshk/v5/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf\",\n \"500\": \"http://fonts.gstatic.com/s/notosanshk/v5/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf\",\n \"700\": \"http://fonts.gstatic.com/s/notosanshk/v5/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf\",\n \"900\": \"http://fonts.gstatic.com/s/notosanshk/v5/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Noto Sans JP\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"300\",\n \"regular\",\n \"500\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"japanese\",\n \"latin\"\n ],\n \"version\": \"v24\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/notosansjp/v24/-F6ofjtqLzI2JPCgQBnw7HFQoggM-FNthvIU.otf\",\n \"300\": \"http://fonts.gstatic.com/s/notosansjp/v24/-F6pfjtqLzI2JPCgQBnw7HFQaioq1H1hj-sNFQ.otf\",\n \"regular\": \"http://fonts.gstatic.com/s/notosansjp/v24/-F62fjtqLzI2JPCgQBnw7HFowAIO2lZ9hg.otf\",\n \"500\": \"http://fonts.gstatic.com/s/notosansjp/v24/-F6pfjtqLzI2JPCgQBnw7HFQMisq1H1hj-sNFQ.otf\",\n \"700\": \"http://fonts.gstatic.com/s/notosansjp/v24/-F6pfjtqLzI2JPCgQBnw7HFQei0q1H1hj-sNFQ.otf\",\n \"900\": \"http://fonts.gstatic.com/s/notosansjp/v24/-F6pfjtqLzI2JPCgQBnw7HFQQi8q1H1hj-sNFQ.otf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Noto Sans KR\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"300\",\n \"regular\",\n \"500\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/notosanskr/v12/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf\",\n \"300\": \"http://fonts.gstatic.com/s/notosanskr/v12/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf\",\n \"regular\": \"http://fonts.gstatic.com/s/notosanskr/v12/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf\",\n \"500\": \"http://fonts.gstatic.com/s/notosanskr/v12/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf\",\n \"700\": \"http://fonts.gstatic.com/s/notosanskr/v12/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf\",\n \"900\": \"http://fonts.gstatic.com/s/notosanskr/v12/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Noto Sans SC\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"300\",\n \"regular\",\n \"500\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"chinese-simplified\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/notosanssc/v9/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf\",\n \"300\": \"http://fonts.gstatic.com/s/notosanssc/v9/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf\",\n \"regular\": \"http://fonts.gstatic.com/s/notosanssc/v9/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf\",\n \"500\": \"http://fonts.gstatic.com/s/notosanssc/v9/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf\",\n \"700\": \"http://fonts.gstatic.com/s/notosanssc/v9/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf\",\n \"900\": \"http://fonts.gstatic.com/s/notosanssc/v9/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Noto Sans TC\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"300\",\n \"regular\",\n \"500\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"chinese-traditional\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/notosanstc/v9/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf\",\n \"300\": \"http://fonts.gstatic.com/s/notosanstc/v9/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf\",\n \"regular\": \"http://fonts.gstatic.com/s/notosanstc/v9/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf\",\n \"500\": \"http://fonts.gstatic.com/s/notosanstc/v9/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf\",\n \"700\": \"http://fonts.gstatic.com/s/notosanstc/v9/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf\",\n \"900\": \"http://fonts.gstatic.com/s/notosanstc/v9/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Noto Serif\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/notoserif/v8/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/notoserif/v8/ga6Kaw1J5X9T9RW6j9bNfFIWbTq6fMRRMw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/notoserif/v8/ga6Law1J5X9T9RW6j9bNdOwzTRCUcM1IKoY.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/notoserif/v8/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedO9NOoYIDg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Noto Serif JP\",\n \"category\": \"serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"japanese\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/notoserifjp/v7/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf\",\n \"300\": \"http://fonts.gstatic.com/s/notoserifjp/v7/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf\",\n \"regular\": \"http://fonts.gstatic.com/s/notoserifjp/v7/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf\",\n \"500\": \"http://fonts.gstatic.com/s/notoserifjp/v7/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf\",\n \"600\": \"http://fonts.gstatic.com/s/notoserifjp/v7/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf\",\n \"700\": \"http://fonts.gstatic.com/s/notoserifjp/v7/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf\",\n \"900\": \"http://fonts.gstatic.com/s/notoserifjp/v7/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Noto Serif KR\",\n \"category\": \"serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/notoserifkr/v6/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf\",\n \"300\": \"http://fonts.gstatic.com/s/notoserifkr/v6/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf\",\n \"regular\": \"http://fonts.gstatic.com/s/notoserifkr/v6/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf\",\n \"500\": \"http://fonts.gstatic.com/s/notoserifkr/v6/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf\",\n \"600\": \"http://fonts.gstatic.com/s/notoserifkr/v6/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf\",\n \"700\": \"http://fonts.gstatic.com/s/notoserifkr/v6/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf\",\n \"900\": \"http://fonts.gstatic.com/s/notoserifkr/v6/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Noto Serif SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"chinese-simplified\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/notoserifsc/v6/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf\",\n \"300\": \"http://fonts.gstatic.com/s/notoserifsc/v6/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf\",\n \"regular\": \"http://fonts.gstatic.com/s/notoserifsc/v6/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf\",\n \"500\": \"http://fonts.gstatic.com/s/notoserifsc/v6/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf\",\n \"600\": \"http://fonts.gstatic.com/s/notoserifsc/v6/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf\",\n \"700\": \"http://fonts.gstatic.com/s/notoserifsc/v6/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf\",\n \"900\": \"http://fonts.gstatic.com/s/notoserifsc/v6/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Noto Serif TC\",\n \"category\": \"serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"chinese-traditional\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/notoseriftc/v6/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf\",\n \"300\": \"http://fonts.gstatic.com/s/notoseriftc/v6/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf\",\n \"regular\": \"http://fonts.gstatic.com/s/notoseriftc/v6/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf\",\n \"500\": \"http://fonts.gstatic.com/s/notoseriftc/v6/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf\",\n \"600\": \"http://fonts.gstatic.com/s/notoseriftc/v6/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf\",\n \"700\": \"http://fonts.gstatic.com/s/notoseriftc/v6/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf\",\n \"900\": \"http://fonts.gstatic.com/s/notoseriftc/v6/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nova Cut\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/novacut/v11/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nova Flat\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/novaflat/v11/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nova Mono\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"greek\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/novamono/v10/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nova Oval\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/novaoval/v11/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nova Round\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/novaround/v11/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nova Script\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/novascript/v12/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nova Slim\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/novaslim/v11/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nova Square\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/novasquare/v12/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Numans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/numans/v9/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nunito\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofA-sekZuHJeTsfDQ.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN5MZ-vNWz4PDWtj.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofAnsSkZuHJeTsfDQ.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN4oZOvNWz4PDWtj.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/nunito/v11/XRXV3I6Li01BKof4MuyAbsrVcA.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/nunito/v11/XRXX3I6Li01BKofIMOaETM_FcCIG.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofA6sKkZuHJeTsfDQ.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN5cYuvNWz4PDWtj.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofAjsOkZuHJeTsfDQ.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN44Y-vNWz4PDWtj.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofAksCkZuHJeTsfDQ.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN4kYOvNWz4PDWtj.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofAtsGkZuHJeTsfDQ.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN4AYevNWz4PDWtj.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Nunito Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/nunitosans/v5/pe03MImSLYBIv1o4X1M8cc9yAv5qWVAgVol-.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/nunitosans/v5/pe01MImSLYBIv1o4X1M8cce4GxZrU1QCU5l-06Y.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/nunitosans/v5/pe03MImSLYBIv1o4X1M8cc8WAf5qWVAgVol-.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/nunitosans/v5/pe01MImSLYBIv1o4X1M8cce4G3JoU1QCU5l-06Y.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/nunitosans/v5/pe0qMImSLYBIv1o4X1M8cfe6Kdpickwp.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/nunitosans/v5/pe0oMImSLYBIv1o4X1M8cce4I95Ad1wpT5A.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/nunitosans/v5/pe03MImSLYBIv1o4X1M8cc9iB_5qWVAgVol-.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/nunitosans/v5/pe01MImSLYBIv1o4X1M8cce4GwZuU1QCU5l-06Y.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/nunitosans/v5/pe03MImSLYBIv1o4X1M8cc8GBv5qWVAgVol-.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/nunitosans/v5/pe01MImSLYBIv1o4X1M8cce4G2JvU1QCU5l-06Y.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/nunitosans/v5/pe03MImSLYBIv1o4X1M8cc8aBf5qWVAgVol-.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/nunitosans/v5/pe01MImSLYBIv1o4X1M8cce4G35sU1QCU5l-06Y.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/nunitosans/v5/pe03MImSLYBIv1o4X1M8cc8-BP5qWVAgVol-.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/nunitosans/v5/pe01MImSLYBIv1o4X1M8cce4G1ptU1QCU5l-06Y.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Odor Mean Chey\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/odormeanchey/v11/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Offside\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/offside/v7/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Old Standard TT\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/oldstandardtt/v12/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/oldstandardtt/v12/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/oldstandardtt/v12/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Oldenburg\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/oldenburg/v7/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Oleo Script\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/oleoscript/v8/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/oleoscript/v8/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Oleo Script Swash Caps\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/oleoscriptswashcaps/v7/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/oleoscriptswashcaps/v7/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Open Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v17\",\n \"lastModified\": \"2019-07-23\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UN_r8-VeJoCqeDjg.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/opensans/v17/memnYaGs126MiZpBA-UFUKWyV-hsKKKTjrPW.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-U1UpcaXcl0Aw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/opensans/v17/mem6YaGs126MiZpBA-UFUJ0ef8xkA76a.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UNirk-VeJoCqeDjg.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/opensans/v17/memnYaGs126MiZpBA-UFUKXGUehsKKKTjrPW.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UN7rg-VeJoCqeDjg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/opensans/v17/memnYaGs126MiZpBA-UFUKWiUOhsKKKTjrPW.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UN8rs-VeJoCqeDjg.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/opensans/v17/memnYaGs126MiZpBA-UFUKW-U-hsKKKTjrPW.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Open Sans Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"700\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/opensanscondensed/v14/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhPuLGRpWRyAs.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/opensanscondensed/v14/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suDMQreU2AsJSg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/opensanscondensed/v14/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmPuLGRpWRyAs.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Oranienbaum\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/oranienbaum/v8/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Orbitron\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-10-15\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/orbitron/v11/yMJRMIlzdpvBhQQL_Tq8fSx5i814.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/orbitron/v11/yMJWMIlzdpvBhQQL_QJIVAhxoNFxW0Hz.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/orbitron/v11/yMJWMIlzdpvBhQQL_QIAUghxoNFxW0Hz.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/orbitron/v11/yMJWMIlzdpvBhQQL_QI4UAhxoNFxW0Hz.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Oregano\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/oregano/v7/If2IXTPxciS3H4S2kZffPznO3yM.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/oregano/v7/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Orienta\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/orienta/v7/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Original Surfer\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/originalsurfer/v8/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Oswald\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v29\",\n \"lastModified\": \"2019-10-22\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/oswald/v29/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/oswald/v29/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/oswald/v29/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/oswald/v29/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/oswald/v29/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/oswald/v29/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Over the Rainbow\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/overtherainbow/v10/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Overlock\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/overlock/v9/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/overlock/v9/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/overlock/v9/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/overlock/v9/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/overlock/v9/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/overlock/v9/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Overlock SC\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/overlocksc/v8/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Overpass\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/overpass/v4/qFdB35WCmI96Ajtm81nGU97gxhcJk1s.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/overpass/v4/qFdD35WCmI96Ajtm81Gga7rqwjUMg1siNQ.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81lqcv7K6BsAikI7.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81GgaxbL4h8ij1I7LLE.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kOcf7K6BsAikI7.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga3LI4h8ij1I7LLE.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/overpass/v4/qFdH35WCmI96Ajtm82GiWdrCwwcJ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/overpass/v4/qFdB35WCmI96Ajtm81GgU97gxhcJk1s.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81l6d_7K6BsAikI7.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81GgawbO4h8ij1I7LLE.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kedv7K6BsAikI7.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga2LP4h8ij1I7LLE.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kCdf7K6BsAikI7.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga37M4h8ij1I7LLE.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kmdP7K6BsAikI7.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga1rN4h8ij1I7LLE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Overpass Mono\",\n \"category\": \"monospace\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/overpassmono/v5/_Xm3-H86tzKDdAPa-KPQZ-AC3oSWk_edB3Zf8EQ.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/overpassmono/v5/_Xmq-H86tzKDdAPa-KPQZ-AC5ii-t_-2G38.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/overpassmono/v5/_Xm3-H86tzKDdAPa-KPQZ-AC3vCQk_edB3Zf8EQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/overpassmono/v5/_Xm3-H86tzKDdAPa-KPQZ-AC3pSRk_edB3Zf8EQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ovo\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ovo/v11/yYLl0h7Wyfzjy4Q5_3WVxA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Oxygen\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/oxygen/v9/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/oxygen/v9/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/oxygen/v9/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Oxygen Mono\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/oxygenmono/v7/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"PT Mono\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ptmono/v7/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"PT Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ptsans/v11/jizaRExUiTo99u79P0WOxOGMMDQ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/ptsans/v11/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/ptsans/v11/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/ptsans/v11/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"PT Sans Caption\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ptsanscaption/v12/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/ptsanscaption/v12/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"PT Sans Narrow\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ptsansnarrow/v11/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/ptsansnarrow/v11/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"PT Serif\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ptserif/v11/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/ptserif/v11/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/ptserif/v11/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/ptserif/v11/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"PT Serif Caption\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ptserifcaption/v11/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/ptserifcaption/v11/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Pacifico\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v16\",\n \"lastModified\": \"2019-09-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/pacifico/v16/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Padauk\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"myanmar\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/padauk/v6/RrQRboJg-id7OnbBa0_g3LlYbg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/padauk/v6/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Palanquin\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/palanquin/v5/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/palanquin/v5/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Palanquin Dark\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/palanquindark/v6/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/palanquindark/v6/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/palanquindark/v6/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/palanquindark/v6/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Pangolin\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/pangolin/v5/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Paprika\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/paprika/v7/8QIJdijZitv49rDfuIgOq7jkAOw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Parisienne\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/parisienne/v7/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Passero One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/passeroone/v11/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Passion One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/passionone/v10/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/passionone/v10/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/passionone/v10/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Pathway Gothic One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/pathwaygothicone/v8/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Patrick Hand\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/patrickhand/v13/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Patrick Hand SC\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/patrickhandsc/v7/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Pattaya\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/pattaya/v5/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Patua One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/patuaone/v10/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Pavanam\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"tamil\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/pavanam/v4/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Paytone One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/paytoneone/v12/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Peddana\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/peddana/v7/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Peralta\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/peralta/v7/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Permanent Marker\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/permanentmarker/v9/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Petit Formal Script\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/petitformalscript/v7/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Petrona\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/petrona/v8/mtG64_NXL7bZo9XXsXVStGsRwCU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Philosopher\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/philosopher/v11/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/philosopher/v11/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/philosopher/v11/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/philosopher/v11/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Piedra\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/piedra/v8/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Pinyon Script\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/pinyonscript/v9/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Pirata One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/pirataone/v8/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Plaster\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/plaster/v11/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Play\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/play/v11/6aez4K2oVqwIjtI8Hp8Tx3A.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/play/v11/6ae84K2oVqwItm4TOpc423nTJTM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Playball\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/playball/v9/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Playfair Display\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v15\",\n \"lastModified\": \"2019-10-15\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/playfairdisplay/v15/nuFiD-vYSZviVYUb_rj3ij__anPXPTvSgWE_-xU.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v15/nuFkD-vYSZviVYUb_rj3ij__anPXDTnYhUM66xV7PQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/playfairdisplay/v15/nuFlD-vYSZviVYUb_rj3ij__anPXBYf9pWkU5xxiJKY.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v15/nuFnD-vYSZviVYUb_rj3ij__anPXDTngOWwe4z5nNKaV_w.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/playfairdisplay/v15/nuFlD-vYSZviVYUb_rj3ij__anPXBb__pWkU5xxiJKY.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v15/nuFnD-vYSZviVYUb_rj3ij__anPXDTngAW4e4z5nNKaV_w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Playfair Display SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v9/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v9/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v9/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v9/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v9/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v9/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Podkova\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v15\",\n \"lastModified\": \"2019-10-24\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/podkova/v15/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/podkova/v15/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/podkova/v15/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/podkova/v15/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/podkova/v15/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Poiret One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/poiretone/v8/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Poller One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/pollerone/v9/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Poly\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/poly/v10/MQpb-W6wKNitRLCAq2Lpris.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/poly/v10/MQpV-W6wKNitdLKKr0DsviuGWA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Pompiere\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/pompiere/v9/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Pontano Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/pontanosans/v7/qFdD35GdgYR8EzR6oBLDHa3qwjUMg1siNQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Poor Story\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/poorstory/v8/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Poppins\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-10-15\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/poppins/v9/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/poppins/v9/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/poppins/v9/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/poppins/v9/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/poppins/v9/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/poppins/v9/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/poppins/v9/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/poppins/v9/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/poppins/v9/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/poppins/v9/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/poppins/v9/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Port Lligat Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/portlligatsans/v8/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Port Lligat Slab\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/portlligatslab/v8/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Pragati Narrow\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/pragatinarrow/v5/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/pragatinarrow/v5/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Prata\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/prata/v10/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Preahvihear\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/preahvihear/v11/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Press Start 2P\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/pressstart2p/v8/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Pridi\",\n \"category\": \"serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/pridi/v5/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/pridi/v5/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/pridi/v5/2sDQZG5JnZLfkfWao2krbl29.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/pridi/v5/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/pridi/v5/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/pridi/v5/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Princess Sofia\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/princesssofia/v8/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Prociono\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/prociono/v9/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Prompt\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/prompt/v4/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/prompt/v4/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/prompt/v4/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/prompt/v4/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Prosto One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/prostoone/v8/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Proza Libre\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/prozalibre/v4/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/prozalibre/v4/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/prozalibre/v4/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/prozalibre/v4/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/prozalibre/v4/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/prozalibre/v4/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/prozalibre/v4/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/prozalibre/v4/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/prozalibre/v4/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/prozalibre/v4/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Puritan\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/puritan/v11/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/puritan/v11/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/puritan/v11/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/puritan/v11/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Purple Purse\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/purplepurse/v8/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Quando\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/quando/v8/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Quantico\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/quantico/v9/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/quantico/v9/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/quantico/v9/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/quantico/v9/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Quattrocento\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/quattrocento/v11/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/quattrocento/v11/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Quattrocento Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/quattrocentosans/v12/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/quattrocentosans/v12/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/quattrocentosans/v12/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/quattrocentosans/v12/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Questrial\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/questrial/v9/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Quicksand\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v19\",\n \"lastModified\": \"2019-10-22\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/quicksand/v19/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/quicksand/v19/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/quicksand/v19/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/quicksand/v19/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/quicksand/v19/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Quintessential\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/quintessential/v7/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Qwigley\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/qwigley/v9/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Racing Sans One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/racingsansone/v7/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Radley\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/radley/v14/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/radley/v14/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rajdhani\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/rajdhani/v9/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/rajdhani/v9/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/rajdhani/v9/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/rajdhani/v9/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/rajdhani/v9/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rakkas\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rakkas/v7/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Raleway\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-07-23\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptsg8zYS_SKggPNwE4ISotrDfGGxA.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptqg8zYS_SKggPNyCgwLoFvL_SWxEMT.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwOIpaqFFAfif3Vo.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptpg8zYS_SKggPNyCgwgqBPBdqazVoK4A.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwIYqaqFFAfif3Vo.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptpg8zYS_SKggPNyCgw5qNPBdqazVoK4A.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptug8zYS_SKggPN-CoCTqluHfE.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptsg8zYS_SKggPNyCgISotrDfGGxA.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwN4raqFFAfif3Vo.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptpg8zYS_SKggPNyCgwvqJPBdqazVoK4A.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwPIsaqFFAfif3Vo.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptpg8zYS_SKggPNyCgwkqVPBdqazVoK4A.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwJYtaqFFAfif3Vo.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptpg8zYS_SKggPNyCgw9qRPBdqazVoK4A.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwIouaqFFAfif3Vo.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptpg8zYS_SKggPNyCgw6qdPBdqazVoK4A.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptrg8zYS_SKggPNwK4vaqFFAfif3Vo.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/raleway/v14/1Ptpg8zYS_SKggPNyCgwzqZPBdqazVoK4A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Raleway Dots\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ralewaydots/v7/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ramabhadra\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ramabhadra/v9/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ramaraja\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ramaraja/v4/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rambla\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rambla/v7/snfrs0ip98hx6mr0I7IONthkwQ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/rambla/v7/snfps0ip98hx6mrEIbgKFN10wYKa.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/rambla/v7/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/rambla/v7/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rammetto One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rammettoone/v8/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ranchers\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ranchers/v7/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rancho\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rancho/v10/46kulbzmXjLaqZRlbWXgd0RY1g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ranga\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ranga/v5/C8ct4cYisGb28p6CLDwZwmGE.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/ranga/v5/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rasa\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"gujarati\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/rasa/v5/xn7gYHIn1mWmdg52sgC7S9XdZN8.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/rasa/v5/xn7vYHIn1mWmTqJelgiQV9w.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/rasa/v5/xn7gYHIn1mWmdlZ3sgC7S9XdZN8.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/rasa/v5/xn7gYHIn1mWmdnpwsgC7S9XdZN8.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/rasa/v5/xn7gYHIn1mWmdh5xsgC7S9XdZN8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rationale\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rationale/v11/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ravi Prakash\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/raviprakash/v6/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Red Hat Display\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"700\",\n \"700italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/redhatdisplay/v3/8vIQ7wUr0m80wwYf0QCXZzYzUoTQ-jSgZYvdCQ.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v3/8vIS7wUr0m80wwYf0QCXZzYzUoTg-D6kR47NCV5Z.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/redhatdisplay/v3/8vIV7wUr0m80wwYf0QCXZzYzUoToDh2EbaDBAEdAbw.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v3/8vIX7wUr0m80wwYf0QCXZzYzUoTg-AZQbqrFIkJQb7zU.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/redhatdisplay/v3/8vIV7wUr0m80wwYf0QCXZzYzUoToRhuEbaDBAEdAbw.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v3/8vIX7wUr0m80wwYf0QCXZzYzUoTg-AYYaKrFIkJQb7zU.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/redhatdisplay/v3/8vIV7wUr0m80wwYf0QCXZzYzUoTofhmEbaDBAEdAbw.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v3/8vIX7wUr0m80wwYf0QCXZzYzUoTg-AYgaqrFIkJQb7zU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Red Hat Text\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v2\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/redhattext/v2/RrQXbohi_ic6B3yVSzGBrMxgb60sE8yZPA.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/redhattext/v2/RrQJbohi_ic6B3yVSzGBrMxQbacoMcmJPECN.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/redhattext/v2/RrQIbohi_ic6B3yVSzGBrMxYm4QIG-eFNVmULg.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/redhattext/v2/RrQKbohi_ic6B3yVSzGBrMxQbZ_cGO2BF1yELmgy.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/redhattext/v2/RrQIbohi_ic6B3yVSzGBrMxY04IIG-eFNVmULg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/redhattext/v2/RrQKbohi_ic6B3yVSzGBrMxQbZ-UHu2BF1yELmgy.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Redressed\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/redressed/v10/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Reem Kufi\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/reemkufi/v7/2sDcZGJLip7W2J7v7wQDb2-4C7wFZQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Reenie Beanie\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/reeniebeanie/v10/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Revalia\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/revalia/v7/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rhodium Libre\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rhodiumlibre/v4/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ribeye\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ribeye/v8/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ribeye Marrow\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ribeyemarrow/v9/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Righteous\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/righteous/v8/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Risque\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/risque/v7/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Roboto\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"700\",\n \"700italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v20\",\n \"lastModified\": \"2019-07-24\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/roboto/v20/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Roboto Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v18\",\n \"lastModified\": \"2019-07-23\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/robotocondensed/v18/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/robotocondensed/v18/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/robotocondensed/v18/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/robotocondensed/v18/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/robotocondensed/v18/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/robotocondensed/v18/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Roboto Mono\",\n \"category\": \"monospace\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/robotomono/v7/L0x7DF4xlVMF-BfR8bXMIjAoq3qcW7KCG1w.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/robotomono/v7/L0xlDF4xlVMF-BfR8bXMIjhOkx6WX5CHC1wnFw.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/robotomono/v7/L0xkDF4xlVMF-BfR8bXMIjDgiVq2db6LAkU-.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/robotomono/v7/L0xmDF4xlVMF-BfR8bXMIjhOk9a0f7qpB1U-Drg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/robotomono/v7/L0x5DF4xlVMF-BfR8bXMIghMoX6-XqKC.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/robotomono/v7/L0x7DF4xlVMF-BfR8bXMIjhOq3qcW7KCG1w.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/robotomono/v7/L0xkDF4xlVMF-BfR8bXMIjC4iFq2db6LAkU-.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/robotomono/v7/L0xmDF4xlVMF-BfR8bXMIjhOk461f7qpB1U-Drg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/robotomono/v7/L0xkDF4xlVMF-BfR8bXMIjDwjlq2db6LAkU-.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/robotomono/v7/L0xmDF4xlVMF-BfR8bXMIjhOk8azf7qpB1U-Drg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Roboto Slab\",\n \"category\": \"serif\",\n \"variants\": [\n \"100\",\n \"300\",\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/robotoslab/v9/BngOUXZYTXPIvIBgJJSb6u-u5qCr5RCDY_k.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/robotoslab/v9/BngRUXZYTXPIvIBgJJSb6u9mxICByxyKeuDp.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/robotoslab/v9/BngMUXZYTXPIvIBgJJSb6tfK7KSJ4ACD.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/robotoslab/v9/BngRUXZYTXPIvIBgJJSb6u92w4CByxyKeuDp.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rochester\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rochester/v10/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rock Salt\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rocksalt/v10/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rokkitt\",\n \"category\": \"serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-10-15\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/rokkitt/v14/qFdG35qfgYFjGy5hmCWCc_TOyh4Qig.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/rokkitt/v14/qFdB35qfgYFjGy5hmImjU97gxhcJk1s.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/rokkitt/v14/qFdB35qfgYFjGy5hmO2gU97gxhcJk1s.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/rokkitt/v14/qFdE35qfgYFjGy5hoEGId9bL2h4.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/rokkitt/v14/qFdB35qfgYFjGy5hmLWhU97gxhcJk1s.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/rokkitt/v14/qFdB35qfgYFjGy5hmJmmU97gxhcJk1s.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/rokkitt/v14/qFdB35qfgYFjGy5hmP2nU97gxhcJk1s.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/rokkitt/v14/qFdB35qfgYFjGy5hmOGkU97gxhcJk1s.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/rokkitt/v14/qFdB35qfgYFjGy5hmMWlU97gxhcJk1s.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Romanesco\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/romanesco/v8/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ropa Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ropasans/v9/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/ropasans/v9/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rosario\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"300italic\",\n \"italic\",\n \"500italic\",\n \"600italic\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v16\",\n \"lastModified\": \"2019-10-24\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/rosario/v16/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/rosario/v16/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/rosario/v16/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/rosario/v16/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/rosario/v16/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/rosario/v16/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/rosario/v16/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/rosario/v16/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/rosario/v16/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/rosario/v16/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rosarivo\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rosarivo/v7/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/rosarivo/v7/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rouge Script\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rougescript/v8/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rozha One\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rozhaone/v7/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rubik\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"700\",\n \"700italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"hebrew\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/rubik/v9/iJWHBXyIfDnIV7Fqj1ma-2HW7ZB_.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/rubik/v9/iJWBBXyIfDnIV7nEldWY8WX06IB_18o.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/rubik/v9/iJWKBXyIfDnIV4nGp32S0H3f.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/rubik/v9/iJWEBXyIfDnIV7nErXmw1W3f9Ik.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/rubik/v9/iJWHBXyIfDnIV7Eyjlma-2HW7ZB_.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/rubik/v9/iJWBBXyIfDnIV7nElY2Z8WX06IB_18o.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/rubik/v9/iJWHBXyIfDnIV7F6iFma-2HW7ZB_.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/rubik/v9/iJWBBXyIfDnIV7nElcWf8WX06IB_18o.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/rubik/v9/iJWHBXyIfDnIV7FCilma-2HW7ZB_.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/rubik/v9/iJWBBXyIfDnIV7nElf2d8WX06IB_18o.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rubik Mono One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rubikmonoone/v8/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ruda\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ruda/v11/k3kfo8YQJOpFmn8XadbJM0A.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/ruda/v11/k3kQo8YQJOpFosM4Td7iL0nAMaM.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/ruda/v11/k3kQo8YQJOpFovs6Td7iL0nAMaM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rufina\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rufina/v7/Yq6V-LyURyLy-aKyoxRktOdClg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/rufina/v7/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ruge Boogie\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rugeboogie/v10/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ruluko\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ruluko/v7/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rum Raisin\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rumraisin/v7/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ruslan Display\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ruslandisplay/v10/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Russo One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/russoone/v8/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ruthie\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ruthie/v10/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Rye\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/rye/v7/r05XGLJT86YDFpTsXOqx4w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sacramento\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sacramento/v7/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sahitya\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sahitya/v4/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sahitya/v4/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sail\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sail/v10/DPEjYwiBxwYJFBTDADYAbvw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Saira\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/saira/v4/mem-Ya2wxmKQyNFETZY_VrUfTck.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/saira/v4/mem9Ya2wxmKQyNHobLYVeLkWVNBt.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/saira/v4/mem9Ya2wxmKQyNGMb7YVeLkWVNBt.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/saira/v4/memwYa2wxmKQyOkgR5IdU6Uf.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/saira/v4/mem9Ya2wxmKQyNHUbrYVeLkWVNBt.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/saira/v4/mem9Ya2wxmKQyNH4abYVeLkWVNBt.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/saira/v4/mem9Ya2wxmKQyNGcaLYVeLkWVNBt.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/saira/v4/mem9Ya2wxmKQyNGAa7YVeLkWVNBt.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/saira/v4/mem9Ya2wxmKQyNGkarYVeLkWVNBt.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Saira Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/sairacondensed/v5/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/sairacondensed/v5/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/sairacondensed/v5/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/sairacondensed/v5/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/sairacondensed/v5/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/sairacondensed/v5/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sairacondensed/v5/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/sairacondensed/v5/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/sairacondensed/v5/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Saira Extra Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Saira Semi Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Saira Stencil One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sairastencilone/v1/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Salsa\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/salsa/v9/gNMKW3FiRpKj-imY8ncKEZez.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sanchez\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sanchez/v7/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/sanchez/v7/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sancreek\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sancreek/v10/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sansita\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sansita/v4/QldONTRRphEb_-V7HBm7TXFf3qw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/sansita/v4/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sansita/v4/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/sansita/v4/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/sansita/v4/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/sansita/v4/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/sansita/v4/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/sansita/v4/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sarabun\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/sarabun/v7/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sarala\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sarala/v4/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sarala/v4/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sarina\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sarina/v8/-F6wfjF3ITQwasLhLkDUriBQxw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sarpanch\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sarpanch/v5/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/sarpanch/v5/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/sarpanch/v5/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sarpanch/v5/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/sarpanch/v5/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/sarpanch/v5/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Satisfy\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/satisfy/v10/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sawarabi Gothic\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"japanese\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sawarabigothic/v8/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sawarabi Mincho\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"japanese\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sawarabimincho/v10/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Scada\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/scada/v8/RLpxK5Pv5qumeWJoxzUobkvv.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/scada/v8/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/scada/v8/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/scada/v8/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Scheherazade\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v17\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/scheherazade/v17/YA9Ur0yF4ETZN60keViq1kQgt5OohvbJ9A.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/scheherazade/v17/YA9Lr0yF4ETZN60keViq1kQYC7yMjt3V_dB0Yw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Schoolbell\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/schoolbell/v10/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Scope One\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/scopeone/v6/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Seaweed Script\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/seaweedscript/v7/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Secular One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"hebrew\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/secularone/v4/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sedgwick Ave\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sedgwickave/v5/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sedgwick Ave Display\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sedgwickavedisplay/v5/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sevillana\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sevillana/v8/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Seymour One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/seymourone/v7/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Shadows Into Light\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/shadowsintolight/v9/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Shadows Into Light Two\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/shadowsintolighttwo/v7/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Shanti\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/shanti/v11/t5thIREMM4uSDgzgU0ezpKfwzA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Share\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/share/v10/i7dEIFliZjKNF5VNHLq2cV5d.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/share/v10/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/share/v10/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/share/v10/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Share Tech\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sharetech/v9/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Share Tech Mono\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sharetechmono/v9/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Shojumaru\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/shojumaru/v7/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Short Stack\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/shortstack/v9/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Shrikhand\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"gujarati\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/shrikhand/v5/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Siemreap\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/siemreap/v12/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sigmar One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sigmarone/v10/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Signika\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/signika/v10/vEFU2_JTCgwQ5ejvE_oEI3BDa0AdytM.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/signika/v10/vEFR2_JTCgwQ5ejvK1YsB3hod0k.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/signika/v10/vEFU2_JTCgwQ5ejvE44CI3BDa0AdytM.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/signika/v10/vEFU2_JTCgwQ5ejvE-oDI3BDa0AdytM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Signika Negative\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/signikanegative/v10/E217_cfngu7HiRpPX3ZpNE4kY5zKal6DipHD6z_iXAs.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/signikanegative/v10/E218_cfngu7HiRpPX3ZpNE4kY5zKUvKrrpno9zY.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/signikanegative/v10/E217_cfngu7HiRpPX3ZpNE4kY5zKaiqFipHD6z_iXAs.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/signikanegative/v10/E217_cfngu7HiRpPX3ZpNE4kY5zKak6EipHD6z_iXAs.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Simonetta\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/simonetta/v10/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/simonetta/v10/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/simonetta/v10/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/simonetta/v10/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Single Day\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/singleday/v1/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sintony\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sintony/v7/XoHm2YDqR7-98cVUITQnu98ojjs.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sintony/v7/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sirin Stencil\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sirinstencil/v8/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Six Caps\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sixcaps/v10/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Skranji\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/skranji/v7/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/skranji/v7/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Slabo 13px\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/slabo13px/v7/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Slabo 27px\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/slabo27px/v6/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Slackey\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/slackey/v10/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Smokum\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/smokum/v10/TK3iWkUbAhopmrdGHjUHte5fKg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Smythe\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/smythe/v10/MwQ3bhT01--coT1BOLh_uGInjA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sniglet\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"800\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sniglet/v11/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/sniglet/v11/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Snippet\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/snippet/v9/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Snowburst One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/snowburstone/v7/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sofadi One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sofadione/v8/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sofia\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sofia/v8/8QIHdirahM3j_vu-sowsrqjk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Song Myung\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/songmyung/v8/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sonsie One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sonsieone/v8/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sorts Mill Goudy\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sortsmillgoudy/v9/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/sortsmillgoudy/v9/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Source Code Pro\",\n \"category\": \"monospace\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-08-22\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt8srztO0rzmmkDQ.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v11/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONMbtecv7Gy0DRzS.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7fM7PqtlsnztO0rzmmkDQ.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v11/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONN_tucv7Gy0DRzS.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/sourcecodepro/v11/HI_SiYsKILxRpg3hIP6sJ7fM7PqVOuHXvMY3xw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v11/HI_QiYsKILxRpg3hIP6sJ7fM7PqlOOvTnsMnx3C9.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7fM7PqtzsjztO0rzmmkDQ.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v11/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONMnt-cv7Gy0DRzS.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt4s_ztO0rzmmkDQ.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v11/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONMLsOcv7Gy0DRzS.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7fM7Pqths7ztO0rzmmkDQ.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v11/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONNvsecv7Gy0DRzS.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7fM7PqtvszztO0rzmmkDQ.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v11/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONNXs-cv7Gy0DRzS.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Source Sans Pro\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-23\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v13/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v13/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v13/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v13/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v13/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v13/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Source Serif Pro\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sourceserifpro/v7/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/sourceserifpro/v7/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sourceserifpro/v7/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Space Mono\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/spacemono/v5/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/spacemono/v5/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/spacemono/v5/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/spacemono/v5/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Special Elite\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/specialelite/v10/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Spectral\",\n \"category\": \"serif\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/spectral/v6/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/spectral/v6/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Spectral SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/spectralsc/v5/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/spectralsc/v5/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Spicy Rice\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/spicyrice/v8/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Spinnaker\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/spinnaker/v11/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Spirax\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/spirax/v8/buE3poKgYNLy0F3cXktt-Csn-Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Squada One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/squadaone/v8/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sree Krushnadevaraya\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sreekrushnadevaraya/v7/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sriracha\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sriracha/v4/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Srisakdi\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/srisakdi/v3/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/srisakdi/v3/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Staatliches\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/staatliches/v3/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Stalemate\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/stalemate/v7/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Stalinist One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v23\",\n \"lastModified\": \"2019-08-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/stalinistone/v23/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Stardos Stencil\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-26\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/stardosstencil/v10/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/stardosstencil/v10/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Stint Ultra Condensed\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/stintultracondensed/v8/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Stint Ultra Expanded\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/stintultraexpanded/v7/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Stoke\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/stoke/v9/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/stoke/v9/z7NadRb7aTMfKONpfihK1YTV.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Strait\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/strait/v7/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Stylish\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/stylish/v8/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sue Ellen Francisco\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sueellenfrancisco/v10/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Suez One\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"hebrew\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/suezone/v4/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sumana\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sumana/v4/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sumana/v4/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sunflower\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"500\",\n \"700\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/sunflower/v9/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/sunflower/v9/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sunflower/v9/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sunshiney\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sunshiney/v10/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Supermercado One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/supermercadoone/v9/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Sura\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/sura/v4/SZc23FL5PbyzFf5UWzXtjUM.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/sura/v4/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Suranna\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/suranna/v7/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Suravaram\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/suravaram/v6/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Suwannaphum\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/suwannaphum/v13/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Swanky and Moo Moo\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/swankyandmoomoo/v9/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Syncopate\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/syncopate/v11/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/syncopate/v11/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Tajawal\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/tajawal/v3/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Tangerine\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/tangerine/v11/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/tangerine/v11/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Taprom\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"khmer\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/taprom/v11/UcCn3F82JHycULbFQyk3-0kvHg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Tauri\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/tauri/v8/TwMA-IISS0AM3IpVWHU_TBqO.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Taviraj\",\n \"category\": \"serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/taviraj/v5/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/taviraj/v5/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/taviraj/v5/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/taviraj/v5/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/taviraj/v5/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/taviraj/v5/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/taviraj/v5/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/taviraj/v5/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/taviraj/v5/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/taviraj/v5/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/taviraj/v5/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/taviraj/v5/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/taviraj/v5/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/taviraj/v5/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/taviraj/v5/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/taviraj/v5/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/taviraj/v5/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/taviraj/v5/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Teko\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/teko/v9/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/teko/v9/LYjNdG7kmE0gTaR3pCtBtVs.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/teko/v9/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/teko/v9/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/teko/v9/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Telex\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/telex/v8/ieVw2Y1fKWmIO9fTB1piKFIf.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Tenali Ramakrishna\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/tenaliramakrishna/v6/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Tenor Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/tenorsans/v11/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Text Me One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/textmeone/v7/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Thasadith\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/thasadith/v3/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/thasadith/v3/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/thasadith/v3/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/thasadith/v3/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"The Girl Next Door\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/thegirlnextdoor/v10/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Tienne\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/tienne/v12/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/tienne/v12/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/tienne/v12/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Tillana\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/tillana/v5/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/tillana/v5/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/tillana/v5/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/tillana/v5/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/tillana/v5/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Timmana\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"telugu\",\n \"latin\"\n ],\n \"version\": \"v4\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/timmana/v4/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Tinos\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"hebrew\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/tinos/v13/buE4poGnedXvwgX8dGVh8TI-.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/tinos/v13/buE2poGnedXvwjX-fmFD9CI-4NU.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/tinos/v13/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/tinos/v13/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Titan One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/titanone/v7/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Titillium Web\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/titilliumweb/v8/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/titilliumweb/v8/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/titilliumweb/v8/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/titilliumweb/v8/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/titilliumweb/v8/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/titilliumweb/v8/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/titilliumweb/v8/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/titilliumweb/v8/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/titilliumweb/v8/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/titilliumweb/v8/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/titilliumweb/v8/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Trade Winds\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/tradewinds/v8/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Trirong\",\n \"category\": \"serif\",\n \"variants\": [\n \"100\",\n \"100italic\",\n \"200\",\n \"200italic\",\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"800\",\n \"800italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"thai\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/trirong/v5/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf\",\n \"100italic\": \"http://fonts.gstatic.com/s/trirong/v5/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/trirong/v5/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf\",\n \"200italic\": \"http://fonts.gstatic.com/s/trirong/v5/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/trirong/v5/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/trirong/v5/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/trirong/v5/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/trirong/v5/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/trirong/v5/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/trirong/v5/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/trirong/v5/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/trirong/v5/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/trirong/v5/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/trirong/v5/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/trirong/v5/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf\",\n \"800italic\": \"http://fonts.gstatic.com/s/trirong/v5/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/trirong/v5/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/trirong/v5/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Trocchi\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/trocchi/v8/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Trochut\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/trochut/v7/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/trochut/v7/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/trochut/v7/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Trykker\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/trykker/v8/KtktALyWZJXudUPzhNnoOd2j22U.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Tulpen One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/tulpenone/v9/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Turret Road\",\n \"category\": \"display\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"700\",\n \"800\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-09-17\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/turretroad/v1/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/turretroad/v1/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/turretroad/v1/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/turretroad/v1/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/turretroad/v1/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/turretroad/v1/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ubuntu\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/ubuntu/v14/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/ubuntu/v14/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/ubuntu/v14/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/ubuntu/v14/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/ubuntu/v14/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/ubuntu/v14/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/ubuntu/v14/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/ubuntu/v14/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ubuntu Condensed\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ubuntucondensed/v10/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ubuntu Mono\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"greek-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ubuntumono/v9/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/ubuntumono/v9/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/ubuntumono/v9/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/ubuntumono/v9/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Ultra\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/ultra/v12/zOLy4prXmrtY-tT6yLOD6NxF.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Uncial Antiqua\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/uncialantiqua/v7/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Underdog\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/underdog/v8/CHygV-jCElj7diMroVSiU14GN2Il.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Unica One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/unicaone/v7/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"UnifrakturCook\",\n \"category\": \"display\",\n \"variants\": [\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"700\": \"http://fonts.gstatic.com/s/unifrakturcook/v11/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"UnifrakturMaguntia\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/unifrakturmaguntia/v10/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Unkempt\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/unkempt/v11/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/unkempt/v11/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Unlock\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/unlock/v9/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Unna\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v13\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/unna/v13/AYCEpXzofN0NCpgBlGHCWFM.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/unna/v13/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/unna/v13/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/unna/v13/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"VT323\",\n \"category\": \"monospace\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/vt323/v11/pxiKyp0ihIEF2hsYHpT2dkNE.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Vampiro One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/vampiroone/v10/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Varela\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/varela/v10/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Varela Round\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"hebrew\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/varelaround/v12/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Vast Shadow\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/vastshadow/v9/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Vesper Libre\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"500\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/vesperlibre/v11/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/vesperlibre/v11/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/vesperlibre/v11/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/vesperlibre/v11/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Vibes\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"arabic\",\n \"latin\"\n ],\n \"version\": \"v1\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/vibes/v1/QdVYSTsmIB6tmbd3HpbsuBlh.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Vibur\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/vibur/v10/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Vidaloka\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v12\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/vidaloka/v12/7cHrv4c3ipenMKlEass8yn4hnCci.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Viga\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/viga/v8/xMQbuFFdSaiX_QIjD4e2OX8.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Voces\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/voces/v9/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Volkhov\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/volkhov/v11/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/volkhov/v11/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/volkhov/v11/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/volkhov/v11/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Vollkorn\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\",\n \"900\",\n \"900italic\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"greek\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/vollkorn/v10/0yb9GDoxxrvAnPhYGykuYkw2rQg1.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/vollkorn/v10/0yb7GDoxxrvAnPhYGxksaEgUqBg15TY.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/vollkorn/v10/0yb6GDoxxrvAnPhYGxH2TGg-hhQ8_C_3.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/vollkorn/v10/0yb4GDoxxrvAnPhYGxksUJA6jBAe-T_34DM.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/vollkorn/v10/0yb6GDoxxrvAnPhYGxGSTWg-hhQ8_C_3.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/vollkorn/v10/0yb4GDoxxrvAnPhYGxksUPQ7jBAe-T_34DM.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/vollkorn/v10/0yb6GDoxxrvAnPhYGxGqT2g-hhQ8_C_3.ttf\",\n \"900italic\": \"http://fonts.gstatic.com/s/vollkorn/v10/0yb4GDoxxrvAnPhYGxksUMw5jBAe-T_34DM.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Vollkorn SC\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\",\n \"600\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v3\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/vollkornsc/v3/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/vollkornsc/v3/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/vollkornsc/v3/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/vollkornsc/v3/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Voltaire\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/voltaire/v9/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Waiting for the Sunrise\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/waitingforthesunrise/v10/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Wallpoet\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/wallpoet/v11/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Walter Turncoat\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/walterturncoat/v10/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Warnes\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/warnes/v9/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Wellfleet\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/wellfleet/v7/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Wendy One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/wendyone/v8/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Wire One\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/wireone/v10/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Work Sans\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"200\",\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\",\n \"800\",\n \"900\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-22\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/worksans/v5/QGYqz_wNahGAdqQ43Rh3H6DstfxA4OD3.ttf\",\n \"200\": \"http://fonts.gstatic.com/s/worksans/v5/QGYpz_wNahGAdqQ43Rh3s4HMn9JM6fnuKg.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/worksans/v5/QGYpz_wNahGAdqQ43Rh314LMn9JM6fnuKg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/worksans/v5/QGYsz_wNahGAdqQ43RhPe6rol_lQ4A.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/worksans/v5/QGYpz_wNahGAdqQ43Rh3j4PMn9JM6fnuKg.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/worksans/v5/QGYpz_wNahGAdqQ43Rh3o4TMn9JM6fnuKg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/worksans/v5/QGYpz_wNahGAdqQ43Rh3x4XMn9JM6fnuKg.ttf\",\n \"800\": \"http://fonts.gstatic.com/s/worksans/v5/QGYpz_wNahGAdqQ43Rh324bMn9JM6fnuKg.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/worksans/v5/QGYpz_wNahGAdqQ43Rh3_4fMn9JM6fnuKg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Yanone Kaffeesatz\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"200\",\n \"300\",\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v11\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"200\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v11/3y9-6aknfjLm_3lMKjiMgmUUYBs04YfUPs-tNtKENeNp.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v11/3y9-6aknfjLm_3lMKjiMgmUUYBs04YewPc-tNtKENeNp.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v11/3y976aknfjLm_3lMKjiMgmUUYBs04b8cFeulHc6N.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v11/3y9-6aknfjLm_3lMKjiMgmUUYBs04YegOs-tNtKENeNp.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Yantramanav\",\n \"category\": \"sans-serif\",\n \"variants\": [\n \"100\",\n \"300\",\n \"regular\",\n \"500\",\n \"700\",\n \"900\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"100\": \"http://fonts.gstatic.com/s/yantramanav/v5/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf\",\n \"300\": \"http://fonts.gstatic.com/s/yantramanav/v5/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/yantramanav/v5/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/yantramanav/v5/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/yantramanav/v5/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf\",\n \"900\": \"http://fonts.gstatic.com/s/yantramanav/v5/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Yatra One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"devanagari\",\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v6\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/yatraone/v6/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Yellowtail\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v10\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/yellowtail/v10/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Yeon Sung\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"korean\",\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/yeonsung/v8/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Yeseva One\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"cyrillic-ext\",\n \"latin-ext\",\n \"cyrillic\",\n \"latin\",\n \"vietnamese\"\n ],\n \"version\": \"v14\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/yesevaone/v14/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Yesteryear\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v8\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/yesteryear/v8/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Yrsa\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"regular\",\n \"500\",\n \"600\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/yrsa/v5/wlpxgwnQFlxs3af93IQ73W5OcCk.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/yrsa/v5/wlp-gwnQFlxs5QvV-IwQwWc.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/yrsa/v5/wlpxgwnQFlxs3f_83IQ73W5OcCk.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/yrsa/v5/wlpxgwnQFlxs3dP73IQ73W5OcCk.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/yrsa/v5/wlpxgwnQFlxs3bf63IQ73W5OcCk.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"ZCOOL KuaiLe\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"chinese-simplified\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/zcoolkuaile/v5/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"ZCOOL QingKe HuangYou\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"chinese-simplified\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/zcoolqingkehuangyou/v5/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"ZCOOL XiaoWei\",\n \"category\": \"serif\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"chinese-simplified\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/zcoolxiaowei/v5/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Zeyada\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"latin\"\n ],\n \"version\": \"v9\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/zeyada/v9/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Zhi Mang Xing\",\n \"category\": \"handwriting\",\n \"variants\": [\n \"regular\"\n ],\n \"subsets\": [\n \"chinese-simplified\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-11-05\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/zhimangxing/v5/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Zilla Slab\",\n \"category\": \"serif\",\n \"variants\": [\n \"300\",\n \"300italic\",\n \"regular\",\n \"italic\",\n \"500\",\n \"500italic\",\n \"600\",\n \"600italic\",\n \"700\",\n \"700italic\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v5\",\n \"lastModified\": \"2019-07-17\",\n \"files\": {\n \"300\": \"http://fonts.gstatic.com/s/zillaslab/v5/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf\",\n \"300italic\": \"http://fonts.gstatic.com/s/zillaslab/v5/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf\",\n \"regular\": \"http://fonts.gstatic.com/s/zillaslab/v5/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf\",\n \"italic\": \"http://fonts.gstatic.com/s/zillaslab/v5/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf\",\n \"500\": \"http://fonts.gstatic.com/s/zillaslab/v5/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf\",\n \"500italic\": \"http://fonts.gstatic.com/s/zillaslab/v5/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf\",\n \"600\": \"http://fonts.gstatic.com/s/zillaslab/v5/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf\",\n \"600italic\": \"http://fonts.gstatic.com/s/zillaslab/v5/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/zillaslab/v5/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf\",\n \"700italic\": \"http://fonts.gstatic.com/s/zillaslab/v5/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf\"\n }\n },\n {\n \"kind\": \"webfonts#webfont\",\n \"family\": \"Zilla Slab Highlight\",\n \"category\": \"display\",\n \"variants\": [\n \"regular\",\n \"700\"\n ],\n \"subsets\": [\n \"latin-ext\",\n \"latin\"\n ],\n \"version\": \"v7\",\n \"lastModified\": \"2019-07-16\",\n \"files\": {\n \"regular\": \"http://fonts.gstatic.com/s/zillaslabhighlight/v7/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf\",\n \"700\": \"http://fonts.gstatic.com/s/zillaslabhighlight/v7/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf\"\n }\n }\n ]\n}\n\";}","no");
INSERT INTO `wp_options` VALUES("231","mtphr_post_duplicator_settings","","yes");
INSERT INTO `wp_options` VALUES("234","aDBc_settings","a:3:{s:9:\"left_menu\";s:1:\"1\";s:12:\"top_main_msg\";s:1:\"1\";s:22:\"tables_cleanup_warning\";s:1:\"1\";}","yes");
INSERT INTO `wp_options` VALUES("240","woocommerce_default_country","US:NY","yes");
INSERT INTO `wp_options` VALUES("241","woocommerce_allowed_countries","all","yes");
INSERT INTO `wp_options` VALUES("242","woocommerce_all_except_countries","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("243","woocommerce_specific_allowed_countries","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("244","woocommerce_ship_to_countries","","yes");
INSERT INTO `wp_options` VALUES("245","woocommerce_specific_ship_to_countries","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("246","woocommerce_default_customer_address","geolocation","yes");
INSERT INTO `wp_options` VALUES("247","woocommerce_calc_taxes","no","yes");
INSERT INTO `wp_options` VALUES("248","woocommerce_demo_store","no","yes");
INSERT INTO `wp_options` VALUES("249","woocommerce_demo_store_notice","This is a demo store for testing purposes — no orders shall be fulfilled.","no");
INSERT INTO `wp_options` VALUES("250","woocommerce_currency","USD","yes");
INSERT INTO `wp_options` VALUES("251","woocommerce_currency_pos","left","yes");
INSERT INTO `wp_options` VALUES("252","woocommerce_price_thousand_sep",",","yes");
INSERT INTO `wp_options` VALUES("253","woocommerce_price_decimal_sep",".","yes");
INSERT INTO `wp_options` VALUES("254","woocommerce_price_num_decimals","2","yes");
INSERT INTO `wp_options` VALUES("255","woocommerce_weight_unit","lbs","yes");
INSERT INTO `wp_options` VALUES("256","woocommerce_dimension_unit","in","yes");
INSERT INTO `wp_options` VALUES("257","woocommerce_enable_review_rating","yes","yes");
INSERT INTO `wp_options` VALUES("258","woocommerce_review_rating_required","yes","no");
INSERT INTO `wp_options` VALUES("259","woocommerce_review_rating_verification_label","yes","no");
INSERT INTO `wp_options` VALUES("260","woocommerce_review_rating_verification_required","no","no");
INSERT INTO `wp_options` VALUES("261","woocommerce_shop_page_id","5504","yes");
INSERT INTO `wp_options` VALUES("262","woocommerce_shop_page_display","","yes");
INSERT INTO `wp_options` VALUES("263","woocommerce_category_archive_display","","yes");
INSERT INTO `wp_options` VALUES("264","woocommerce_default_catalog_orderby","price-desc","yes");
INSERT INTO `wp_options` VALUES("265","woocommerce_cart_redirect_after_add","no","yes");
INSERT INTO `wp_options` VALUES("266","woocommerce_enable_ajax_add_to_cart","yes","yes");
INSERT INTO `wp_options` VALUES("267","shop_catalog_image_size","a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"325\";s:4:\"crop\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("268","shop_single_image_size","a:3:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"485\";s:4:\"crop\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("269","shop_thumbnail_image_size","a:3:{s:5:\"width\";s:3:\"180\";s:6:\"height\";s:3:\"180\";s:4:\"crop\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("270","woocommerce_manage_stock","yes","yes");
INSERT INTO `wp_options` VALUES("271","woocommerce_hold_stock_minutes","60","no");
INSERT INTO `wp_options` VALUES("272","woocommerce_notify_low_stock","yes","no");
INSERT INTO `wp_options` VALUES("273","woocommerce_notify_no_stock","yes","no");
INSERT INTO `wp_options` VALUES("274","woocommerce_stock_email_recipient","example@example.com","no");
INSERT INTO `wp_options` VALUES("275","woocommerce_notify_low_stock_amount","2","no");
INSERT INTO `wp_options` VALUES("276","woocommerce_notify_no_stock_amount","0","yes");
INSERT INTO `wp_options` VALUES("277","woocommerce_hide_out_of_stock_items","no","yes");
INSERT INTO `wp_options` VALUES("278","woocommerce_stock_format","","yes");
INSERT INTO `wp_options` VALUES("279","woocommerce_file_download_method","force","no");
INSERT INTO `wp_options` VALUES("280","woocommerce_downloads_require_login","no","no");
INSERT INTO `wp_options` VALUES("281","woocommerce_downloads_grant_access_after_payment","yes","no");
INSERT INTO `wp_options` VALUES("282","woocommerce_prices_include_tax","no","yes");
INSERT INTO `wp_options` VALUES("283","woocommerce_tax_based_on","shipping","yes");
INSERT INTO `wp_options` VALUES("284","woocommerce_shipping_tax_class","inherit","yes");
INSERT INTO `wp_options` VALUES("285","woocommerce_tax_round_at_subtotal","no","yes");
INSERT INTO `wp_options` VALUES("286","woocommerce_tax_classes","Reduced rate\r\nZero rate","yes");
INSERT INTO `wp_options` VALUES("287","woocommerce_tax_display_shop","excl","yes");
INSERT INTO `wp_options` VALUES("288","woocommerce_tax_display_cart","excl","no");
INSERT INTO `wp_options` VALUES("289","woocommerce_price_display_suffix","","yes");
INSERT INTO `wp_options` VALUES("290","woocommerce_tax_total_display","itemized","no");
INSERT INTO `wp_options` VALUES("291","woocommerce_enable_shipping_calc","yes","no");
INSERT INTO `wp_options` VALUES("292","woocommerce_shipping_cost_requires_address","no","no");
INSERT INTO `wp_options` VALUES("293","woocommerce_ship_to_destination","billing","no");
INSERT INTO `wp_options` VALUES("294","woocommerce_shipping_debug_mode","no","no");
INSERT INTO `wp_options` VALUES("295","woocommerce_enable_coupons","yes","yes");
INSERT INTO `wp_options` VALUES("296","woocommerce_calc_discounts_sequentially","no","no");
INSERT INTO `wp_options` VALUES("297","woocommerce_enable_guest_checkout","yes","no");
INSERT INTO `wp_options` VALUES("298","woocommerce_force_ssl_checkout","no","yes");
INSERT INTO `wp_options` VALUES("299","woocommerce_unforce_ssl_checkout","no","yes");
INSERT INTO `wp_options` VALUES("300","woocommerce_cart_page_id","5500","yes");
INSERT INTO `wp_options` VALUES("301","woocommerce_checkout_page_id","5502","yes");
INSERT INTO `wp_options` VALUES("302","woocommerce_terms_page_id","","no");
INSERT INTO `wp_options` VALUES("303","woocommerce_checkout_pay_endpoint","order-pay","yes");
INSERT INTO `wp_options` VALUES("304","woocommerce_checkout_order_received_endpoint","order-received","yes");
INSERT INTO `wp_options` VALUES("305","woocommerce_myaccount_add_payment_method_endpoint","add-payment-method","yes");
INSERT INTO `wp_options` VALUES("306","woocommerce_myaccount_delete_payment_method_endpoint","delete-payment-method","yes");
INSERT INTO `wp_options` VALUES("307","woocommerce_myaccount_set_default_payment_method_endpoint","set-default-payment-method","yes");
INSERT INTO `wp_options` VALUES("308","woocommerce_myaccount_page_id","263","yes");
INSERT INTO `wp_options` VALUES("309","woocommerce_enable_signup_and_login_from_checkout","yes","no");
INSERT INTO `wp_options` VALUES("310","woocommerce_enable_myaccount_registration","no","no");
INSERT INTO `wp_options` VALUES("311","woocommerce_enable_checkout_login_reminder","yes","no");
INSERT INTO `wp_options` VALUES("312","woocommerce_registration_generate_username","yes","no");
INSERT INTO `wp_options` VALUES("313","woocommerce_registration_generate_password","no","no");
INSERT INTO `wp_options` VALUES("314","woocommerce_myaccount_orders_endpoint","orders","yes");
INSERT INTO `wp_options` VALUES("315","woocommerce_myaccount_view_order_endpoint","view-order","yes");
INSERT INTO `wp_options` VALUES("316","woocommerce_myaccount_downloads_endpoint","downloads","yes");
INSERT INTO `wp_options` VALUES("317","woocommerce_myaccount_edit_account_endpoint","edit-account","yes");
INSERT INTO `wp_options` VALUES("318","woocommerce_myaccount_edit_address_endpoint","edit-address","yes");
INSERT INTO `wp_options` VALUES("319","woocommerce_myaccount_payment_methods_endpoint","payment-methods","yes");
INSERT INTO `wp_options` VALUES("320","woocommerce_myaccount_lost_password_endpoint","lost-password","yes");
INSERT INTO `wp_options` VALUES("321","woocommerce_logout_endpoint","customer-logout","yes");
INSERT INTO `wp_options` VALUES("322","woocommerce_email_from_name","Equestria","no");
INSERT INTO `wp_options` VALUES("323","woocommerce_email_from_address","example@example.com","no");
INSERT INTO `wp_options` VALUES("324","woocommerce_email_header_image","","no");
INSERT INTO `wp_options` VALUES("325","woocommerce_email_footer_text","Equestria","no");
INSERT INTO `wp_options` VALUES("326","woocommerce_email_base_color","#96588a","no");
INSERT INTO `wp_options` VALUES("327","woocommerce_email_background_color","#f7f7f7","no");
INSERT INTO `wp_options` VALUES("328","woocommerce_email_body_background_color","#ffffff","no");
INSERT INTO `wp_options` VALUES("329","woocommerce_email_text_color","#3c3c3c","no");
INSERT INTO `wp_options` VALUES("330","woocommerce_api_enabled","yes","yes");
INSERT INTO `wp_options` VALUES("336","woocommerce_admin_notices","a:2:{i:0;s:6:\"update\";i:1;s:20:\"no_secure_connection\";}","yes");
INSERT INTO `wp_options` VALUES("341","widget_woocommerce_widget_cart","a:2:{i:2;a:3:{s:5:\"title\";s:13:\"Shopping Cart\";s:13:\"hide_if_empty\";i:0;s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("342","widget_woocommerce_layered_nav_filters","a:2:{i:2;a:2:{s:5:\"title\";s:14:\"Active filters\";s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("343","widget_woocommerce_layered_nav","a:3:{i:2;a:5:{s:5:\"title\";s:7:\"Filters\";s:9:\"attribute\";s:5:\"color\";s:12:\"display_type\";s:4:\"list\";s:10:\"query_type\";s:3:\"and\";s:7:\"classes\";s:0:\"\";}i:3;a:5:{s:5:\"title\";s:14:\"Filter by size\";s:9:\"attribute\";s:4:\"size\";s:12:\"display_type\";s:8:\"dropdown\";s:10:\"query_type\";s:3:\"and\";s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("344","widget_woocommerce_price_filter","a:2:{i:2;a:2:{s:5:\"title\";s:12:\"Price Filter\";s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("345","widget_woocommerce_product_categories","a:2:{i:2;a:9:{s:5:\"title\";s:11:\"Сategories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:1;s:9:\"max_depth\";s:0:\"\";s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("346","widget_woocommerce_product_search","a:2:{i:2;a:2:{s:5:\"title\";s:6:\"Search\";s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("347","widget_woocommerce_product_tag_cloud","a:2:{i:2;a:2:{s:5:\"title\";s:4:\"Tags\";s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("348","widget_woocommerce_products","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("349","widget_woocommerce_rating_filter","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("350","widget_woocommerce_recent_reviews","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("351","widget_woocommerce_recently_viewed_products","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("352","widget_woocommerce_top_rated_products","a:2:{i:2;a:3:{s:5:\"title\";s:12:\"Top Products\";s:6:\"number\";i:3;s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("355","woocommerce_meta_box_errors","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("361","widget_booked_calendar","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("363","booked_version_check","2.2.2","yes");
INSERT INTO `wp_options` VALUES("366","external_updates-booked","O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1572183982;s:14:\"checkedVersion\";s:5:\"2.2.2\";s:6:\"update\";O:8:\"stdClass\":7:{s:2:\"id\";i:0;s:4:\"slug\";s:6:\"booked\";s:7:\"version\";s:5:\"2.2.5\";s:8:\"homepage\";s:20:\"https://getbooked.io\";s:12:\"download_url\";s:55:\"http://boxyupdates.com/get/?action=download&slug=booked\";s:14:\"upgrade_notice\";N;s:8:\"filename\";s:17:\"booked/booked.php\";}}","no");
INSERT INTO `wp_options` VALUES("434","fw_ext_settings_options:breadcrumbs","a:3:{s:14:\"homepage-title\";s:4:\"Home\";s:14:\"blogpage-title\";s:4:\"Blog\";s:9:\"404-title\";s:13:\"404 Not Found\";}","no");
INSERT INTO `wp_options` VALUES("442","widget_monster","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("532","woocommerce_permalinks","a:5:{s:12:\"product_base\";s:8:\"/product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}","yes");
INSERT INTO `wp_options` VALUES("680","fw:ext:cf:fd:a8b69beaaf546e3d5ff1e1e3ef1da598","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a8b69beaaf546e3d5ff1e1e3ef1da598\";s:4:\"form\";a:1:{s:4:\"json\";s:905:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Single Line Text\",\"required\":true,\"placeholder\":\"\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Single Line Text\",\"required\":true,\"placeholder\":\"\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Paragraph Text\",\"required\":true,\"placeholder\":\"\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("682","fw:ext:cf:fd:8cd15195cfd9741851034a3651935b94","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8cd15195cfd9741851034a3651935b94\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("683","fw:ext:cf:fd:0941b4ff8a0206666b1bfa27dc43aab5","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0941b4ff8a0206666b1bfa27dc43aab5\";s:4:\"form\";a:1:{s:4:\"json\";s:905:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Single Line Text\",\"required\":true,\"placeholder\":\"\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Single Line Text\",\"required\":true,\"placeholder\":\"\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Paragraph Text\",\"required\":true,\"placeholder\":\"\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("685","fw:ext:cf:fd:39281733034be200151b7afa59779514","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"39281733034be200151b7afa59779514\";s:4:\"form\";a:1:{s:4:\"json\";s:905:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Single Line Text\",\"required\":true,\"placeholder\":\"\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Single Line Text\",\"required\":true,\"placeholder\":\"\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Paragraph Text\",\"required\":true,\"placeholder\":\"\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("720","widget_media_audio","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("721","widget_media_image","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("722","widget_media_video","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("726","fw:ext:cf:fd:cf59724d16acb2af5bbf809e0b9358e0","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cf59724d16acb2af5bbf809e0b9358e0\";s:4:\"form\";a:1:{s:4:\"json\";s:1239:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\"},\"shortcode\":\"date_time_2cb8244\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\"},\"shortcode\":\"date_time_189e2a2\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("728","fw:ext:cf:fd:266c721ba7b6fe29305bd48fec0bc9b1","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"266c721ba7b6fe29305bd48fec0bc9b1\";s:4:\"form\";a:1:{s:4:\"json\";s:1239:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\"},\"shortcode\":\"date_time_2cb8244\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\"},\"shortcode\":\"date_time_189e2a2\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("730","fw:ext:cf:fd:c8a998371c3b828fd091d69585ab96d1","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c8a998371c3b828fd091d69585ab96d1\";s:4:\"form\";a:1:{s:4:\"json\";s:1239:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\"},\"shortcode\":\"date_time_2cb8244\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\"},\"shortcode\":\"date_time_189e2a2\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("731","fw:ext:cf:fd:141c23c6b552c65fe661e8db68d94fa0","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"141c23c6b552c65fe661e8db68d94fa0\";s:4:\"form\";a:1:{s:4:\"json\";s:1259:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\"},\"shortcode\":\"date_time_2cb8244\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\"},\"shortcode\":\"date_time_189e2a2\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("735","fw:ext:cf:fd:1f47d918f6c7da727dac2515dd2fa500","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1f47d918f6c7da727dac2515dd2fa500\";s:4:\"form\";a:1:{s:4:\"json\";s:1269:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\"},\"shortcode\":\"date_time_2cb8244\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\"},\"shortcode\":\"date_time_189e2a2\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("737","fw:ext:cf:fd:20873d7799ce5b969d79668abfa994dd","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"20873d7799ce5b969d79668abfa994dd\";s:4:\"form\";a:1:{s:4:\"json\";s:1279:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("763","fw:ext:cf:fd:0040b0690c609e03b02b1269448f763f","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0040b0690c609e03b02b1269448f763f\";s:4:\"form\";a:1:{s:4:\"json\";s:1352:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("765","fw:ext:cf:fd:8c138b516bd5ba13979129de628dbe65","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8c138b516bd5ba13979129de628dbe65\";s:4:\"form\";a:1:{s:4:\"json\";s:1352:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("768","fw:ext:cf:fd:207553940150ef9a60e1fc30af3a2737","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"207553940150ef9a60e1fc30af3a2737\";s:4:\"form\";a:1:{s:4:\"json\";s:1352:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("770","fw:ext:cf:fd:49c1b5c41981d68f785e78e2ad8fa9f5","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"49c1b5c41981d68f785e78e2ad8fa9f5\";s:4:\"form\";a:1:{s:4:\"json\";s:1352:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("772","fw:ext:cf:fd:441d478ce07c8e832abf1f53ea4839de","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"441d478ce07c8e832abf1f53ea4839de\";s:4:\"form\";a:1:{s:4:\"json\";s:1352:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("774","fw:ext:cf:fd:b6db23518af8e91b3f2038bd80d2b338","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b6db23518af8e91b3f2038bd80d2b338\";s:4:\"form\";a:1:{s:4:\"json\";s:1352:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("776","fw:ext:cf:fd:65a4282710868d2f189152cfbdafae3b","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"65a4282710868d2f189152cfbdafae3b\";s:4:\"form\";a:1:{s:4:\"json\";s:1352:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("778","fw:ext:cf:fd:ca9d1c28aaf799c720079f3168f9a58a","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ca9d1c28aaf799c720079f3168f9a58a\";s:4:\"form\";a:1:{s:4:\"json\";s:1352:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("780","fw:ext:cf:fd:004efb5e353b857788b585ec783cb306","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"004efb5e353b857788b585ec783cb306\";s:4:\"form\";a:1:{s:4:\"json\";s:1352:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("782","fw:ext:cf:fd:a4022a673c4b28d486deaf03f1b110a2","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a4022a673c4b28d486deaf03f1b110a2\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("784","fw:ext:cf:fd:3573e5719e415cf3d76b204952d5550c","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3573e5719e415cf3d76b204952d5550c\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("822","fw:ext:cf:fd:6c157c3ae66fc6d910eb878a9856f719","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6c157c3ae66fc6d910eb878a9856f719\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("824","fw:ext:cf:fd:8424049585d83daf7254faf7398e8591","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8424049585d83daf7254faf7398e8591\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("827","fw:ext:cf:fd:f6df8777bc12bdd4186d016299a0d7b6","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f6df8777bc12bdd4186d016299a0d7b6\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("828","fw:ext:cf:fd:890be5643dbd7c4f0848dea3b011a9e1","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"890be5643dbd7c4f0848dea3b011a9e1\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("839","fw_ext_settings_options:page-builder","a:1:{s:10:\"post_types\";a:4:{s:4:\"post\";b:1;s:4:\"page\";b:1;s:12:\"fw-portfolio\";b:1;s:11:\"fw-services\";b:1;}}","no");
INSERT INTO `wp_options` VALUES("841","nav_menu_options","a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}","yes");
INSERT INTO `wp_options` VALUES("905","fw:ext:cf:fd:89402b280e41057d7367c9b025d95158","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"89402b280e41057d7367c9b025d95158\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("907","fw:ext:cf:fd:4db849248a5d82af6a0ad15893ff224b","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4db849248a5d82af6a0ad15893ff224b\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("908","fw:ext:cf:fd:144e2007560a1be742780e247110813f","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"144e2007560a1be742780e247110813f\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("910","fw:ext:cf:fd:0053cce7a87b237093ffe952fb886ea8","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0053cce7a87b237093ffe952fb886ea8\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("912","fw:ext:cf:fd:7148c30dbb61ad3865e6ae3def33f1a2","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7148c30dbb61ad3865e6ae3def33f1a2\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("913","fw:ext:cf:fd:2d2a1409732c0e5bcb7e9ff2dba1e5cf","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2d2a1409732c0e5bcb7e9ff2dba1e5cf\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("915","fw:ext:cf:fd:9e2ce558c03ef1485938c305ed9cfb23","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9e2ce558c03ef1485938c305ed9cfb23\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("917","fw:ext:cf:fd:d5f6021c681a2d0b89529ed1819ea2a5","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d5f6021c681a2d0b89529ed1819ea2a5\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("919","fw:ext:cf:fd:da6b3bd957c84825b57969eda99d62d9","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"da6b3bd957c84825b57969eda99d62d9\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("921","fw:ext:cf:fd:4c9906e3fbf8bd8df3269d82d292f944","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4c9906e3fbf8bd8df3269d82d292f944\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("923","fw:ext:cf:fd:d9635046097d6839b9ccf3c7756556cb","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d9635046097d6839b9ccf3c7756556cb\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("925","fw:ext:cf:fd:468616026a07863988ddb123f56e9d5c","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"468616026a07863988ddb123f56e9d5c\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("927","fw:ext:cf:fd:e49a9ef909ec8ce73a898dab3f92cf8b","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e49a9ef909ec8ce73a898dab3f92cf8b\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("930","fw:ext:cf:fd:01bb6b15d5a114fbd596a9c5d83d971e","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"01bb6b15d5a114fbd596a9c5d83d971e\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("932","fw:ext:cf:fd:7b29ae4185b315410e80b2f0dce090a1","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7b29ae4185b315410e80b2f0dce090a1\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("934","fw:ext:cf:fd:fa13285ff7c0f7ca0326ce9ede312c32","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fa13285ff7c0f7ca0326ce9ede312c32\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("936","fw:ext:cf:fd:24d9eb326102aee07cceaab33f1b84fe","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"24d9eb326102aee07cceaab33f1b84fe\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("938","fw:ext:cf:fd:d45a9a71df8ca6b8dd0ba72427114db5","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d45a9a71df8ca6b8dd0ba72427114db5\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("940","fw:ext:cf:fd:2cd36dbb094e84324c4bd81aff8db610","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2cd36dbb094e84324c4bd81aff8db610\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("942","fw:ext:cf:fd:7feb74475d3bfbf16b75eb463183f34d","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7feb74475d3bfbf16b75eb463183f34d\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("944","fw:ext:cf:fd:1c423a1eb7ce8d3159d743ad7500b09c","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1c423a1eb7ce8d3159d743ad7500b09c\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("946","fw:ext:cf:fd:15a31ec634172d5e55ac4a5a9896fd3e","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"15a31ec634172d5e55ac4a5a9896fd3e\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("947","fw:ext:cf:fd:c59e2d40e97a97e6a598303ad7d5d217","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c59e2d40e97a97e6a598303ad7d5d217\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("949","fw:ext:cf:fd:a18862a2df37e07a5e2f60f6584e36ea","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a18862a2df37e07a5e2f60f6584e36ea\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("951","fw:ext:cf:fd:55a241ae309734245c1cd76a76528046","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"55a241ae309734245c1cd76a76528046\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("956","fw:ext:cf:fd:68b9488633c31019d8cbfae19b0d9555","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"68b9488633c31019d8cbfae19b0d9555\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("957","fw:ext:cf:fd:d54ac6a6116bc44c411037a61ad26984","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d54ac6a6116bc44c411037a61ad26984\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("959","fw:ext:cf:fd:0d8634a651e300d527e6da51044fb1ea","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0d8634a651e300d527e6da51044fb1ea\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("962","fw:ext:cf:fd:f9c3668a0bac19b2a3da0a5202b501a5","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f9c3668a0bac19b2a3da0a5202b501a5\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("964","fw:ext:cf:fd:d8f35aec4a179107266f2f0a33f5f4f3","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d8f35aec4a179107266f2f0a33f5f4f3\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("966","fw:ext:cf:fd:be868add0906ee6ef39fc431bc1e46df","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"be868add0906ee6ef39fc431bc1e46df\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("968","fw:ext:cf:fd:3e72e7913d57b0b9a69ce449289dd65c","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3e72e7913d57b0b9a69ce449289dd65c\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("970","fw:ext:cf:fd:c2d65cba8e280b6b4eeb330a19989d8a","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c2d65cba8e280b6b4eeb330a19989d8a\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("972","fw:ext:cf:fd:c205002fb9b3f91e87d03546395c6fe5","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c205002fb9b3f91e87d03546395c6fe5\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("974","fw:ext:cf:fd:0c2238a5bfce659b79fb848b364ed3aa","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0c2238a5bfce659b79fb848b364ed3aa\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("976","fw:ext:cf:fd:52869ca670e18a9f7d7377de14a81d93","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"52869ca670e18a9f7d7377de14a81d93\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("979","fw:ext:cf:fd:89d25c2d8956f7bffd2a571783a46d00","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"89d25c2d8956f7bffd2a571783a46d00\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("981","fw:ext:cf:fd:e039fca7565d5d867fa710b659f73f6c","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e039fca7565d5d867fa710b659f73f6c\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("983","fw:ext:cf:fd:abfa24cc9a138ae2178a17755a21ce58","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"abfa24cc9a138ae2178a17755a21ce58\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("985","fw:ext:cf:fd:23225486a400e76e5b301403dbaf7e9d","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"23225486a400e76e5b301403dbaf7e9d\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("987","fw:ext:cf:fd:295e6bc5c24367dc1402279221ee396f","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"295e6bc5c24367dc1402279221ee396f\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("989","fw:ext:cf:fd:ef6b3bacb71bcc07d96ff6447d4a8e99","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ef6b3bacb71bcc07d96ff6447d4a8e99\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("991","fw:ext:cf:fd:07b183db72fb7bc90b6e3e7be321fbc0","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"07b183db72fb7bc90b6e3e7be321fbc0\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("993","fw:ext:cf:fd:7743c379a2a7bb2cf01b2138a8b04dec","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7743c379a2a7bb2cf01b2138a8b04dec\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("995","fw:ext:cf:fd:c1fd4ec22428215d14cba63d4727216f","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c1fd4ec22428215d14cba63d4727216f\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("996","fw:ext:cf:fd:11ae82490e54b5c01dee9e60dfc8fb83","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"11ae82490e54b5c01dee9e60dfc8fb83\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("998","fw:ext:cf:fd:9055ff12d05bdb44e41231fe7e5c1d5e","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9055ff12d05bdb44e41231fe7e5c1d5e\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1000","fw:ext:cf:fd:8c8da845f4531385730c8562641af4bc","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8c8da845f4531385730c8562641af4bc\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1002","fw:ext:cf:fd:979f455cd6654be39dad740828f3da62","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"979f455cd6654be39dad740828f3da62\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1004","fw:ext:cf:fd:e2d21d6b545dc4323346f5a076e539ec","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e2d21d6b545dc4323346f5a076e539ec\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1007","fw:ext:cf:fd:5d8a3672dc5934ac2040ebc31a2d604c","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5d8a3672dc5934ac2040ebc31a2d604c\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1009","fw:ext:cf:fd:4685814f39ce5d57c34ebe5fb75b5c26","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4685814f39ce5d57c34ebe5fb75b5c26\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1011","fw:ext:cf:fd:5c762d427ef94361c998430c2062378c","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5c762d427ef94361c998430c2062378c\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1013","fw:ext:cf:fd:aebfa275e10fd2f652e3e223b4b3a3a2","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"aebfa275e10fd2f652e3e223b4b3a3a2\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1015","fw:ext:cf:fd:a5bc39fee89e60390f7ef190ed518e48","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a5bc39fee89e60390f7ef190ed518e48\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1017","fw:ext:cf:fd:73d0b04586515e0bf04bff29991611aa","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"73d0b04586515e0bf04bff29991611aa\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1019","fw:ext:cf:fd:72fcbc8c0dbcd505ed8b9a9a5818f066","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"72fcbc8c0dbcd505ed8b9a9a5818f066\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1041","fw:ext:cf:fd:2b224179843c4d63cb512f9781743be0","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2b224179843c4d63cb512f9781743be0\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1043","fw:ext:cf:fd:708dcc9281498fb235a115e8e4c116ca","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"708dcc9281498fb235a115e8e4c116ca\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1045","fw:ext:cf:fd:6f5d4508a64fa6c90c4569e9cf414f8f","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6f5d4508a64fa6c90c4569e9cf414f8f\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1058","fw:ext:cf:fd:ca832f7ab01c85ee734968d55f506805","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ca832f7ab01c85ee734968d55f506805\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1060","fw:ext:cf:fd:03e2e8da824e5561ccd32c01508e4d54","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"03e2e8da824e5561ccd32c01508e4d54\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1062","fw:ext:cf:fd:d2639b904520d592c3afddd5da551635","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d2639b904520d592c3afddd5da551635\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1064","fw:ext:cf:fd:5365831e68bac740ada9f5f151c5fbb0","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5365831e68bac740ada9f5f151c5fbb0\";s:4:\"form\";a:1:{s:4:\"json\";s:1367:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1085","fw:ext:cf:fd:ac5a27b848df9193763b8de6aa39d699","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ac5a27b848df9193763b8de6aa39d699\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1087","fw:ext:cf:fd:df3081fcf40a16f5b9b9570c61283646","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"df3081fcf40a16f5b9b9570c61283646\";s:4:\"form\";a:1:{s:4:\"json\";s:1464:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-bubble\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1088","fw:ext:cf:fd:aec9d7e2d0700f9e8d9658fb4aafe5ed","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"aec9d7e2d0700f9e8d9658fb4aafe5ed\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1090","fw:ext:cf:fd:3c5d22fd2dbe25f856da24d641b00e30","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3c5d22fd2dbe25f856da24d641b00e30\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1092","fw:ext:cf:fd:d8e1d29c4cf1d33aa54b2c207e3e574c","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d8e1d29c4cf1d33aa54b2c207e3e574c\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1093","fw:ext:cf:fd:a6ebfdb09d24b20791e3f1187f9f0d9a","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a6ebfdb09d24b20791e3f1187f9f0d9a\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1097","fw:ext:cf:fd:94f91d7dfe2e2e51426a084faa996d35","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"94f91d7dfe2e2e51426a084faa996d35\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1101","fw:ext:cf:fd:ce125d8c50813cb248a8be97a5a8bd86","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ce125d8c50813cb248a8be97a5a8bd86\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:18:\"with_padding ds ms\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1103","fw:ext:cf:fd:0a3368e838583ab658a8b01b671d255f","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0a3368e838583ab658a8b01b671d255f\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:18:\"with_padding ds ms\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1105","fw:ext:cf:fd:e24c7a5f9e367000ccef6158f47e08b1","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e24c7a5f9e367000ccef6158f47e08b1\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:18:\"with_padding ds ms\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1107","fw:ext:cf:fd:4cabaf50a9223e11084bb269d337698f","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4cabaf50a9223e11084bb269d337698f\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:18:\"with_padding ds ms\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1109","fw:ext:cf:fd:288a2f538ea167b727a468b698848620","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"288a2f538ea167b727a468b698848620\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:18:\"with_padding ds ms\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1111","fw:ext:cf:fd:2168d6d102a6a04e98b3338f29cf2ff0","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2168d6d102a6a04e98b3338f29cf2ff0\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:18:\"with_padding ds ms\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1113","fw:ext:cf:fd:849d3570a0afcdd9c1e48283635a0be1","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"849d3570a0afcdd9c1e48283635a0be1\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:18:\"with_padding ds ms\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1115","fw:ext:cf:fd:8314558860073e33e7296d6f2d850061","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8314558860073e33e7296d6f2d850061\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"2\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:18:\"with_padding ds ms\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1117","fw:ext:cf:fd:c6cd2417b7528292ee4f821e8da89fbb","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c6cd2417b7528292ee4f821e8da89fbb\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"2\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:18:\"with_padding ds ms\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1119","fw:ext:cf:fd:693ffd8d3029666d985adb3b0120281d","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"693ffd8d3029666d985adb3b0120281d\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"2\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:22:\"with_padding dark_form\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1122","fw:ext:cf:fd:148742c9952f755bf61387dec0fee8b5","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"148742c9952f755bf61387dec0fee8b5\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"2\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:22:\"with_padding dark_form\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1124","fw:ext:cf:fd:c1b7292fb79df259e7534f9c0852a061","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c1b7292fb79df259e7534f9c0852a061\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"2\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:22:\"with_padding dark_form\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1126","fw:ext:cf:fd:9b62a8c1e444d1f74855f56a510d2f80","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9b62a8c1e444d1f74855f56a510d2f80\";s:4:\"form\";a:1:{s:4:\"json\";s:1407:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"2\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:22:\"with_padding dark_form\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1155","fw:ext:cf:fd:79f75a94090f1dad3d3508a53d6968d7","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"79f75a94090f1dad3d3508a53d6968d7\";s:4:\"form\";a:1:{s:4:\"json\";s:1452:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"2\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:22:\"with_padding dark_form\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1157","fw:ext:cf:fd:d215530d5f1669e0b7b962f3ef4a2388","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d215530d5f1669e0b7b962f3ef4a2388\";s:4:\"form\";a:1:{s:4:\"json\";s:1452:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"2\",\"icon\":\"fa fa-comment-o\"}}]\";}s:16:\"background_color\";s:22:\"with_padding dark_form\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1159","fw:ext:cf:fd:bd8d69558944fec1a1998888d3b76ae6","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bd8d69558944fec1a1998888d3b76ae6\";s:4:\"form\";a:1:{s:4:\"json\";s:1538:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"2\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:22:\"with_padding dark_form\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1162","fw:ext:cf:fd:fdc63f517b84e825693e40bb783e1edb","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fdc63f517b84e825693e40bb783e1edb\";s:4:\"form\";a:1:{s:4:\"json\";s:1562:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"2\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:22:\"with_padding dark_form\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1166","booked_defaults","a:4:{s:3:\"Tue\";a:4:{s:9:\"0900-1220\";i:1;s:9:\"0015-0100\";s:1:\"4\";s:9:\"0030-0220\";i:6;s:9:\"0025-0210\";i:1;}s:11:\"Tue-details\";a:4:{s:9:\"0900-1220\";a:1:{s:5:\"title\";s:10:\"conference\";}s:9:\"0015-0100\";a:1:{s:5:\"title\";s:0:\"\";}s:9:\"0030-0220\";a:1:{s:5:\"title\";s:10:\"conference\";}s:9:\"0025-0210\";a:1:{s:5:\"title\";s:10:\"conference\";}}s:3:\"Thu\";a:4:{s:9:\"0030-0110\";i:1;s:9:\"0030-0055\";i:1;s:9:\"0020-0115\";i:1;s:9:\"0020-0255\";i:3;}s:11:\"Thu-details\";a:4:{s:9:\"0030-0110\";a:1:{s:5:\"title\";s:10:\"conference\";}s:9:\"0030-0055\";a:1:{s:5:\"title\";s:10:\"conference\";}s:9:\"0020-0115\";a:1:{s:5:\"title\";s:10:\"conference\";}s:9:\"0020-0255\";a:1:{s:5:\"title\";s:10:\"conference\";}}}","yes");
INSERT INTO `wp_options` VALUES("1214","woocommerce_paypal-braintree_settings","a:1:{s:7:\"enabled\";s:2:\"no\";}","yes");
INSERT INTO `wp_options` VALUES("1215","woocommerce_stripe_settings","a:1:{s:7:\"enabled\";s:2:\"no\";}","yes");
INSERT INTO `wp_options` VALUES("1216","woocommerce_paypal_settings","a:17:{s:7:\"enabled\";s:2:\"no\";s:5:\"email\";s:19:\"example@example.com\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:14:\"receiver_email\";s:19:\"example@example.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:2:\"no\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:10:\"page_style\";s:0:\"\";s:9:\"image_url\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";}","yes");
INSERT INTO `wp_options` VALUES("1217","woocommerce_cheque_settings","a:4:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:14:\"Check payments\";s:11:\"description\";s:0:\"\";s:12:\"instructions\";s:0:\"\";}","yes");
INSERT INTO `wp_options` VALUES("1218","woocommerce_bacs_settings","a:1:{s:7:\"enabled\";s:2:\"no\";}","yes");
INSERT INTO `wp_options` VALUES("1219","woocommerce_cod_settings","a:6:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:16:\"Cash on delivery\";s:11:\"description\";s:0:\"\";s:12:\"instructions\";s:28:\"Pay with cash upon delivery.\";s:18:\"enable_for_methods\";s:0:\"\";s:18:\"enable_for_virtual\";s:3:\"yes\";}","yes");
INSERT INTO `wp_options` VALUES("1328","team_category_children","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("1353","fw:ext:cf:fd:583e11a33647356a6a5148843314e4a1","a:23:{s:20:\"single_member_layout\";s:8:\"layout-2\";s:8:\"position\";s:8:\"Marketer\";s:12:\"social_icons\";a:4:{i:0;a:3:{s:4:\"icon\";s:24:\"social-icon soc-facebook\";s:10:\"icon_class\";s:31:\"color-icon bg-icon rounded-icon\";s:8:\"icon_url\";s:26:\"https://www.facebook.com/#\";}i:1;a:3:{s:4:\"icon\";s:23:\"social-icon soc-twitter\";s:10:\"icon_class\";s:31:\"color-icon bg-icon rounded-icon\";s:8:\"icon_url\";s:21:\"https://twitter.com/#\";}i:2;a:3:{s:4:\"icon\";s:22:\"social-icon soc-google\";s:10:\"icon_class\";s:31:\"color-icon bg-icon rounded-icon\";s:8:\"icon_url\";s:25:\"https://plus.google.com/#\";}i:3;a:3:{s:4:\"icon\";s:24:\"social-icon soc-linkedin\";s:10:\"icon_class\";s:31:\"color-icon bg-icon rounded-icon\";s:8:\"icon_url\";s:25:\"http://www.linkedin.com/#\";}}s:5:\"icons\";a:2:{i:0;a:2:{s:4:\"icon\";s:15:\"rt-icon2-phone6\";s:4:\"text\";s:14:\"1-800-123-4567\";}i:1;a:2:{s:4:\"icon\";s:12:\"fa fa-pencil\";s:4:\"text\";s:66:\"dotdigital@example.com\";}}s:3:\"bio\";s:601:\"Biography:
Boudin leberkas jowl t-bone beef filet mignon. Beef hamburger rump drumstick, ham hock doner kielbasa salami short ribs tri-tip pork belly flank pancetta ribs turkey pork. Hamburger prosciutto beef rump alcatra pork strip steak. Pork belly short loin turkey ball tip flank salami meatball leberkas bacon bresaola salami meatloaf picanha doner kielbasa.
Professional Life:
Sausage tail sirloin kielbasa. Short ribs salami alcatra flank pork belly. Sausage pork loin doner meatball, hamburger andouille venison beef ribs pig turkey.Ball tip shankle boudin ribeye.
\";s:6:\"skills\";a:4:{i:0;a:3:{s:5:\"title\";s:17:\"Custom Web Design\";s:7:\"percent\";d:75;s:16:\"background_class\";s:19:\"progress-bar-danger\";}i:1;a:3:{s:5:\"title\";s:25:\"Responsive / Mobile Sites\";s:7:\"percent\";d:88;s:16:\"background_class\";s:20:\"progress-bar-success\";}i:2;a:3:{s:5:\"title\";s:26:\"Email Design + Integration\";s:7:\"percent\";d:87;s:16:\"background_class\";s:17:\"progress-bar-info\";}i:3;a:3:{s:5:\"title\";s:17:\"UI / UX Expertise\";s:7:\"percent\";d:82;s:16:\"background_class\";s:20:\"progress-bar-warning\";}}s:2:\"id\";s:32:\"583e11a33647356a6a5148843314e4a1\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_5a8f1fa\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e673c12\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_d118019\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2fba4e8\",\"width\":\"1_2\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_44bb1b2\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:17:\"columns_padding_5\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}s:18:\"additional_content\";s:621:\"Lorem ipsum dolor sit amet, consetetur sadipscing elitred diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
\"I highly recommend this company for all and any of your design needs. I am happy with new redesigned and restructured website.\"
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
\";s:12:\"slider_image\";s:0:\"\";}","no");
INSERT INTO `wp_options` VALUES("1631","mc4wp","a:4:{s:7:\"api_key\";s:0:\"\";s:20:\"allow_usage_tracking\";i:0;s:15:\"debug_log_level\";s:7:\"warning\";s:18:\"first_activated_on\";i:1497961692;}","yes");
INSERT INTO `wp_options` VALUES("1632","mc4wp_default_form_id","445","yes");
INSERT INTO `wp_options` VALUES("1633","mc4wp_form_stylesheets","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("1773","fw:ext:cf:fd:315b698a4856df90124e5230a25c0335","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"315b698a4856df90124e5230a25c0335\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1775","fw:ext:cf:fd:b98a11fcf9b46dd004326a7b7ad0475b","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b98a11fcf9b46dd004326a7b7ad0475b\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1777","fw:ext:cf:fd:ebe482fa8c2e7dd617e3ae8d3f0f30c5","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ebe482fa8c2e7dd617e3ae8d3f0f30c5\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1779","fw:ext:cf:fd:d7a1f52fd64e0b9210bc3819a440363c","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d7a1f52fd64e0b9210bc3819a440363c\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1781","fw:ext:cf:fd:34325ada2ed0899e3319f6430c6229be","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"34325ada2ed0899e3319f6430c6229be\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1782","fw:ext:cf:fd:fad00362a354e6080d451b7992f473f9","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fad00362a354e6080d451b7992f473f9\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1784","fw:ext:cf:fd:ac6acfe9cf0ac3ff9ec48f4e106781e8","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ac6acfe9cf0ac3ff9ec48f4e106781e8\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1785","fw:ext:cf:fd:ec36d2df840554a2085c4c99bc135111","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ec36d2df840554a2085c4c99bc135111\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1786","fw:ext:cf:fd:a9beb4531b357fa6edd6cc90e3540654","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a9beb4531b357fa6edd6cc90e3540654\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1788","fw:ext:cf:fd:f154b69be1bb66ed7049371afb74fa9b","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f154b69be1bb66ed7049371afb74fa9b\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1790","fw:ext:cf:fd:a3011d93fdbc278c0d63bce1efc99a7e","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a3011d93fdbc278c0d63bce1efc99a7e\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1792","fw:ext:cf:fd:4a943df8bc2091ca963ed3f73580bdcc","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4a943df8bc2091ca963ed3f73580bdcc\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1794","fw:ext:cf:fd:7dc2ada31e660158fcb9d4181e2787a4","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7dc2ada31e660158fcb9d4181e2787a4\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1797","fw:ext:cf:fd:c1ca1f9eb9cd3165e4e4c33b966dbfff","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c1ca1f9eb9cd3165e4e4c33b966dbfff\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1799","fw:ext:cf:fd:5ddc90075fbbad68bad06e666ea1ffc3","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5ddc90075fbbad68bad06e666ea1ffc3\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1801","fw:ext:cf:fd:f6b6c58a8f7eec5d51e22909ada87aab","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f6b6c58a8f7eec5d51e22909ada87aab\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1803","fw:ext:cf:fd:7f9daf298c1b54aac6c2142cd2b809d7","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7f9daf298c1b54aac6c2142cd2b809d7\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1805","fw:ext:cf:fd:3d57e67fa3b5d7dae3c80251c1aac322","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3d57e67fa3b5d7dae3c80251c1aac322\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1807","fw:ext:cf:fd:d34cc500c477496dd8fb1d6c6b4c97f6","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d34cc500c477496dd8fb1d6c6b4c97f6\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1809","fw:ext:cf:fd:98f7471ea74c2dea3bb8eb36dbe3a342","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"98f7471ea74c2dea3bb8eb36dbe3a342\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1811","fw:ext:cf:fd:9c03c6b9a841892afc3bb616d8e4a3df","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9c03c6b9a841892afc3bb616d8e4a3df\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1813","fw:ext:cf:fd:a175e4fcb1fa051dd97e5e96f66ad758","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a175e4fcb1fa051dd97e5e96f66ad758\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1815","fw:ext:cf:fd:8db235439a522ccb5c018c3a6ff5d096","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8db235439a522ccb5c018c3a6ff5d096\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1817","fw:ext:cf:fd:7c4be9130d5476dae390981302060c1a","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7c4be9130d5476dae390981302060c1a\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1820","fw:ext:cf:fd:824b2443be46c7ad6eadbb7a11710bcb","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"824b2443be46c7ad6eadbb7a11710bcb\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1822","fw:ext:cf:fd:f48582d8a5d729e43254fa321a87469e","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f48582d8a5d729e43254fa321a87469e\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1823","fw:ext:cf:fd:aa10b006024716b2c6319a48b8e93544","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"aa10b006024716b2c6319a48b8e93544\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1825","fw:ext:cf:fd:c04db0d5331f569e451061e93ae973ae","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c04db0d5331f569e451061e93ae973ae\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1826","fw:ext:cf:fd:461390020a071877fabbf7b280f301e8","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"461390020a071877fabbf7b280f301e8\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1828","fw:ext:cf:fd:8ed5242c23163a0bd4412b0be907e7b5","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8ed5242c23163a0bd4412b0be907e7b5\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1830","fw:ext:cf:fd:7afc9fd0674e45ed26b538f334e91b9d","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7afc9fd0674e45ed26b538f334e91b9d\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1832","fw:ext:cf:fd:b665b492d37bb8bde68d0c478a5389ba","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b665b492d37bb8bde68d0c478a5389ba\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1834","fw:ext:cf:fd:60b0c7ab93ea1437fd6a841786f514d1","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"60b0c7ab93ea1437fd6a841786f514d1\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1836","fw:ext:cf:fd:135270af322fe400a0f67937f4f4d7ce","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"135270af322fe400a0f67937f4f4d7ce\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1838","fw:ext:cf:fd:5d0c8eca0692dc3ce7cca575ec9e28e1","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5d0c8eca0692dc3ce7cca575ec9e28e1\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1840","fw:ext:cf:fd:bbea1405244f79b49675807d86ec83b0","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bbea1405244f79b49675807d86ec83b0\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1842","fw:ext:cf:fd:cbbdf31dabcc285f3e68ca69c64443ae","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cbbdf31dabcc285f3e68ca69c64443ae\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1844","fw:ext:cf:fd:9078ada09dce3a71de73ffa459d21d53","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9078ada09dce3a71de73ffa459d21d53\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1846","fw:ext:cf:fd:dc6e2462d2df7f70f573dd333c2765b6","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"dc6e2462d2df7f70f573dd333c2765b6\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1847","fw:ext:cf:fd:38b9ec3e8a757dabd062d705214f57b8","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"38b9ec3e8a757dabd062d705214f57b8\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1849","fw:ext:cf:fd:7b281ed8cacd989ed6a99cfd5fb12dd1","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7b281ed8cacd989ed6a99cfd5fb12dd1\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1851","fw:ext:cf:fd:658858c6576a2d16139c5ef91542e0bf","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"658858c6576a2d16139c5ef91542e0bf\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1853","fw:ext:cf:fd:f03682a17eadeb77585bd7c774ee84f2","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f03682a17eadeb77585bd7c774ee84f2\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1865","fw:ext:cf:fd:c3beb4f5eb8ba8c3311113ea8fca6c43","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c3beb4f5eb8ba8c3311113ea8fca6c43\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1867","fw:ext:cf:fd:4d81d512d0428c72d1a81873413e2231","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4d81d512d0428c72d1a81873413e2231\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1868","fw:ext:cf:fd:93218ff10fe0d9c34b4e37773aa36144","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"93218ff10fe0d9c34b4e37773aa36144\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1869","fw:ext:cf:fd:7690ed3727ee8a73f6268865c530c1eb","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7690ed3727ee8a73f6268865c530c1eb\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1871","fw:ext:cf:fd:71df78f987b2cde4becba8590805589b","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"71df78f987b2cde4becba8590805589b\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1873","fw:ext:cf:fd:44ea371dbbfe42966a2d58f751269989","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"44ea371dbbfe42966a2d58f751269989\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1875","fw:ext:cf:fd:669220bb437fc79b0bd180c89621e96e","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"669220bb437fc79b0bd180c89621e96e\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1879","fw:ext:cf:fd:471348cb599ffeec324100560b42fb9c","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"471348cb599ffeec324100560b42fb9c\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1883","fw:ext:cf:fd:862eed233bfbed6c092ab186539f141e","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"862eed233bfbed6c092ab186539f141e\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1884","fw:ext:cf:fd:65f7f4a4c7a5d58cbd8a14480b4371c0","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"65f7f4a4c7a5d58cbd8a14480b4371c0\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1886","fw:ext:cf:fd:d7ecbf0f48a5b3b6347519632b9aa4bc","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d7ecbf0f48a5b3b6347519632b9aa4bc\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1888","fw:ext:cf:fd:0d29f945b58365d58030d1a6fdf3bbb3","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0d29f945b58365d58030d1a6fdf3bbb3\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1889","fw:ext:cf:fd:a2d54b41ce6299ca3e699d70a5bbc458","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a2d54b41ce6299ca3e699d70a5bbc458\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1891","fw:ext:cf:fd:1bc63ce13956258b6be5b966de6fb583","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1bc63ce13956258b6be5b966de6fb583\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1894","fw:ext:cf:fd:912e59f76c153d68330916dc5974d407","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"912e59f76c153d68330916dc5974d407\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1896","fw:ext:cf:fd:1764d01a1e1ddd7d7fb62d87b57b0d92","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1764d01a1e1ddd7d7fb62d87b57b0d92\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1898","fw:ext:cf:fd:f4912b257c90bbcda37e3ec3c1755a66","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f4912b257c90bbcda37e3ec3c1755a66\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1905","fw:ext:cf:fd:ef5f9e50083e62c781e911fe0cad50c3","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ef5f9e50083e62c781e911fe0cad50c3\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1906","fw:ext:cf:fd:76f83ba4b6b72106775f79ed497d21e9","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"76f83ba4b6b72106775f79ed497d21e9\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1908","fw:ext:cf:fd:2e5b787e0695223f004c5a26dca438a1","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2e5b787e0695223f004c5a26dca438a1\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1910","fw:ext:cf:fd:8cd88bf85310347173527fa29c717c5e","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8cd88bf85310347173527fa29c717c5e\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1912","fw:ext:cf:fd:15d262837998e6313e2216de69c72a0e","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"15d262837998e6313e2216de69c72a0e\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1915","fw:ext:cf:fd:76a218b8846dc69c7f097044a012e277","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"76a218b8846dc69c7f097044a012e277\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1917","fw:ext:cf:fd:3271daa4cbd0aa04400e98cab1ad1734","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3271daa4cbd0aa04400e98cab1ad1734\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1919","SnazzyMapStyles","a:1:{i:0;a:12:{s:2:\"id\";i:151;s:4:\"name\";s:23:\"Ultra Light with Labels\";s:11:\"description\";s:10:\"Light Rust\";s:3:\"url\";s:56:\"https://snazzymaps.com/style/151/ultra-light-with-labels\";s:8:\"imageUrl\";s:93:\"https://snazzy-maps-cdn.azureedge.net/assets/151-ultra-light-with-labels.png?v=20170626083737\";s:4:\"json\";s:1456:\"[{\"featureType\":\"water\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#e9e9e9\"},{\"lightness\":17}]},{\"featureType\":\"landscape\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#f5f5f5\"},{\"lightness\":20}]},{\"featureType\":\"road.highway\",\"elementType\":\"geometry.fill\",\"stylers\":[{\"color\":\"#ffffff\"},{\"lightness\":17}]},{\"featureType\":\"road.highway\",\"elementType\":\"geometry.stroke\",\"stylers\":[{\"color\":\"#ffffff\"},{\"lightness\":29},{\"weight\":0.2}]},{\"featureType\":\"road.arterial\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#ffffff\"},{\"lightness\":18}]},{\"featureType\":\"road.local\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#ffffff\"},{\"lightness\":16}]},{\"featureType\":\"poi\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#f5f5f5\"},{\"lightness\":21}]},{\"featureType\":\"poi.park\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#dedede\"},{\"lightness\":21}]},{\"elementType\":\"labels.text.stroke\",\"stylers\":[{\"visibility\":\"on\"},{\"color\":\"#ffffff\"},{\"lightness\":16}]},{\"elementType\":\"labels.text.fill\",\"stylers\":[{\"saturation\":36},{\"color\":\"#333333\"},{\"lightness\":40}]},{\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#f2f2f2\"},{\"lightness\":19}]},{\"featureType\":\"administrative\",\"elementType\":\"geometry.fill\",\"stylers\":[{\"color\":\"#fefefe\"},{\"lightness\":20}]},{\"featureType\":\"administrative\",\"elementType\":\"geometry.stroke\",\"stylers\":[{\"color\":\"#fefefe\"},{\"lightness\":17},{\"weight\":1.2}]}]\";s:5:\"views\";i:620653;s:9:\"favorites\";i:1564;s:9:\"createdBy\";a:2:{s:4:\"name\";s:7:\"hawasan\";s:3:\"url\";s:23:\"http://www.haveasign.pl\";}s:9:\"createdOn\";s:23:\"2014-11-04T03:01:33.197\";s:4:\"tags\";a:2:{i:0;s:9:\"greyscale\";i:1;s:5:\"light\";}s:6:\"colors\";a:2:{i:0;s:4:\"gray\";i:1;s:5:\"white\";}}}","yes");
INSERT INTO `wp_options` VALUES("1921","fw:ext:cf:fd:f1e091693e10af0c2616ca621ae36c93","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f1e091693e10af0c2616ca621ae36c93\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1923","fw:ext:cf:fd:563b71fec46f9662e2fc1c8f3d96fbd6","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"563b71fec46f9662e2fc1c8f3d96fbd6\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1927","fw:ext:cf:fd:b32070e6a7c849396f715955343684ac","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b32070e6a7c849396f715955343684ac\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1928","fw-option-types:gmap-key","AIzaSyDTwYSMRGuTsmfl2z_zZDStYqMlKtrybxo","no");
INSERT INTO `wp_options` VALUES("1929","fw:ext:cf:fd:5dd79eac96621e6421023a64de5e9cf8","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5dd79eac96621e6421023a64de5e9cf8\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1931","fw:ext:cf:fd:952fd06a937967a9a919c043f2aae3cc","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"952fd06a937967a9a919c043f2aae3cc\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1932","fw:ext:cf:fd:c18274e8b2287ffbe276b4884745168d","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c18274e8b2287ffbe276b4884745168d\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1935","fw:ext:cf:fd:7b7e867ecf1a1a23fb64c2b5011f2e35","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7b7e867ecf1a1a23fb64c2b5011f2e35\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1937","fw:ext:cf:fd:f055b6b42b2311ed479c06012901d733","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f055b6b42b2311ed479c06012901d733\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1938","fw:ext:cf:fd:a270a1adc1d2b9a178cbd820caf51438","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a270a1adc1d2b9a178cbd820caf51438\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1940","fw:ext:cf:fd:ac1b3d31645b0e1632f3142dc5eef2e9","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ac1b3d31645b0e1632f3142dc5eef2e9\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1943","fw:ext:cf:fd:0044d1906e8149314025f4020dd49e9c","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0044d1906e8149314025f4020dd49e9c\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1951","fw:ext:cf:fd:224e2560451a5b7c54612f5d55ba9777","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"224e2560451a5b7c54612f5d55ba9777\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1953","fw:ext:cf:fd:7d174897e043abcde048aee5aff032e7","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7d174897e043abcde048aee5aff032e7\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("1954","fw:ext:cf:fd:ed185b9b566234f74b730b267f8cdb24","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ed185b9b566234f74b730b267f8cdb24\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2181","chld_thm_cfg_options_configvars","a:38:{s:8:\"addl_css\";a:4:{i:0;s:13:\"css/fonts.css\";i:1;s:11:\"css/woo.css\";i:2;s:14:\"css/booked.css\";i:3;s:19:\"css/accesspress.css\";}s:8:\"forcedep\";N;s:8:\"cssunreg\";N;s:9:\"csswphead\";N;s:10:\"cssnotheme\";N;s:7:\"reorder\";N;s:10:\"parnt_deps\";a:4:{i:0;s:21:\"dotdigital-icon-fonts\";i:1;s:14:\"dotdigital-woo\";i:2;s:17:\"dotdigital-booked\";i:3;s:22:\"dotdigital-accesspress\";}s:10:\"child_deps\";a:4:{i:0;s:20:\"dotdigital-css-style\";i:1;s:20:\"dotdigital-bootstrap\";i:2;s:21:\"dotdigital-animations\";i:3;s:15:\"dotdigital-main\";}s:9:\"hasstyles\";i:1;s:11:\"parntloaded\";N;s:11:\"childloaded\";N;s:11:\"ignoreparnt\";N;s:9:\"qpriority\";s:2:\"20\";s:7:\"enqueue\";s:7:\"enqueue\";s:8:\"handling\";s:7:\"primary\";s:9:\"templates\";a:246:{i:0;s:10:\"header.php\";i:1;s:24:\"archive-fw-portfolio.php\";i:2;s:10:\"single.php\";i:3;s:9:\"index.php\";i:4;s:11:\"sidebar.php\";i:5;s:10:\"search.php\";i:6;s:7:\"404.php\";i:7;s:9:\"image.php\";i:8;s:12:\"comments.php\";i:9;s:14:\"searchform.php\";i:10;s:11:\"archive.php\";i:11;s:10:\"footer.php\";i:12;s:8:\"page.php\";i:13;s:14:\"inc/static.php\";i:14;s:13:\"inc/menus.php\";i:15;s:49:\"inc/widgets/portfolio/views/widget-item-title.php\";i:16;s:47:\"inc/widgets/portfolio/views/widget-carousel.php\";i:17;s:46:\"inc/widgets/portfolio/views/widget-isotope.php\";i:18;s:52:\"inc/widgets/portfolio/views/widget-item-extended.php\";i:19;s:51:\"inc/widgets/portfolio/views/widget-item-regular.php\";i:20;s:45:\"inc/widgets/posts/views/widget-item-title.php\";i:21;s:43:\"inc/widgets/posts/views/widget-carousel.php\";i:22;s:42:\"inc/widgets/posts/views/widget-isotope.php\";i:23;s:48:\"inc/widgets/posts/views/widget-item-extended.php\";i:24;s:47:\"inc/widgets/posts/views/widget-item-regular.php\";i:25;s:39:\"inc/widgets/icons-list/views/widget.php\";i:26;s:36:\"inc/widgets/twitter/views/widget.php\";i:27;s:35:\"inc/widgets/banner/views/widget.php\";i:28;s:38:\"inc/widgets/post-tabs/views/widget.php\";i:29;s:36:\"inc/widgets/socials/views/widget.php\";i:30;s:40:\"inc/widgets/theme-posts/views/widget.php\";i:31;s:29:\"page-templates/full-width.php\";i:32;s:32:\"template-parts/content-video.php\";i:33;s:31:\"template-parts/content-page.php\";i:34;s:34:\"template-parts/content-product.php\";i:35;s:32:\"template-parts/content-aside.php\";i:36;s:31:\"template-parts/content-none.php\";i:37;s:31:\"template-parts/content-link.php\";i:38;s:34:\"template-parts/content-gallery.php\";i:39;s:33:\"template-parts/content-status.php\";i:40;s:26:\"template-parts/content.php\";i:41;s:32:\"template-parts/content-event.php\";i:42;s:32:\"template-parts/content-quote.php\";i:43;s:31:\"template-parts/content-chat.php\";i:44;s:32:\"template-parts/content-image.php\";i:45;s:35:\"template-parts/header/header-22.php\";i:46;s:37:\"template-parts/header/header-logo.php\";i:47;s:35:\"template-parts/header/header-24.php\";i:48;s:35:\"template-parts/header/header-23.php\";i:49;s:34:\"template-parts/header/header-1.php\";i:50;s:34:\"template-parts/header/header-2.php\";i:51;s:35:\"template-parts/header/header-21.php\";i:52;s:42:\"template-parts/copyrights/copyrights-1.php\";i:53;s:34:\"template-parts/footer/footer-1.php\";i:54;s:46:\"template-parts/breadcrumbs/page-title-text.php\";i:55;s:44:\"template-parts/breadcrumbs/breadcrumbs-1.php\";i:56;s:56:\"framework-customizations/extensions/portfolio/static.php\";i:57;s:56:\"framework-customizations/extensions/portfolio/config.php\";i:58;s:62:\"framework-customizations/extensions/portfolio/views/single.php\";i:59;s:66:\"framework-customizations/extensions/portfolio/views/item-title.php\";i:60;s:68:\"framework-customizations/extensions/portfolio/views/item-regular.php\";i:61;s:69:\"framework-customizations/extensions/portfolio/views/item-extended.php\";i:62;s:64:\"framework-customizations/extensions/portfolio/views/taxonomy.php\";i:63;s:63:\"framework-customizations/extensions/portfolio/views/isotope.php\";i:64;s:64:\"framework-customizations/extensions/portfolio/views/carousel.php\";i:65;s:55:\"framework-customizations/extensions/services/static.php\";i:66;s:55:\"framework-customizations/extensions/services/config.php\";i:67;s:76:\"framework-customizations/extensions/services/shortcodes/services/options.php\";i:68;s:82:\"framework-customizations/extensions/services/shortcodes/services/views/isotope.php\";i:69;s:83:\"framework-customizations/extensions/services/shortcodes/services/views/carousel.php\";i:70;s:61:\"framework-customizations/extensions/services/views/single.php\";i:71;s:63:\"framework-customizations/extensions/services/views/taxonomy.php\";i:72;s:65:\"framework-customizations/extensions/services/views/loop-item2.php\";i:73;s:62:\"framework-customizations/extensions/services/views/archive.php\";i:74;s:64:\"framework-customizations/extensions/services/views/loop-item.php\";i:75;s:68:\"framework-customizations/extensions/team/shortcodes/team/options.php\";i:76;s:74:\"framework-customizations/extensions/team/shortcodes/team/views/isotope.php\";i:77;s:75:\"framework-customizations/extensions/team/shortcodes/team/views/carousel.php\";i:78;s:57:\"framework-customizations/extensions/team/views/single.php\";i:79;s:59:\"framework-customizations/extensions/team/views/taxonomy.php\";i:80;s:58:\"framework-customizations/extensions/team/views/archive.php\";i:81;s:60:\"framework-customizations/extensions/team/views/loop-item.php\";i:82;s:52:\"framework-customizations/extensions/forms/static.php\";i:83;s:102:\"framework-customizations/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php\";i:84;s:101:\"framework-customizations/extensions/forms/extensions/contact-forms/shortcodes/contact-form/config.php\";i:85;s:83:\"framework-customizations/extensions/forms/extensions/contact-forms/views/submit.php\";i:86;s:81:\"framework-customizations/extensions/forms/extensions/contact-forms/views/form.php\";i:87;s:83:\"framework-customizations/extensions/forms/includes/builder-items/date-time/view.php\";i:88;s:87:\"framework-customizations/extensions/forms/form-builder/items/select/options/options.php\";i:89;s:82:\"framework-customizations/extensions/forms/form-builder/items/select/views/view.php\";i:90;s:87:\"framework-customizations/extensions/forms/form-builder/items/number/options/options.php\";i:91;s:82:\"framework-customizations/extensions/forms/form-builder/items/number/views/view.php\";i:92;s:81:\"framework-customizations/extensions/forms/form-builder/items/radio/views/view.php\";i:93;s:85:\"framework-customizations/extensions/forms/form-builder/items/recaptcha/views/view.php\";i:94;s:86:\"framework-customizations/extensions/forms/form-builder/items/checkboxes/views/view.php\";i:95;s:85:\"framework-customizations/extensions/forms/form-builder/items/text/options/options.php\";i:96;s:80:\"framework-customizations/extensions/forms/form-builder/items/text/views/view.php\";i:97;s:88:\"framework-customizations/extensions/forms/form-builder/items/website/options/options.php\";i:98;s:83:\"framework-customizations/extensions/forms/form-builder/items/website/views/view.php\";i:99;s:86:\"framework-customizations/extensions/forms/form-builder/items/email/options/options.php\";i:100;s:81:\"framework-customizations/extensions/forms/form-builder/items/email/views/view.php\";i:101;s:89:\"framework-customizations/extensions/forms/form-builder/items/textarea/options/options.php\";i:102;s:84:\"framework-customizations/extensions/forms/form-builder/items/textarea/views/view.php\";i:103;s:93:\"framework-customizations/extensions/forms/form-builder/items/form-header-title/views/view.php\";i:104;s:59:\"framework-customizations/extensions/events/views/single.php\";i:105;s:61:\"framework-customizations/extensions/events/views/taxonomy.php\";i:106;s:55:\"framework-customizations/extensions/sidebars/config.php\";i:107;s:74:\"framework-customizations/extensions/sidebars/views/frontend-no-widgets.php\";i:108;s:81:\"framework-customizations/extensions/shortcodes/extensions/page-builder/config.php\";i:109;s:80:\"framework-customizations/extensions/shortcodes/shortcodes/text-block/options.php\";i:110;s:83:\"framework-customizations/extensions/shortcodes/shortcodes/text-block/views/view.php\";i:111;s:79:\"framework-customizations/extensions/shortcodes/shortcodes/portfolio/options.php\";i:112;s:78:\"framework-customizations/extensions/shortcodes/shortcodes/portfolio/config.php\";i:113;s:85:\"framework-customizations/extensions/shortcodes/shortcodes/portfolio/views/isotope.php\";i:114;s:86:\"framework-customizations/extensions/shortcodes/shortcodes/portfolio/views/carousel.php\";i:115;s:85:\"framework-customizations/extensions/shortcodes/shortcodes/images-carousel/options.php\";i:116;s:84:\"framework-customizations/extensions/shortcodes/shortcodes/images-carousel/static.php\";i:117;s:84:\"framework-customizations/extensions/shortcodes/shortcodes/images-carousel/config.php\";i:118;s:88:\"framework-customizations/extensions/shortcodes/shortcodes/images-carousel/views/view.php\";i:119;s:82:\"framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options.php\";i:120;s:81:\"framework-customizations/extensions/shortcodes/shortcodes/progress-bar/config.php\";i:121;s:85:\"framework-customizations/extensions/shortcodes/shortcodes/progress-bar/views/view.php\";i:122;s:72:\"framework-customizations/extensions/shortcodes/shortcodes/row/static.php\";i:123;s:76:\"framework-customizations/extensions/shortcodes/shortcodes/row/views/view.php\";i:124;s:77:\"framework-customizations/extensions/shortcodes/shortcodes/section/options.php\";i:125;s:76:\"framework-customizations/extensions/shortcodes/shortcodes/section/static.php\";i:126;s:76:\"framework-customizations/extensions/shortcodes/shortcodes/section/config.php\";i:127;s:80:\"framework-customizations/extensions/shortcodes/shortcodes/section/views/view.php\";i:128;s:75:\"framework-customizations/extensions/shortcodes/shortcodes/posts/options.php\";i:129;s:74:\"framework-customizations/extensions/shortcodes/shortcodes/posts/config.php\";i:130;s:84:\"framework-customizations/extensions/shortcodes/shortcodes/posts/views/item-title.php\";i:131;s:83:\"framework-customizations/extensions/shortcodes/shortcodes/posts/views/item-text.php\";i:132;s:86:\"framework-customizations/extensions/shortcodes/shortcodes/posts/views/item-regular.php\";i:133;s:87:\"framework-customizations/extensions/shortcodes/shortcodes/posts/views/item-extended.php\";i:134;s:81:\"framework-customizations/extensions/shortcodes/shortcodes/posts/views/isotope.php\";i:135;s:82:\"framework-customizations/extensions/shortcodes/shortcodes/posts/views/carousel.php\";i:136;s:79:\"framework-customizations/extensions/shortcodes/shortcodes/pie-chart/options.php\";i:137;s:78:\"framework-customizations/extensions/shortcodes/shortcodes/pie-chart/config.php\";i:138;s:82:\"framework-customizations/extensions/shortcodes/shortcodes/pie-chart/views/view.php\";i:139;s:81:\"framework-customizations/extensions/shortcodes/shortcodes/media-image/options.php\";i:140;s:84:\"framework-customizations/extensions/shortcodes/shortcodes/media-image/views/view.php\";i:141;s:80:\"framework-customizations/extensions/shortcodes/shortcodes/icons-list/options.php\";i:142;s:79:\"framework-customizations/extensions/shortcodes/shortcodes/icons-list/static.php\";i:143;s:79:\"framework-customizations/extensions/shortcodes/shortcodes/icons-list/config.php\";i:144;s:83:\"framework-customizations/extensions/shortcodes/shortcodes/icons-list/views/view.php\";i:145;s:86:\"framework-customizations/extensions/shortcodes/shortcodes/teasers-carousel/options.php\";i:146;s:85:\"framework-customizations/extensions/shortcodes/shortcodes/teasers-carousel/static.php\";i:147;s:85:\"framework-customizations/extensions/shortcodes/shortcodes/teasers-carousel/config.php\";i:148;s:89:\"framework-customizations/extensions/shortcodes/shortcodes/teasers-carousel/views/view.php\";i:149;s:81:\"framework-customizations/extensions/shortcodes/shortcodes/team-member/options.php\";i:150;s:80:\"framework-customizations/extensions/shortcodes/shortcodes/team-member/static.php\";i:151;s:84:\"framework-customizations/extensions/shortcodes/shortcodes/team-member/views/view.php\";i:152;s:84:\"framework-customizations/extensions/shortcodes/shortcodes/call-to-action/options.php\";i:153;s:83:\"framework-customizations/extensions/shortcodes/shortcodes/call-to-action/static.php\";i:154;s:83:\"framework-customizations/extensions/shortcodes/shortcodes/call-to-action/config.php\";i:155;s:87:\"framework-customizations/extensions/shortcodes/shortcodes/call-to-action/views/view.php\";i:156;s:73:\"framework-customizations/extensions/shortcodes/shortcodes/map/options.php\";i:157;s:72:\"framework-customizations/extensions/shortcodes/shortcodes/map/static.php\";i:158;s:76:\"framework-customizations/extensions/shortcodes/shortcodes/map/views/view.php\";i:159;s:75:\"framework-customizations/extensions/shortcodes/shortcodes/table/options.php\";i:160;s:74:\"framework-customizations/extensions/shortcodes/shortcodes/table/static.php\";i:161;s:81:\"framework-customizations/extensions/shortcodes/shortcodes/table/views/tabular.php\";i:162;s:81:\"framework-customizations/extensions/shortcodes/shortcodes/table/views/pricing.php\";i:163;s:82:\"framework-customizations/extensions/shortcodes/shortcodes/icons-social/options.php\";i:164;s:81:\"framework-customizations/extensions/shortcodes/shortcodes/icons-social/config.php\";i:165;s:85:\"framework-customizations/extensions/shortcodes/shortcodes/icons-social/views/view.php\";i:166;s:79:\"framework-customizations/extensions/shortcodes/shortcodes/signature/options.php\";i:167;s:78:\"framework-customizations/extensions/shortcodes/shortcodes/signature/static.php\";i:168;s:78:\"framework-customizations/extensions/shortcodes/shortcodes/signature/config.php\";i:169;s:82:\"framework-customizations/extensions/shortcodes/shortcodes/signature/views/view.php\";i:170;s:79:\"framework-customizations/extensions/shortcodes/shortcodes/accordion/options.php\";i:171;s:78:\"framework-customizations/extensions/shortcodes/shortcodes/accordion/static.php\";i:172;s:82:\"framework-customizations/extensions/shortcodes/shortcodes/accordion/views/view.php\";i:173;s:76:\"framework-customizations/extensions/shortcodes/shortcodes/column/options.php\";i:174;s:75:\"framework-customizations/extensions/shortcodes/shortcodes/column/static.php\";i:175;s:79:\"framework-customizations/extensions/shortcodes/shortcodes/column/views/view.php\";i:176;s:82:\"framework-customizations/extensions/shortcodes/shortcodes/testimonials/options.php\";i:177;s:81:\"framework-customizations/extensions/shortcodes/shortcodes/testimonials/static.php\";i:178;s:85:\"framework-customizations/extensions/shortcodes/shortcodes/testimonials/views/view.php\";i:179;s:82:\"framework-customizations/extensions/shortcodes/shortcodes/notification/options.php\";i:180;s:81:\"framework-customizations/extensions/shortcodes/shortcodes/notification/static.php\";i:181;s:85:\"framework-customizations/extensions/shortcodes/shortcodes/notification/views/view.php\";i:182;s:75:\"framework-customizations/extensions/shortcodes/shortcodes/steps/options.php\";i:183;s:74:\"framework-customizations/extensions/shortcodes/shortcodes/steps/static.php\";i:184;s:74:\"framework-customizations/extensions/shortcodes/shortcodes/steps/config.php\";i:185;s:78:\"framework-customizations/extensions/shortcodes/shortcodes/steps/views/view.php\";i:186;s:91:\"framework-customizations/extensions/shortcodes/shortcodes/media-item-horizontal/options.php\";i:187;s:90:\"framework-customizations/extensions/shortcodes/shortcodes/media-item-horizontal/config.php\";i:188;s:94:\"framework-customizations/extensions/shortcodes/shortcodes/media-item-horizontal/views/view.php\";i:189;s:76:\"framework-customizations/extensions/shortcodes/shortcodes/teaser/options.php\";i:190;s:75:\"framework-customizations/extensions/shortcodes/shortcodes/teaser/config.php\";i:191;s:79:\"framework-customizations/extensions/shortcodes/shortcodes/teaser/views/view.php\";i:192;s:77:\"framework-customizations/extensions/shortcodes/shortcodes/divider/options.php\";i:193;s:80:\"framework-customizations/extensions/shortcodes/shortcodes/divider/views/view.php\";i:194;s:82:\"framework-customizations/extensions/shortcodes/shortcodes/teasers-tabs/options.php\";i:195;s:81:\"framework-customizations/extensions/shortcodes/shortcodes/teasers-tabs/static.php\";i:196;s:81:\"framework-customizations/extensions/shortcodes/shortcodes/teasers-tabs/config.php\";i:197;s:85:\"framework-customizations/extensions/shortcodes/shortcodes/teasers-tabs/views/view.php\";i:198;s:85:\"framework-customizations/extensions/shortcodes/shortcodes/special-heading/options.php\";i:199;s:84:\"framework-customizations/extensions/shortcodes/shortcodes/special-heading/static.php\";i:200;s:88:\"framework-customizations/extensions/shortcodes/shortcodes/special-heading/views/view.php\";i:201;s:89:\"framework-customizations/extensions/shortcodes/shortcodes/media-item-vertical/options.php\";i:202;s:88:\"framework-customizations/extensions/shortcodes/shortcodes/media-item-vertical/config.php\";i:203;s:92:\"framework-customizations/extensions/shortcodes/shortcodes/media-item-vertical/views/view.php\";i:204;s:74:\"framework-customizations/extensions/shortcodes/shortcodes/tabs/options.php\";i:205;s:73:\"framework-customizations/extensions/shortcodes/shortcodes/tabs/static.php\";i:206;s:77:\"framework-customizations/extensions/shortcodes/shortcodes/tabs/views/view.php\";i:207;s:74:\"framework-customizations/extensions/shortcodes/shortcodes/icon/options.php\";i:208;s:73:\"framework-customizations/extensions/shortcodes/shortcodes/icon/static.php\";i:209;s:77:\"framework-customizations/extensions/shortcodes/shortcodes/icon/views/view.php\";i:210;s:81:\"framework-customizations/extensions/shortcodes/shortcodes/calendar/views/view.php\";i:211;s:80:\"framework-customizations/extensions/shortcodes/shortcodes/widget-area/config.php\";i:212;s:84:\"framework-customizations/extensions/shortcodes/shortcodes/widget-area/views/view.php\";i:213;s:81:\"framework-customizations/extensions/shortcodes/shortcodes/media-video/options.php\";i:214;s:80:\"framework-customizations/extensions/shortcodes/shortcodes/media-video/config.php\";i:215;s:84:\"framework-customizations/extensions/shortcodes/shortcodes/media-video/views/view.php\";i:216;s:76:\"framework-customizations/extensions/shortcodes/shortcodes/button/options.php\";i:217;s:75:\"framework-customizations/extensions/shortcodes/shortcodes/button/static.php\";i:218;s:79:\"framework-customizations/extensions/shortcodes/shortcodes/button/views/view.php\";i:219;s:54:\"framework-customizations/extensions/builder/static.php\";i:220;s:54:\"framework-customizations/extensions/builder/config.php\";i:221;s:64:\"framework-customizations/extensions/megamenu/views/item-link.php\";i:222;s:94:\"framework-customizations/extensions/media/extensions/slider/extensions/theme-slider/config.php\";i:223;s:96:\"framework-customizations/extensions/media/extensions/slider/extensions/theme-slider/manifest.php\";i:224;s:103:\"framework-customizations/extensions/media/extensions/slider/extensions/theme-slider/options/options.php\";i:225;s:102:\"framework-customizations/extensions/media/extensions/slider/extensions/theme-slider/options/custom.php\";i:226;s:106:\"framework-customizations/extensions/media/extensions/slider/extensions/theme-slider/views/theme-slider.php\";i:227;s:58:\"framework-customizations/extensions/breadcrumbs/static.php\";i:228;s:69:\"framework-customizations/extensions/breadcrumbs/views/breadcrumbs.php\";i:229;s:41:\"framework-customizations/theme/config.php\";i:230;s:43:\"framework-customizations/theme/manifest.php\";i:231;s:53:\"framework-customizations/theme/options/customizer.php\";i:232;s:75:\"framework-customizations/theme/options/taxonomies/fw-portfolio-category.php\";i:233;s:53:\"framework-customizations/theme/options/posts/post.php\";i:234;s:53:\"framework-customizations/theme/options/posts/page.php\";i:235;s:29:\"woocommerce/notices/error.php\";i:236;s:30:\"woocommerce/notices/notice.php\";i:237;s:31:\"woocommerce/notices/success.php\";i:238;s:37:\"woocommerce/checkout/review-order.php\";i:239;s:38:\"woocommerce/checkout/form-shipping.php\";i:240;s:35:\"woocommerce/single-product/meta.php\";i:241;s:38:\"woocommerce/single-product/related.php\";i:242;s:39:\"woocommerce/single-product/up-sells.php\";i:243;s:51:\"woocommerce/single-product/add-to-cart/variable.php\";i:244;s:32:\"woocommerce/cart/cart-totals.php\";i:245;s:25:\"woocommerce/cart/cart.php\";}s:7:\"max_sel\";N;s:7:\"imports\";a:2:{s:5:\"child\";a:0:{}s:5:\"parnt\";a:0:{}}s:13:\"child_version\";s:5:\"1.0.0\";s:12:\"child_author\";s:11:\"MWTemplates\";s:10:\"child_name\";s:16:\"DotDigital Child\";s:14:\"child_themeuri\";s:21:\"http://localhost/beta\";s:15:\"child_authoruri\";s:30:\"http://modernwebtemplates.com/\";s:11:\"child_descr\";s:38:\"Dotdigital - IT Agency Wordpress Theme\";s:10:\"child_tags\";s:73:\"custom-header,left-sidebar,right-sidebar,post-formats,full-width-template\";s:5:\"parnt\";s:10:\"dotdigital\";s:5:\"child\";s:16:\"dotdigital-child\";s:10:\"configtype\";s:5:\"theme\";s:6:\"valkey\";i:1735;s:7:\"rulekey\";i:102;s:5:\"qskey\";i:2509;s:6:\"selkey\";i:2474;s:8:\"querykey\";i:18;s:8:\"tokenkey\";N;s:6:\"recent\";N;s:9:\"converted\";i:1;s:5:\"fsize\";i:358;s:7:\"version\";s:5:\"2.2.9\";}","no");
INSERT INTO `wp_options` VALUES("2182","chld_thm_cfg_options_dict_qs","a:2509:{i:1;s:3:\"1:1\";i:2;s:3:\"1:2\";i:3;s:3:\"1:3\";i:4;s:3:\"1:4\";i:5;s:3:\"1:5\";i:6;s:3:\"1:6\";i:7;s:3:\"1:7\";i:8;s:3:\"1:8\";i:9;s:3:\"1:9\";i:10;s:4:\"1:10\";i:11;s:4:\"1:11\";i:12;s:4:\"1:12\";i:13;s:4:\"1:13\";i:14;s:4:\"1:14\";i:15;s:4:\"1:15\";i:16;s:4:\"1:16\";i:17;s:4:\"1:17\";i:18;s:4:\"1:18\";i:19;s:4:\"1:19\";i:20;s:4:\"1:20\";i:21;s:4:\"1:21\";i:22;s:4:\"1:22\";i:23;s:4:\"1:23\";i:24;s:4:\"1:24\";i:25;s:4:\"1:25\";i:26;s:4:\"1:26\";i:27;s:4:\"1:27\";i:28;s:4:\"1:28\";i:29;s:4:\"1:29\";i:30;s:4:\"1:30\";i:31;s:4:\"1:31\";i:32;s:4:\"1:32\";i:33;s:4:\"1:33\";i:34;s:4:\"1:34\";i:35;s:4:\"1:35\";i:36;s:4:\"1:36\";i:37;s:4:\"1:37\";i:38;s:4:\"1:38\";i:39;s:4:\"1:39\";i:40;s:4:\"1:40\";i:41;s:4:\"1:41\";i:42;s:4:\"1:42\";i:43;s:4:\"1:43\";i:44;s:4:\"1:44\";i:45;s:4:\"1:45\";i:46;s:4:\"1:46\";i:47;s:4:\"1:47\";i:48;s:4:\"1:48\";i:49;s:4:\"1:49\";i:50;s:4:\"1:50\";i:51;s:4:\"1:51\";i:52;s:4:\"1:52\";i:53;s:4:\"1:53\";i:54;s:4:\"1:54\";i:55;s:4:\"1:55\";i:56;s:4:\"1:56\";i:57;s:4:\"1:57\";i:58;s:4:\"1:58\";i:59;s:4:\"1:59\";i:60;s:4:\"1:60\";i:61;s:4:\"1:61\";i:62;s:4:\"1:62\";i:63;s:4:\"1:63\";i:64;s:4:\"1:64\";i:65;s:4:\"1:65\";i:66;s:4:\"1:66\";i:67;s:4:\"1:67\";i:68;s:4:\"1:68\";i:69;s:4:\"1:69\";i:70;s:4:\"1:70\";i:71;s:4:\"1:71\";i:72;s:4:\"1:72\";i:73;s:4:\"1:73\";i:74;s:4:\"1:74\";i:75;s:4:\"1:75\";i:76;s:4:\"1:76\";i:77;s:4:\"1:77\";i:78;s:4:\"1:78\";i:79;s:4:\"1:79\";i:80;s:4:\"1:80\";i:81;s:4:\"1:81\";i:82;s:4:\"1:82\";i:83;s:4:\"1:83\";i:84;s:4:\"1:84\";i:85;s:4:\"1:85\";i:86;s:4:\"1:86\";i:87;s:4:\"1:87\";i:88;s:4:\"1:88\";i:89;s:4:\"1:89\";i:90;s:4:\"1:90\";i:91;s:4:\"1:91\";i:92;s:4:\"1:92\";i:93;s:4:\"1:93\";i:94;s:4:\"1:94\";i:95;s:4:\"1:95\";i:96;s:4:\"1:96\";i:97;s:4:\"1:97\";i:98;s:4:\"1:98\";i:99;s:4:\"1:99\";i:100;s:5:\"1:100\";i:101;s:5:\"1:101\";i:102;s:5:\"1:102\";i:103;s:5:\"1:103\";i:104;s:5:\"1:104\";i:105;s:5:\"1:105\";i:106;s:5:\"1:106\";i:107;s:5:\"1:107\";i:108;s:5:\"1:108\";i:109;s:5:\"1:109\";i:110;s:5:\"1:110\";i:111;s:5:\"1:111\";i:112;s:5:\"1:112\";i:113;s:5:\"1:113\";i:114;s:5:\"1:114\";i:115;s:5:\"1:115\";i:116;s:5:\"1:116\";i:117;s:5:\"1:117\";i:118;s:5:\"1:118\";i:119;s:5:\"1:119\";i:120;s:5:\"1:120\";i:121;s:5:\"1:121\";i:122;s:5:\"1:122\";i:123;s:5:\"1:123\";i:124;s:5:\"1:124\";i:125;s:5:\"1:125\";i:126;s:5:\"1:126\";i:127;s:5:\"1:127\";i:128;s:5:\"1:128\";i:129;s:5:\"1:129\";i:130;s:5:\"1:130\";i:131;s:5:\"1:131\";i:132;s:5:\"1:132\";i:133;s:5:\"1:133\";i:134;s:5:\"1:134\";i:135;s:5:\"1:135\";i:136;s:5:\"1:136\";i:137;s:5:\"1:137\";i:138;s:5:\"1:138\";i:139;s:5:\"1:139\";i:140;s:5:\"1:140\";i:141;s:5:\"1:141\";i:142;s:5:\"1:142\";i:143;s:5:\"1:143\";i:144;s:5:\"1:144\";i:145;s:5:\"1:145\";i:146;s:5:\"1:146\";i:147;s:5:\"1:147\";i:148;s:5:\"1:148\";i:149;s:5:\"1:149\";i:150;s:5:\"1:150\";i:151;s:5:\"1:151\";i:152;s:5:\"1:152\";i:153;s:5:\"1:153\";i:154;s:5:\"1:154\";i:155;s:5:\"1:155\";i:156;s:5:\"1:156\";i:157;s:5:\"1:157\";i:158;s:5:\"1:158\";i:159;s:5:\"1:159\";i:160;s:5:\"1:160\";i:161;s:5:\"1:161\";i:162;s:5:\"1:162\";i:163;s:5:\"1:163\";i:164;s:5:\"1:164\";i:165;s:5:\"1:165\";i:166;s:5:\"1:166\";i:167;s:5:\"1:167\";i:168;s:5:\"1:168\";i:169;s:5:\"1:169\";i:170;s:5:\"1:170\";i:171;s:5:\"1:171\";i:172;s:5:\"1:172\";i:173;s:5:\"1:173\";i:174;s:5:\"1:174\";i:175;s:5:\"1:175\";i:176;s:5:\"1:176\";i:177;s:5:\"1:177\";i:178;s:5:\"1:178\";i:179;s:5:\"1:179\";i:180;s:5:\"1:180\";i:181;s:5:\"1:181\";i:182;s:5:\"1:182\";i:183;s:5:\"1:183\";i:184;s:5:\"1:184\";i:185;s:5:\"1:185\";i:186;s:5:\"1:186\";i:187;s:5:\"1:187\";i:188;s:5:\"1:188\";i:189;s:5:\"1:189\";i:190;s:5:\"1:190\";i:191;s:5:\"1:191\";i:192;s:5:\"1:192\";i:193;s:5:\"1:193\";i:194;s:5:\"1:194\";i:195;s:5:\"1:195\";i:196;s:5:\"1:196\";i:197;s:5:\"1:197\";i:198;s:5:\"1:198\";i:199;s:5:\"1:199\";i:200;s:5:\"1:200\";i:201;s:5:\"1:201\";i:202;s:5:\"1:202\";i:203;s:5:\"1:203\";i:204;s:5:\"1:204\";i:205;s:5:\"1:205\";i:206;s:5:\"1:206\";i:207;s:5:\"1:207\";i:208;s:5:\"1:208\";i:209;s:5:\"1:209\";i:210;s:5:\"1:210\";i:211;s:5:\"1:211\";i:212;s:5:\"1:212\";i:213;s:5:\"1:213\";i:214;s:5:\"1:214\";i:215;s:5:\"1:215\";i:216;s:5:\"1:216\";i:217;s:5:\"1:217\";i:218;s:5:\"1:218\";i:219;s:5:\"1:219\";i:220;s:5:\"1:220\";i:221;s:5:\"1:221\";i:222;s:5:\"1:222\";i:223;s:5:\"1:223\";i:224;s:5:\"1:224\";i:225;s:5:\"1:225\";i:226;s:5:\"1:226\";i:227;s:5:\"1:227\";i:228;s:5:\"1:228\";i:229;s:5:\"1:229\";i:230;s:5:\"1:230\";i:231;s:5:\"1:231\";i:232;s:5:\"1:232\";i:233;s:5:\"1:233\";i:234;s:5:\"1:234\";i:235;s:5:\"1:235\";i:236;s:5:\"1:236\";i:237;s:5:\"1:237\";i:238;s:5:\"1:238\";i:239;s:5:\"1:239\";i:240;s:5:\"1:240\";i:241;s:5:\"1:241\";i:242;s:5:\"1:242\";i:243;s:5:\"1:243\";i:244;s:5:\"1:244\";i:245;s:5:\"1:245\";i:246;s:5:\"1:246\";i:247;s:5:\"1:247\";i:248;s:5:\"1:248\";i:249;s:5:\"1:249\";i:250;s:5:\"1:250\";i:251;s:5:\"1:251\";i:252;s:5:\"1:252\";i:253;s:5:\"1:253\";i:254;s:5:\"1:254\";i:255;s:5:\"1:255\";i:256;s:5:\"1:256\";i:257;s:5:\"1:257\";i:258;s:5:\"1:258\";i:259;s:5:\"1:259\";i:260;s:5:\"1:260\";i:261;s:5:\"1:261\";i:262;s:5:\"1:262\";i:263;s:5:\"1:263\";i:264;s:5:\"1:264\";i:265;s:5:\"1:265\";i:266;s:5:\"1:266\";i:267;s:5:\"1:267\";i:268;s:5:\"1:268\";i:269;s:5:\"1:269\";i:270;s:5:\"1:270\";i:271;s:5:\"1:271\";i:272;s:5:\"1:272\";i:273;s:5:\"1:273\";i:274;s:5:\"1:274\";i:275;s:5:\"1:275\";i:276;s:5:\"1:276\";i:277;s:5:\"1:277\";i:278;s:5:\"1:278\";i:279;s:5:\"1:279\";i:280;s:5:\"1:280\";i:281;s:5:\"1:281\";i:282;s:5:\"1:282\";i:283;s:5:\"1:283\";i:284;s:5:\"1:284\";i:285;s:5:\"1:285\";i:286;s:5:\"1:286\";i:287;s:5:\"1:287\";i:288;s:5:\"1:288\";i:289;s:5:\"1:289\";i:290;s:5:\"1:290\";i:291;s:5:\"1:291\";i:292;s:5:\"1:292\";i:293;s:5:\"1:293\";i:294;s:5:\"1:294\";i:295;s:5:\"1:295\";i:296;s:5:\"1:296\";i:297;s:5:\"1:297\";i:298;s:5:\"1:298\";i:299;s:5:\"1:299\";i:300;s:5:\"1:300\";i:301;s:5:\"1:301\";i:302;s:5:\"1:302\";i:303;s:5:\"1:303\";i:304;s:5:\"1:304\";i:305;s:5:\"1:305\";i:306;s:5:\"1:306\";i:307;s:5:\"1:307\";i:308;s:5:\"1:308\";i:309;s:5:\"1:309\";i:310;s:5:\"1:310\";i:311;s:5:\"1:311\";i:312;s:5:\"1:312\";i:313;s:5:\"1:313\";i:314;s:5:\"1:314\";i:315;s:5:\"1:315\";i:316;s:5:\"1:316\";i:317;s:5:\"1:317\";i:318;s:5:\"1:318\";i:319;s:5:\"1:319\";i:320;s:5:\"1:320\";i:321;s:5:\"1:321\";i:322;s:5:\"1:322\";i:323;s:5:\"1:323\";i:324;s:5:\"1:324\";i:325;s:5:\"1:325\";i:326;s:5:\"1:326\";i:327;s:5:\"1:327\";i:328;s:5:\"1:328\";i:329;s:5:\"1:329\";i:330;s:5:\"1:330\";i:331;s:5:\"1:331\";i:332;s:5:\"1:332\";i:333;s:5:\"1:333\";i:334;s:5:\"1:334\";i:335;s:5:\"1:335\";i:336;s:5:\"1:336\";i:337;s:5:\"1:337\";i:338;s:5:\"1:338\";i:339;s:5:\"1:339\";i:340;s:5:\"1:340\";i:341;s:5:\"1:341\";i:342;s:5:\"1:342\";i:343;s:5:\"1:343\";i:344;s:5:\"1:344\";i:345;s:5:\"1:345\";i:346;s:5:\"1:346\";i:347;s:5:\"1:347\";i:348;s:5:\"1:348\";i:349;s:5:\"1:349\";i:350;s:5:\"1:350\";i:351;s:5:\"1:351\";i:352;s:5:\"1:352\";i:353;s:5:\"1:353\";i:354;s:5:\"1:354\";i:355;s:5:\"1:355\";i:356;s:5:\"1:356\";i:357;s:5:\"1:357\";i:358;s:5:\"1:358\";i:359;s:5:\"1:359\";i:360;s:5:\"1:360\";i:361;s:5:\"1:361\";i:362;s:5:\"1:362\";i:363;s:5:\"1:363\";i:364;s:5:\"1:364\";i:365;s:5:\"1:365\";i:366;s:5:\"1:366\";i:367;s:5:\"1:367\";i:368;s:5:\"1:368\";i:369;s:5:\"1:369\";i:370;s:5:\"1:370\";i:371;s:5:\"1:371\";i:372;s:5:\"1:372\";i:373;s:5:\"1:373\";i:374;s:5:\"1:374\";i:375;s:5:\"1:375\";i:376;s:5:\"1:376\";i:377;s:5:\"1:377\";i:378;s:5:\"1:378\";i:379;s:5:\"1:379\";i:380;s:5:\"1:380\";i:381;s:5:\"1:381\";i:382;s:5:\"1:382\";i:383;s:5:\"1:383\";i:384;s:5:\"1:384\";i:385;s:5:\"1:385\";i:386;s:5:\"1:386\";i:387;s:5:\"1:387\";i:388;s:5:\"1:388\";i:389;s:5:\"1:389\";i:390;s:5:\"1:390\";i:391;s:5:\"1:391\";i:392;s:5:\"1:392\";i:393;s:5:\"1:393\";i:394;s:5:\"1:394\";i:395;s:5:\"1:395\";i:396;s:5:\"1:396\";i:397;s:5:\"1:397\";i:398;s:5:\"1:398\";i:399;s:5:\"1:399\";i:400;s:5:\"1:400\";i:401;s:5:\"1:401\";i:402;s:5:\"1:402\";i:403;s:5:\"1:403\";i:404;s:5:\"1:404\";i:405;s:5:\"1:405\";i:406;s:5:\"1:406\";i:407;s:5:\"1:407\";i:408;s:5:\"1:408\";i:409;s:5:\"1:409\";i:410;s:5:\"1:410\";i:411;s:5:\"1:411\";i:412;s:5:\"1:412\";i:413;s:5:\"1:413\";i:414;s:5:\"1:414\";i:415;s:5:\"1:415\";i:416;s:5:\"1:416\";i:417;s:5:\"1:417\";i:418;s:5:\"1:418\";i:419;s:5:\"1:419\";i:420;s:5:\"1:420\";i:421;s:5:\"1:421\";i:422;s:5:\"1:422\";i:423;s:5:\"1:423\";i:424;s:5:\"1:424\";i:425;s:5:\"1:425\";i:426;s:5:\"1:426\";i:427;s:5:\"1:427\";i:428;s:5:\"1:428\";i:429;s:5:\"1:429\";i:430;s:5:\"1:430\";i:431;s:5:\"1:431\";i:432;s:5:\"1:432\";i:433;s:5:\"1:433\";i:434;s:5:\"1:434\";i:435;s:5:\"1:435\";i:436;s:5:\"1:436\";i:437;s:5:\"1:437\";i:438;s:5:\"1:438\";i:439;s:5:\"1:439\";i:440;s:5:\"1:440\";i:441;s:5:\"1:441\";i:442;s:5:\"1:442\";i:443;s:5:\"1:443\";i:444;s:5:\"1:444\";i:445;s:5:\"1:445\";i:446;s:5:\"1:446\";i:447;s:5:\"1:447\";i:448;s:5:\"1:448\";i:449;s:5:\"1:449\";i:450;s:5:\"1:450\";i:451;s:5:\"1:451\";i:452;s:5:\"1:452\";i:453;s:5:\"1:453\";i:454;s:5:\"1:454\";i:455;s:5:\"1:455\";i:456;s:5:\"1:456\";i:457;s:5:\"1:457\";i:458;s:5:\"1:458\";i:459;s:5:\"1:459\";i:460;s:5:\"1:460\";i:461;s:5:\"1:461\";i:462;s:5:\"1:462\";i:463;s:5:\"1:463\";i:464;s:5:\"1:464\";i:465;s:5:\"1:465\";i:466;s:5:\"1:466\";i:467;s:5:\"1:467\";i:468;s:5:\"1:468\";i:469;s:5:\"1:469\";i:470;s:5:\"1:470\";i:471;s:5:\"1:471\";i:472;s:5:\"1:472\";i:473;s:5:\"1:473\";i:474;s:5:\"1:474\";i:475;s:5:\"1:475\";i:476;s:5:\"1:476\";i:477;s:5:\"1:477\";i:478;s:5:\"1:478\";i:479;s:5:\"1:479\";i:480;s:5:\"1:480\";i:481;s:5:\"1:481\";i:482;s:5:\"1:482\";i:483;s:5:\"1:483\";i:484;s:5:\"1:484\";i:485;s:5:\"1:485\";i:486;s:5:\"1:486\";i:487;s:5:\"1:487\";i:488;s:5:\"1:488\";i:489;s:5:\"1:489\";i:490;s:5:\"1:490\";i:491;s:5:\"1:491\";i:492;s:5:\"1:492\";i:493;s:5:\"1:493\";i:494;s:5:\"1:494\";i:495;s:5:\"1:495\";i:496;s:5:\"1:496\";i:497;s:5:\"1:497\";i:498;s:5:\"1:498\";i:499;s:5:\"1:499\";i:500;s:5:\"1:500\";i:501;s:5:\"1:501\";i:502;s:5:\"1:502\";i:503;s:5:\"1:503\";i:504;s:5:\"1:504\";i:505;s:5:\"1:505\";i:506;s:5:\"1:506\";i:507;s:5:\"1:507\";i:508;s:5:\"1:508\";i:509;s:5:\"1:509\";i:510;s:5:\"1:510\";i:511;s:5:\"1:511\";i:512;s:5:\"1:512\";i:513;s:5:\"1:513\";i:514;s:5:\"1:514\";i:515;s:5:\"1:515\";i:516;s:5:\"1:516\";i:517;s:5:\"1:517\";i:518;s:5:\"1:518\";i:519;s:5:\"1:519\";i:520;s:5:\"1:520\";i:521;s:5:\"1:521\";i:522;s:5:\"1:522\";i:523;s:5:\"1:523\";i:524;s:5:\"1:524\";i:525;s:5:\"1:525\";i:526;s:5:\"1:526\";i:527;s:5:\"1:527\";i:528;s:5:\"1:528\";i:529;s:5:\"1:529\";i:530;s:5:\"1:530\";i:531;s:5:\"1:531\";i:532;s:5:\"1:532\";i:533;s:5:\"1:533\";i:534;s:5:\"1:534\";i:535;s:5:\"1:535\";i:536;s:5:\"1:536\";i:537;s:5:\"1:537\";i:538;s:5:\"1:538\";i:539;s:5:\"1:539\";i:540;s:5:\"1:540\";i:541;s:5:\"1:541\";i:542;s:5:\"1:542\";i:543;s:5:\"1:543\";i:544;s:5:\"1:544\";i:545;s:5:\"1:545\";i:546;s:5:\"1:546\";i:547;s:5:\"1:547\";i:548;s:5:\"1:548\";i:549;s:5:\"1:549\";i:550;s:5:\"1:550\";i:551;s:5:\"1:551\";i:552;s:5:\"1:552\";i:553;s:5:\"1:553\";i:554;s:5:\"1:554\";i:555;s:5:\"1:555\";i:556;s:5:\"1:556\";i:557;s:5:\"1:557\";i:558;s:5:\"1:558\";i:559;s:5:\"1:559\";i:560;s:5:\"1:560\";i:561;s:5:\"1:561\";i:562;s:5:\"1:562\";i:563;s:5:\"1:563\";i:564;s:5:\"1:564\";i:565;s:5:\"1:565\";i:566;s:5:\"1:566\";i:567;s:5:\"1:567\";i:568;s:5:\"1:568\";i:569;s:5:\"1:569\";i:570;s:5:\"1:570\";i:571;s:5:\"1:571\";i:572;s:5:\"1:572\";i:573;s:5:\"1:573\";i:574;s:5:\"1:574\";i:575;s:5:\"1:575\";i:576;s:5:\"1:576\";i:577;s:5:\"1:577\";i:578;s:5:\"1:578\";i:579;s:5:\"1:579\";i:580;s:5:\"1:580\";i:581;s:5:\"1:581\";i:582;s:5:\"1:582\";i:583;s:5:\"1:583\";i:584;s:5:\"1:584\";i:585;s:5:\"1:585\";i:586;s:5:\"1:586\";i:587;s:5:\"1:587\";i:588;s:5:\"1:588\";i:589;s:5:\"1:589\";i:590;s:5:\"1:590\";i:591;s:5:\"1:591\";i:592;s:5:\"1:592\";i:593;s:5:\"1:593\";i:594;s:5:\"1:594\";i:595;s:5:\"1:595\";i:596;s:5:\"1:596\";i:597;s:5:\"1:597\";i:598;s:5:\"1:598\";i:599;s:5:\"1:599\";i:600;s:5:\"1:600\";i:601;s:5:\"1:601\";i:602;s:5:\"1:602\";i:603;s:5:\"1:603\";i:604;s:5:\"1:604\";i:605;s:5:\"1:605\";i:606;s:5:\"1:606\";i:607;s:5:\"1:607\";i:608;s:5:\"1:608\";i:609;s:5:\"1:609\";i:610;s:5:\"1:610\";i:611;s:5:\"1:611\";i:612;s:5:\"1:612\";i:613;s:5:\"1:613\";i:614;s:5:\"1:614\";i:615;s:5:\"1:615\";i:616;s:5:\"1:616\";i:617;s:5:\"1:617\";i:618;s:5:\"1:618\";i:619;s:5:\"1:619\";i:620;s:5:\"1:620\";i:621;s:5:\"1:621\";i:622;s:5:\"1:622\";i:623;s:5:\"1:623\";i:624;s:5:\"1:624\";i:625;s:5:\"1:625\";i:626;s:5:\"1:626\";i:627;s:5:\"1:627\";i:628;s:5:\"1:628\";i:629;s:5:\"1:629\";i:630;s:5:\"1:630\";i:631;s:5:\"1:631\";i:632;s:5:\"1:632\";i:633;s:5:\"1:633\";i:634;s:5:\"1:634\";i:635;s:5:\"1:635\";i:636;s:5:\"1:636\";i:637;s:5:\"1:637\";i:638;s:5:\"1:638\";i:639;s:5:\"1:639\";i:640;s:5:\"1:640\";i:641;s:5:\"1:641\";i:642;s:5:\"1:642\";i:643;s:5:\"1:643\";i:644;s:5:\"1:644\";i:645;s:5:\"1:645\";i:646;s:5:\"1:646\";i:647;s:5:\"1:647\";i:648;s:5:\"1:648\";i:649;s:5:\"1:649\";i:650;s:5:\"1:650\";i:651;s:5:\"1:651\";i:652;s:5:\"1:652\";i:653;s:5:\"1:653\";i:654;s:5:\"1:654\";i:655;s:5:\"1:655\";i:656;s:5:\"1:656\";i:657;s:5:\"1:657\";i:658;s:5:\"1:658\";i:659;s:5:\"1:659\";i:660;s:5:\"1:660\";i:661;s:5:\"1:661\";i:662;s:5:\"1:662\";i:663;s:5:\"1:663\";i:664;s:5:\"1:664\";i:665;s:5:\"1:665\";i:666;s:5:\"1:666\";i:667;s:5:\"1:667\";i:668;s:5:\"1:668\";i:669;s:5:\"1:669\";i:670;s:5:\"1:670\";i:671;s:5:\"1:671\";i:672;s:5:\"1:672\";i:673;s:5:\"1:673\";i:674;s:5:\"1:674\";i:675;s:5:\"1:675\";i:676;s:5:\"1:676\";i:677;s:5:\"1:677\";i:678;s:5:\"1:678\";i:679;s:5:\"1:679\";i:680;s:5:\"1:680\";i:681;s:5:\"1:681\";i:682;s:5:\"1:682\";i:683;s:5:\"1:683\";i:684;s:5:\"1:684\";i:685;s:5:\"1:685\";i:686;s:5:\"1:686\";i:687;s:5:\"1:687\";i:688;s:5:\"1:688\";i:689;s:5:\"1:689\";i:690;s:5:\"1:690\";i:691;s:5:\"1:691\";i:692;s:5:\"1:692\";i:693;s:5:\"1:693\";i:694;s:5:\"1:694\";i:695;s:5:\"1:695\";i:696;s:5:\"1:696\";i:697;s:5:\"1:697\";i:698;s:5:\"1:698\";i:699;s:5:\"1:699\";i:700;s:5:\"1:700\";i:701;s:5:\"1:701\";i:702;s:5:\"1:702\";i:703;s:5:\"1:703\";i:704;s:5:\"1:704\";i:705;s:5:\"1:705\";i:706;s:5:\"1:706\";i:707;s:5:\"1:707\";i:708;s:5:\"1:708\";i:709;s:5:\"1:709\";i:710;s:5:\"1:710\";i:711;s:5:\"1:711\";i:712;s:5:\"1:712\";i:713;s:5:\"1:713\";i:714;s:5:\"1:714\";i:715;s:5:\"1:715\";i:716;s:5:\"1:716\";i:717;s:5:\"1:717\";i:718;s:5:\"1:718\";i:719;s:5:\"1:719\";i:720;s:5:\"1:720\";i:721;s:5:\"1:721\";i:722;s:5:\"1:722\";i:723;s:5:\"1:723\";i:724;s:5:\"1:724\";i:725;s:5:\"1:725\";i:726;s:5:\"1:726\";i:727;s:5:\"1:727\";i:728;s:5:\"1:728\";i:729;s:5:\"1:729\";i:730;s:5:\"1:730\";i:731;s:5:\"1:731\";i:732;s:5:\"1:732\";i:733;s:5:\"1:733\";i:734;s:5:\"1:734\";i:735;s:5:\"1:735\";i:736;s:5:\"1:736\";i:737;s:5:\"1:737\";i:738;s:5:\"1:738\";i:739;s:5:\"1:739\";i:740;s:5:\"1:740\";i:741;s:5:\"1:741\";i:742;s:5:\"1:742\";i:743;s:5:\"1:743\";i:744;s:5:\"1:744\";i:745;s:5:\"1:745\";i:746;s:5:\"1:746\";i:747;s:5:\"1:747\";i:748;s:5:\"1:748\";i:749;s:5:\"1:749\";i:750;s:5:\"1:750\";i:751;s:5:\"1:751\";i:752;s:5:\"1:752\";i:753;s:5:\"1:753\";i:754;s:5:\"1:754\";i:755;s:5:\"1:755\";i:756;s:5:\"1:756\";i:757;s:5:\"1:757\";i:758;s:5:\"1:758\";i:759;s:5:\"1:759\";i:760;s:5:\"1:760\";i:761;s:5:\"1:761\";i:762;s:5:\"1:762\";i:763;s:5:\"1:763\";i:764;s:5:\"1:764\";i:765;s:5:\"1:765\";i:766;s:5:\"1:766\";i:767;s:5:\"1:767\";i:768;s:5:\"1:768\";i:769;s:5:\"1:769\";i:770;s:5:\"1:770\";i:771;s:5:\"1:771\";i:772;s:5:\"1:772\";i:773;s:5:\"1:773\";i:774;s:5:\"1:774\";i:775;s:5:\"1:775\";i:776;s:5:\"1:776\";i:777;s:5:\"1:777\";i:778;s:5:\"1:778\";i:779;s:5:\"1:779\";i:780;s:5:\"1:780\";i:781;s:5:\"1:781\";i:782;s:5:\"1:782\";i:783;s:5:\"1:783\";i:784;s:5:\"1:784\";i:785;s:5:\"1:785\";i:786;s:5:\"1:786\";i:787;s:5:\"1:787\";i:788;s:5:\"1:788\";i:789;s:5:\"1:789\";i:790;s:5:\"1:790\";i:791;s:5:\"1:791\";i:792;s:5:\"1:792\";i:793;s:5:\"1:793\";i:794;s:5:\"1:794\";i:795;s:5:\"1:795\";i:796;s:5:\"1:796\";i:797;s:5:\"1:797\";i:798;s:5:\"1:798\";i:799;s:5:\"1:799\";i:800;s:5:\"1:800\";i:801;s:5:\"1:801\";i:802;s:5:\"1:802\";i:803;s:5:\"1:803\";i:804;s:5:\"1:804\";i:805;s:5:\"1:805\";i:806;s:5:\"1:806\";i:807;s:5:\"1:807\";i:808;s:5:\"1:808\";i:809;s:5:\"1:809\";i:810;s:5:\"1:810\";i:811;s:5:\"1:811\";i:812;s:5:\"1:812\";i:813;s:5:\"1:813\";i:814;s:5:\"1:814\";i:815;s:5:\"1:815\";i:816;s:5:\"1:816\";i:817;s:5:\"1:817\";i:818;s:5:\"1:818\";i:819;s:5:\"1:819\";i:820;s:5:\"1:820\";i:821;s:5:\"1:821\";i:822;s:5:\"1:822\";i:823;s:5:\"1:823\";i:824;s:5:\"1:824\";i:825;s:5:\"1:825\";i:826;s:5:\"1:826\";i:827;s:5:\"1:827\";i:828;s:5:\"1:828\";i:829;s:5:\"1:829\";i:830;s:5:\"1:830\";i:831;s:5:\"1:831\";i:832;s:5:\"1:832\";i:833;s:5:\"1:833\";i:834;s:5:\"1:834\";i:835;s:5:\"1:835\";i:836;s:5:\"1:836\";i:837;s:5:\"1:837\";i:838;s:5:\"1:838\";i:839;s:5:\"1:839\";i:840;s:5:\"1:840\";i:841;s:5:\"1:841\";i:842;s:5:\"1:842\";i:843;s:5:\"1:843\";i:844;s:5:\"1:844\";i:845;s:5:\"1:845\";i:846;s:5:\"1:846\";i:847;s:5:\"1:847\";i:848;s:5:\"1:848\";i:849;s:5:\"1:849\";i:850;s:5:\"1:850\";i:851;s:5:\"1:851\";i:852;s:5:\"1:852\";i:853;s:5:\"1:853\";i:854;s:5:\"1:854\";i:855;s:5:\"1:855\";i:856;s:5:\"1:856\";i:857;s:5:\"1:857\";i:858;s:5:\"1:858\";i:859;s:5:\"1:859\";i:860;s:5:\"1:860\";i:861;s:5:\"1:861\";i:862;s:5:\"1:862\";i:863;s:5:\"1:863\";i:864;s:5:\"1:864\";i:865;s:5:\"1:865\";i:866;s:5:\"1:866\";i:867;s:5:\"1:867\";i:868;s:5:\"1:868\";i:869;s:5:\"1:869\";i:870;s:5:\"1:870\";i:871;s:5:\"1:871\";i:872;s:5:\"1:872\";i:873;s:5:\"1:873\";i:874;s:5:\"1:874\";i:875;s:5:\"1:875\";i:876;s:5:\"1:876\";i:877;s:5:\"1:877\";i:878;s:5:\"1:878\";i:879;s:5:\"1:879\";i:880;s:5:\"1:880\";i:881;s:5:\"1:881\";i:882;s:5:\"1:882\";i:883;s:5:\"1:883\";i:884;s:5:\"1:884\";i:885;s:5:\"1:885\";i:886;s:5:\"1:886\";i:887;s:5:\"1:887\";i:888;s:5:\"1:888\";i:889;s:5:\"1:889\";i:890;s:5:\"1:890\";i:891;s:5:\"1:891\";i:892;s:5:\"1:892\";i:893;s:5:\"1:893\";i:894;s:5:\"1:894\";i:895;s:5:\"1:895\";i:896;s:5:\"1:896\";i:897;s:5:\"1:897\";i:898;s:5:\"1:898\";i:899;s:5:\"1:899\";i:900;s:5:\"1:900\";i:901;s:5:\"1:901\";i:902;s:5:\"1:902\";i:903;s:5:\"1:903\";i:904;s:5:\"1:904\";i:905;s:5:\"1:905\";i:906;s:5:\"1:906\";i:907;s:5:\"1:907\";i:908;s:5:\"1:908\";i:909;s:5:\"1:909\";i:910;s:5:\"1:910\";i:911;s:5:\"1:911\";i:912;s:5:\"1:912\";i:913;s:5:\"1:913\";i:914;s:5:\"1:914\";i:915;s:5:\"1:915\";i:916;s:5:\"1:916\";i:917;s:5:\"1:917\";i:918;s:5:\"1:918\";i:919;s:5:\"1:919\";i:920;s:5:\"1:920\";i:921;s:5:\"1:921\";i:922;s:5:\"1:922\";i:923;s:5:\"1:923\";i:924;s:5:\"1:924\";i:925;s:5:\"1:925\";i:926;s:5:\"1:926\";i:927;s:5:\"1:927\";i:928;s:5:\"1:928\";i:929;s:5:\"1:929\";i:930;s:5:\"1:930\";i:931;s:5:\"1:931\";i:932;s:5:\"1:932\";i:933;s:5:\"1:933\";i:934;s:5:\"1:934\";i:935;s:5:\"1:935\";i:936;s:5:\"1:936\";i:937;s:5:\"1:937\";i:938;s:5:\"1:938\";i:939;s:5:\"1:939\";i:940;s:5:\"1:940\";i:941;s:5:\"1:941\";i:942;s:5:\"1:942\";i:943;s:5:\"1:943\";i:944;s:5:\"1:944\";i:945;s:5:\"1:945\";i:946;s:5:\"1:946\";i:947;s:5:\"1:947\";i:948;s:5:\"1:948\";i:949;s:5:\"1:949\";i:950;s:5:\"1:950\";i:951;s:5:\"1:951\";i:952;s:5:\"1:952\";i:953;s:5:\"1:953\";i:954;s:5:\"1:954\";i:955;s:5:\"1:955\";i:956;s:5:\"1:956\";i:957;s:5:\"1:957\";i:958;s:5:\"1:958\";i:959;s:5:\"1:959\";i:960;s:5:\"1:960\";i:961;s:5:\"1:961\";i:962;s:5:\"1:962\";i:963;s:5:\"1:963\";i:964;s:5:\"1:964\";i:965;s:5:\"1:965\";i:966;s:5:\"1:966\";i:967;s:5:\"1:967\";i:968;s:5:\"1:968\";i:969;s:5:\"1:969\";i:970;s:5:\"1:970\";i:971;s:5:\"1:971\";i:972;s:5:\"1:972\";i:973;s:5:\"1:973\";i:974;s:5:\"1:974\";i:975;s:5:\"1:975\";i:976;s:5:\"1:976\";i:977;s:5:\"1:977\";i:978;s:5:\"1:978\";i:979;s:5:\"1:979\";i:980;s:5:\"1:980\";i:981;s:5:\"1:981\";i:982;s:5:\"1:982\";i:983;s:5:\"1:983\";i:984;s:5:\"1:984\";i:985;s:5:\"1:985\";i:986;s:5:\"1:986\";i:987;s:5:\"1:987\";i:988;s:5:\"1:988\";i:989;s:5:\"1:989\";i:990;s:5:\"1:990\";i:991;s:5:\"1:991\";i:992;s:5:\"1:992\";i:993;s:5:\"1:993\";i:994;s:5:\"1:994\";i:995;s:5:\"1:995\";i:996;s:5:\"1:996\";i:997;s:5:\"1:997\";i:998;s:5:\"1:998\";i:999;s:5:\"1:999\";i:1000;s:6:\"1:1000\";i:1001;s:6:\"1:1001\";i:1002;s:6:\"1:1002\";i:1003;s:6:\"1:1003\";i:1004;s:6:\"1:1004\";i:1005;s:6:\"1:1005\";i:1006;s:6:\"1:1006\";i:1007;s:6:\"1:1007\";i:1008;s:6:\"1:1008\";i:1009;s:6:\"1:1009\";i:1010;s:6:\"1:1010\";i:1011;s:6:\"1:1011\";i:1012;s:6:\"1:1012\";i:1013;s:6:\"1:1013\";i:1014;s:6:\"1:1014\";i:1015;s:6:\"1:1015\";i:1016;s:6:\"1:1016\";i:1017;s:6:\"1:1017\";i:1018;s:6:\"1:1018\";i:1019;s:6:\"1:1019\";i:1020;s:6:\"1:1020\";i:1021;s:6:\"1:1021\";i:1022;s:6:\"1:1022\";i:1023;s:6:\"1:1023\";i:1024;s:6:\"1:1024\";i:1025;s:6:\"1:1025\";i:1026;s:6:\"1:1026\";i:1027;s:6:\"1:1027\";i:1028;s:6:\"1:1028\";i:1029;s:6:\"1:1029\";i:1030;s:6:\"1:1030\";i:1031;s:6:\"1:1031\";i:1032;s:6:\"1:1032\";i:1033;s:6:\"1:1033\";i:1034;s:6:\"1:1034\";i:1035;s:6:\"1:1035\";i:1036;s:6:\"1:1036\";i:1037;s:6:\"1:1037\";i:1038;s:6:\"1:1038\";i:1039;s:6:\"1:1039\";i:1040;s:6:\"1:1040\";i:1041;s:6:\"1:1041\";i:1042;s:6:\"1:1042\";i:1043;s:6:\"1:1043\";i:1044;s:6:\"1:1044\";i:1045;s:6:\"1:1045\";i:1046;s:6:\"1:1046\";i:1047;s:6:\"1:1047\";i:1048;s:6:\"1:1048\";i:1049;s:6:\"1:1049\";i:1050;s:6:\"1:1050\";i:1051;s:6:\"1:1051\";i:1052;s:6:\"1:1052\";i:1053;s:6:\"1:1053\";i:1054;s:6:\"1:1054\";i:1055;s:6:\"1:1055\";i:1056;s:6:\"1:1056\";i:1057;s:6:\"1:1057\";i:1058;s:6:\"1:1058\";i:1059;s:6:\"1:1059\";i:1060;s:6:\"1:1060\";i:1061;s:6:\"1:1061\";i:1062;s:6:\"1:1062\";i:1063;s:6:\"1:1063\";i:1064;s:6:\"1:1064\";i:1065;s:6:\"1:1065\";i:1066;s:6:\"1:1066\";i:1067;s:6:\"1:1067\";i:1068;s:6:\"1:1068\";i:1069;s:6:\"1:1069\";i:1070;s:6:\"1:1070\";i:1071;s:6:\"1:1071\";i:1072;s:6:\"1:1072\";i:1073;s:6:\"1:1073\";i:1074;s:6:\"1:1074\";i:1075;s:6:\"1:1075\";i:1076;s:6:\"1:1076\";i:1077;s:6:\"1:1077\";i:1078;s:6:\"1:1078\";i:1079;s:6:\"1:1079\";i:1080;s:6:\"1:1080\";i:1081;s:6:\"1:1081\";i:1082;s:6:\"1:1082\";i:1083;s:6:\"1:1083\";i:1084;s:6:\"1:1084\";i:1085;s:6:\"1:1085\";i:1086;s:6:\"1:1086\";i:1087;s:6:\"1:1087\";i:1088;s:6:\"1:1088\";i:1089;s:6:\"1:1089\";i:1090;s:6:\"1:1090\";i:1091;s:6:\"1:1091\";i:1092;s:6:\"1:1092\";i:1093;s:6:\"1:1093\";i:1094;s:6:\"1:1094\";i:1095;s:6:\"1:1095\";i:1096;s:6:\"1:1096\";i:1097;s:6:\"1:1097\";i:1098;s:6:\"1:1098\";i:1099;s:6:\"1:1099\";i:1100;s:6:\"1:1100\";i:1101;s:6:\"1:1101\";i:1102;s:6:\"1:1102\";i:1103;s:6:\"1:1103\";i:1104;s:6:\"1:1104\";i:1105;s:6:\"1:1105\";i:1106;s:6:\"1:1106\";i:1107;s:6:\"1:1107\";i:1108;s:6:\"1:1108\";i:1109;s:6:\"1:1109\";i:1110;s:6:\"1:1110\";i:1111;s:6:\"1:1111\";i:1112;s:6:\"1:1112\";i:1113;s:6:\"1:1113\";i:1114;s:6:\"1:1114\";i:1115;s:6:\"1:1115\";i:1116;s:6:\"1:1116\";i:1117;s:6:\"1:1117\";i:1118;s:6:\"1:1118\";i:1119;s:6:\"1:1119\";i:1120;s:6:\"1:1120\";i:1121;s:6:\"1:1121\";i:1122;s:6:\"1:1122\";i:1123;s:6:\"1:1123\";i:1124;s:6:\"1:1124\";i:1125;s:6:\"1:1125\";i:1126;s:6:\"1:1126\";i:1127;s:6:\"1:1127\";i:1128;s:6:\"1:1128\";i:1129;s:6:\"1:1129\";i:1130;s:6:\"1:1130\";i:1131;s:6:\"1:1131\";i:1132;s:6:\"1:1132\";i:1133;s:6:\"1:1133\";i:1134;s:6:\"1:1134\";i:1135;s:6:\"1:1135\";i:1136;s:6:\"1:1136\";i:1137;s:6:\"1:1137\";i:1138;s:6:\"1:1138\";i:1139;s:6:\"1:1139\";i:1140;s:6:\"1:1140\";i:1141;s:6:\"1:1141\";i:1142;s:6:\"1:1142\";i:1143;s:6:\"1:1143\";i:1144;s:6:\"1:1144\";i:1145;s:6:\"1:1145\";i:1146;s:6:\"1:1146\";i:1147;s:6:\"1:1147\";i:1148;s:6:\"1:1148\";i:1149;s:6:\"1:1149\";i:1150;s:6:\"1:1150\";i:1151;s:6:\"1:1151\";i:1152;s:6:\"1:1152\";i:1153;s:6:\"1:1153\";i:1154;s:6:\"1:1154\";i:1155;s:6:\"1:1155\";i:1156;s:6:\"1:1156\";i:1157;s:6:\"1:1157\";i:1158;s:6:\"1:1158\";i:1159;s:6:\"1:1159\";i:1160;s:6:\"1:1160\";i:1161;s:6:\"1:1161\";i:1162;s:6:\"1:1162\";i:1163;s:6:\"1:1163\";i:1164;s:6:\"1:1164\";i:1165;s:6:\"1:1165\";i:1166;s:6:\"1:1166\";i:1167;s:6:\"1:1167\";i:1168;s:6:\"1:1168\";i:1169;s:6:\"1:1169\";i:1170;s:6:\"1:1170\";i:1171;s:6:\"1:1171\";i:1172;s:6:\"1:1172\";i:1173;s:6:\"1:1173\";i:1174;s:6:\"1:1174\";i:1175;s:6:\"1:1175\";i:1176;s:6:\"1:1176\";i:1177;s:6:\"1:1177\";i:1178;s:6:\"1:1178\";i:1179;s:6:\"1:1179\";i:1180;s:6:\"1:1180\";i:1181;s:6:\"1:1181\";i:1182;s:6:\"1:1182\";i:1183;s:6:\"1:1183\";i:1184;s:6:\"1:1184\";i:1185;s:6:\"1:1185\";i:1186;s:6:\"1:1186\";i:1187;s:6:\"1:1187\";i:1188;s:6:\"1:1188\";i:1189;s:6:\"1:1189\";i:1190;s:6:\"1:1190\";i:1191;s:6:\"1:1191\";i:1192;s:6:\"1:1192\";i:1193;s:6:\"1:1193\";i:1194;s:6:\"1:1194\";i:1195;s:6:\"1:1195\";i:1196;s:6:\"1:1196\";i:1197;s:6:\"1:1197\";i:1198;s:6:\"1:1198\";i:1199;s:6:\"1:1199\";i:1200;s:6:\"1:1200\";i:1201;s:6:\"1:1201\";i:1202;s:6:\"1:1202\";i:1203;s:6:\"1:1203\";i:1204;s:6:\"1:1204\";i:1205;s:6:\"1:1205\";i:1206;s:6:\"1:1206\";i:1207;s:6:\"1:1207\";i:1208;s:6:\"1:1208\";i:1209;s:6:\"1:1209\";i:1210;s:6:\"1:1210\";i:1211;s:6:\"1:1211\";i:1212;s:6:\"1:1212\";i:1213;s:6:\"1:1213\";i:1214;s:6:\"1:1214\";i:1215;s:6:\"1:1215\";i:1216;s:6:\"1:1216\";i:1217;s:6:\"1:1217\";i:1218;s:6:\"1:1218\";i:1219;s:6:\"1:1219\";i:1220;s:6:\"1:1220\";i:1221;s:6:\"1:1221\";i:1222;s:6:\"1:1222\";i:1223;s:6:\"1:1223\";i:1224;s:6:\"1:1224\";i:1225;s:6:\"1:1225\";i:1226;s:6:\"1:1226\";i:1227;s:6:\"1:1227\";i:1228;s:6:\"1:1228\";i:1229;s:6:\"1:1229\";i:1230;s:6:\"1:1230\";i:1231;s:6:\"1:1231\";i:1232;s:6:\"1:1232\";i:1233;s:6:\"1:1233\";i:1234;s:6:\"1:1234\";i:1235;s:6:\"1:1235\";i:1236;s:6:\"1:1236\";i:1237;s:6:\"1:1237\";i:1238;s:6:\"1:1238\";i:1239;s:6:\"1:1239\";i:1240;s:6:\"1:1240\";i:1241;s:6:\"1:1241\";i:1242;s:6:\"1:1242\";i:1243;s:6:\"1:1243\";i:1244;s:6:\"1:1244\";i:1245;s:6:\"1:1245\";i:1246;s:6:\"1:1246\";i:1247;s:6:\"1:1247\";i:1248;s:6:\"1:1248\";i:1249;s:6:\"1:1249\";i:1250;s:6:\"1:1250\";i:1251;s:6:\"1:1251\";i:1252;s:6:\"1:1252\";i:1253;s:6:\"1:1253\";i:1254;s:6:\"1:1254\";i:1255;s:6:\"1:1255\";i:1256;s:6:\"1:1256\";i:1257;s:6:\"1:1257\";i:1258;s:6:\"1:1258\";i:1259;s:6:\"1:1259\";i:1260;s:6:\"1:1260\";i:1261;s:6:\"1:1261\";i:1262;s:6:\"1:1262\";i:1263;s:6:\"1:1263\";i:1264;s:6:\"1:1264\";i:1265;s:6:\"1:1265\";i:1266;s:6:\"1:1266\";i:1267;s:6:\"1:1267\";i:1268;s:6:\"1:1268\";i:1269;s:6:\"1:1269\";i:1270;s:6:\"1:1270\";i:1271;s:6:\"1:1271\";i:1272;s:6:\"1:1272\";i:1273;s:6:\"1:1273\";i:1274;s:6:\"1:1274\";i:1275;s:6:\"1:1275\";i:1276;s:6:\"1:1276\";i:1277;s:6:\"1:1277\";i:1278;s:6:\"1:1278\";i:1279;s:6:\"1:1279\";i:1280;s:6:\"1:1280\";i:1281;s:6:\"1:1281\";i:1282;s:6:\"1:1282\";i:1283;s:6:\"1:1283\";i:1284;s:6:\"1:1284\";i:1285;s:6:\"1:1285\";i:1286;s:6:\"1:1286\";i:1287;s:6:\"1:1287\";i:1288;s:6:\"1:1288\";i:1289;s:6:\"1:1289\";i:1290;s:6:\"1:1290\";i:1291;s:6:\"1:1291\";i:1292;s:6:\"1:1292\";i:1293;s:6:\"1:1293\";i:1294;s:6:\"1:1294\";i:1295;s:6:\"1:1295\";i:1296;s:6:\"1:1296\";i:1297;s:6:\"1:1297\";i:1298;s:6:\"1:1298\";i:1299;s:6:\"1:1299\";i:1300;s:6:\"1:1300\";i:1301;s:6:\"1:1301\";i:1302;s:6:\"1:1302\";i:1303;s:6:\"1:1303\";i:1304;s:6:\"1:1304\";i:1305;s:6:\"1:1305\";i:1306;s:6:\"1:1306\";i:1307;s:6:\"1:1307\";i:1308;s:6:\"1:1308\";i:1309;s:6:\"1:1309\";i:1310;s:6:\"1:1310\";i:1311;s:6:\"1:1311\";i:1312;s:6:\"1:1312\";i:1313;s:6:\"1:1313\";i:1314;s:6:\"1:1314\";i:1315;s:6:\"1:1315\";i:1316;s:6:\"1:1316\";i:1317;s:6:\"1:1317\";i:1318;s:6:\"1:1318\";i:1319;s:6:\"1:1319\";i:1320;s:6:\"1:1320\";i:1321;s:6:\"1:1321\";i:1322;s:6:\"1:1322\";i:1323;s:6:\"1:1323\";i:1324;s:6:\"1:1324\";i:1325;s:6:\"1:1325\";i:1326;s:6:\"1:1326\";i:1327;s:6:\"1:1327\";i:1328;s:6:\"1:1328\";i:1329;s:6:\"1:1329\";i:1330;s:6:\"1:1330\";i:1331;s:6:\"1:1331\";i:1332;s:6:\"1:1332\";i:1333;s:6:\"1:1333\";i:1334;s:6:\"1:1334\";i:1335;s:6:\"1:1335\";i:1336;s:6:\"1:1336\";i:1337;s:6:\"1:1337\";i:1338;s:6:\"1:1338\";i:1339;s:6:\"1:1339\";i:1340;s:6:\"1:1340\";i:1341;s:6:\"1:1341\";i:1342;s:6:\"1:1342\";i:1343;s:6:\"1:1343\";i:1344;s:6:\"1:1344\";i:1345;s:6:\"1:1345\";i:1346;s:6:\"1:1346\";i:1347;s:6:\"1:1347\";i:1348;s:6:\"1:1348\";i:1349;s:6:\"1:1349\";i:1350;s:6:\"1:1350\";i:1351;s:6:\"1:1351\";i:1352;s:6:\"1:1352\";i:1353;s:6:\"1:1353\";i:1354;s:6:\"1:1354\";i:1355;s:6:\"1:1355\";i:1356;s:6:\"1:1356\";i:1357;s:6:\"1:1357\";i:1358;s:6:\"1:1358\";i:1359;s:6:\"1:1359\";i:1360;s:6:\"1:1360\";i:1361;s:6:\"1:1361\";i:1362;s:6:\"1:1362\";i:1363;s:6:\"1:1363\";i:1364;s:6:\"1:1364\";i:1365;s:6:\"1:1365\";i:1366;s:6:\"1:1366\";i:1367;s:6:\"1:1367\";i:1368;s:6:\"1:1368\";i:1369;s:6:\"1:1369\";i:1370;s:6:\"1:1370\";i:1371;s:6:\"1:1371\";i:1372;s:6:\"1:1372\";i:1373;s:6:\"1:1373\";i:1374;s:6:\"1:1374\";i:1375;s:6:\"1:1375\";i:1376;s:6:\"1:1376\";i:1377;s:6:\"1:1377\";i:1378;s:6:\"1:1378\";i:1379;s:6:\"1:1379\";i:1380;s:6:\"1:1380\";i:1381;s:6:\"1:1381\";i:1382;s:6:\"1:1382\";i:1383;s:6:\"1:1383\";i:1384;s:6:\"1:1384\";i:1385;s:6:\"1:1385\";i:1386;s:6:\"1:1386\";i:1387;s:6:\"1:1387\";i:1388;s:6:\"1:1388\";i:1389;s:6:\"1:1389\";i:1390;s:6:\"1:1390\";i:1391;s:6:\"1:1391\";i:1392;s:6:\"1:1392\";i:1393;s:6:\"1:1393\";i:1394;s:6:\"1:1394\";i:1395;s:6:\"1:1395\";i:1396;s:6:\"1:1396\";i:1397;s:6:\"1:1397\";i:1398;s:6:\"1:1398\";i:1399;s:6:\"1:1399\";i:1400;s:6:\"1:1400\";i:1401;s:6:\"1:1401\";i:1402;s:6:\"1:1402\";i:1403;s:6:\"1:1403\";i:1404;s:6:\"1:1404\";i:1405;s:6:\"1:1405\";i:1406;s:6:\"1:1406\";i:1407;s:6:\"1:1407\";i:1408;s:6:\"1:1408\";i:1409;s:6:\"1:1409\";i:1410;s:6:\"1:1410\";i:1411;s:6:\"1:1411\";i:1412;s:6:\"1:1412\";i:1413;s:6:\"1:1413\";i:1414;s:6:\"1:1414\";i:1415;s:6:\"1:1415\";i:1416;s:6:\"1:1416\";i:1417;s:6:\"1:1417\";i:1418;s:6:\"1:1418\";i:1419;s:6:\"1:1419\";i:1420;s:6:\"1:1420\";i:1421;s:6:\"1:1421\";i:1422;s:6:\"1:1422\";i:1423;s:6:\"1:1423\";i:1424;s:6:\"1:1424\";i:1425;s:6:\"1:1425\";i:1426;s:6:\"1:1426\";i:1427;s:6:\"1:1427\";i:1428;s:6:\"1:1428\";i:1429;s:6:\"1:1429\";i:1430;s:6:\"1:1430\";i:1431;s:6:\"1:1431\";i:1432;s:6:\"1:1432\";i:1433;s:6:\"1:1433\";i:1434;s:6:\"1:1434\";i:1435;s:6:\"1:1435\";i:1436;s:6:\"1:1436\";i:1437;s:6:\"1:1437\";i:1438;s:6:\"1:1438\";i:1439;s:6:\"1:1439\";i:1440;s:6:\"1:1440\";i:1441;s:6:\"1:1441\";i:1442;s:6:\"1:1442\";i:1443;s:6:\"1:1443\";i:1444;s:6:\"1:1444\";i:1445;s:6:\"1:1445\";i:1446;s:6:\"1:1446\";i:1447;s:6:\"1:1447\";i:1448;s:6:\"1:1448\";i:1449;s:6:\"1:1449\";i:1450;s:6:\"1:1450\";i:1451;s:6:\"1:1451\";i:1452;s:6:\"1:1452\";i:1453;s:6:\"1:1453\";i:1454;s:6:\"1:1454\";i:1455;s:6:\"1:1455\";i:1456;s:6:\"1:1456\";i:1457;s:6:\"1:1457\";i:1458;s:6:\"1:1458\";i:1459;s:6:\"1:1459\";i:1460;s:6:\"1:1460\";i:1461;s:6:\"1:1461\";i:1462;s:6:\"1:1462\";i:1463;s:6:\"1:1463\";i:1464;s:6:\"1:1464\";i:1465;s:6:\"1:1465\";i:1466;s:6:\"1:1466\";i:1467;s:6:\"1:1467\";i:1468;s:6:\"1:1468\";i:1469;s:6:\"1:1469\";i:1470;s:6:\"1:1470\";i:1471;s:6:\"1:1471\";i:1472;s:6:\"1:1472\";i:1473;s:6:\"1:1473\";i:1474;s:6:\"1:1474\";i:1475;s:6:\"1:1475\";i:1476;s:6:\"1:1476\";i:1477;s:6:\"1:1477\";i:1478;s:6:\"1:1478\";i:1479;s:6:\"1:1479\";i:1480;s:6:\"1:1480\";i:1481;s:6:\"1:1481\";i:1482;s:6:\"1:1482\";i:1483;s:6:\"1:1483\";i:1484;s:6:\"1:1484\";i:1485;s:6:\"1:1485\";i:1486;s:6:\"1:1486\";i:1487;s:6:\"1:1487\";i:1488;s:6:\"1:1488\";i:1489;s:6:\"1:1489\";i:1490;s:6:\"1:1490\";i:1491;s:6:\"1:1491\";i:1492;s:6:\"1:1492\";i:1493;s:6:\"1:1493\";i:1494;s:6:\"1:1494\";i:1495;s:6:\"1:1495\";i:1496;s:6:\"1:1496\";i:1497;s:6:\"1:1497\";i:1498;s:6:\"1:1498\";i:1499;s:6:\"1:1499\";i:1500;s:6:\"1:1500\";i:1501;s:6:\"1:1501\";i:1502;s:6:\"1:1502\";i:1503;s:6:\"1:1503\";i:1504;s:6:\"1:1504\";i:1505;s:6:\"1:1505\";i:1506;s:6:\"1:1506\";i:1507;s:6:\"1:1507\";i:1508;s:6:\"1:1508\";i:1509;s:6:\"1:1509\";i:1510;s:6:\"1:1510\";i:1511;s:6:\"1:1511\";i:1512;s:6:\"1:1512\";i:1513;s:6:\"1:1513\";i:1514;s:6:\"1:1514\";i:1515;s:6:\"1:1515\";i:1516;s:6:\"1:1516\";i:1517;s:6:\"1:1517\";i:1518;s:6:\"1:1518\";i:1519;s:6:\"1:1519\";i:1520;s:6:\"1:1520\";i:1521;s:6:\"1:1521\";i:1522;s:6:\"1:1522\";i:1523;s:6:\"1:1523\";i:1524;s:6:\"1:1524\";i:1525;s:6:\"1:1525\";i:1526;s:6:\"1:1526\";i:1527;s:6:\"1:1527\";i:1528;s:6:\"1:1528\";i:1529;s:6:\"1:1529\";i:1530;s:6:\"1:1530\";i:1531;s:6:\"1:1531\";i:1532;s:6:\"1:1532\";i:1533;s:6:\"1:1533\";i:1534;s:6:\"1:1534\";i:1535;s:6:\"1:1535\";i:1536;s:6:\"1:1536\";i:1537;s:6:\"1:1537\";i:1538;s:6:\"1:1538\";i:1539;s:6:\"1:1539\";i:1540;s:6:\"1:1540\";i:1541;s:6:\"1:1541\";i:1542;s:6:\"1:1542\";i:1543;s:6:\"1:1543\";i:1544;s:6:\"1:1544\";i:1545;s:6:\"1:1545\";i:1546;s:6:\"1:1546\";i:1547;s:6:\"1:1547\";i:1548;s:6:\"1:1548\";i:1549;s:6:\"1:1549\";i:1550;s:6:\"1:1550\";i:1551;s:6:\"1:1551\";i:1552;s:6:\"1:1552\";i:1553;s:6:\"1:1553\";i:1554;s:6:\"1:1554\";i:1555;s:6:\"1:1555\";i:1556;s:6:\"1:1556\";i:1557;s:6:\"1:1557\";i:1558;s:6:\"1:1558\";i:1559;s:6:\"1:1559\";i:1560;s:6:\"1:1560\";i:1561;s:6:\"1:1561\";i:1562;s:6:\"1:1562\";i:1563;s:6:\"1:1563\";i:1564;s:6:\"1:1564\";i:1565;s:6:\"1:1565\";i:1566;s:6:\"1:1566\";i:1567;s:6:\"1:1567\";i:1568;s:6:\"1:1568\";i:1569;s:6:\"1:1569\";i:1570;s:6:\"1:1570\";i:1571;s:6:\"1:1571\";i:1572;s:6:\"1:1572\";i:1573;s:6:\"1:1573\";i:1574;s:6:\"1:1574\";i:1575;s:6:\"1:1575\";i:1576;s:6:\"1:1576\";i:1577;s:6:\"2:1577\";i:1578;s:6:\"2:1578\";i:1579;s:6:\"2:1579\";i:1580;s:6:\"3:1580\";i:1581;s:6:\"4:1581\";i:1582;s:6:\"4:1582\";i:1583;s:6:\"4:1583\";i:1584;s:6:\"5:1584\";i:1585;s:6:\"5:1585\";i:1586;s:6:\"5:1586\";i:1587;s:6:\"5:1587\";i:1588;s:6:\"5:1588\";i:1589;s:6:\"5:1589\";i:1590;s:6:\"5:1590\";i:1591;s:6:\"5:1591\";i:1592;s:6:\"5:1581\";i:1593;s:6:\"5:1592\";i:1594;s:6:\"5:1593\";i:1595;s:6:\"5:1594\";i:1596;s:6:\"5:1595\";i:1597;s:6:\"5:1596\";i:1598;s:6:\"5:1597\";i:1599;s:6:\"6:1581\";i:1600;s:6:\"6:1598\";i:1601;s:6:\"7:1599\";i:1602;s:6:\"8:1600\";i:1603;s:6:\"9:1601\";i:1604;s:6:\"1:1602\";i:1605;s:6:\"1:1603\";i:1606;s:6:\"1:1604\";i:1607;s:6:\"1:1605\";i:1608;s:6:\"1:1579\";i:1609;s:6:\"1:1606\";i:1610;s:6:\"1:1580\";i:1611;s:6:\"1:1607\";i:1612;s:6:\"1:1608\";i:1613;s:6:\"1:1609\";i:1614;s:6:\"1:1610\";i:1615;s:6:\"1:1611\";i:1616;s:6:\"1:1612\";i:1617;s:6:\"1:1613\";i:1618;s:6:\"1:1614\";i:1619;s:6:\"1:1615\";i:1620;s:6:\"1:1616\";i:1621;s:6:\"1:1617\";i:1622;s:6:\"1:1618\";i:1623;s:6:\"1:1619\";i:1624;s:6:\"1:1620\";i:1625;s:6:\"1:1578\";i:1626;s:6:\"1:1621\";i:1627;s:6:\"1:1622\";i:1628;s:6:\"1:1623\";i:1629;s:6:\"1:1624\";i:1630;s:6:\"1:1625\";i:1631;s:6:\"1:1626\";i:1632;s:6:\"1:1627\";i:1633;s:6:\"1:1628\";i:1634;s:6:\"1:1629\";i:1635;s:6:\"1:1630\";i:1636;s:6:\"1:1631\";i:1637;s:6:\"1:1632\";i:1638;s:6:\"1:1633\";i:1639;s:6:\"1:1634\";i:1640;s:6:\"1:1635\";i:1641;s:6:\"1:1636\";i:1642;s:6:\"1:1637\";i:1643;s:6:\"1:1638\";i:1644;s:6:\"1:1639\";i:1645;s:6:\"1:1640\";i:1646;s:6:\"1:1641\";i:1647;s:6:\"1:1642\";i:1648;s:6:\"1:1643\";i:1649;s:6:\"1:1644\";i:1650;s:6:\"1:1645\";i:1651;s:6:\"1:1646\";i:1652;s:6:\"1:1647\";i:1653;s:6:\"1:1648\";i:1654;s:6:\"1:1649\";i:1655;s:6:\"1:1650\";i:1656;s:6:\"1:1651\";i:1657;s:6:\"1:1652\";i:1658;s:6:\"1:1653\";i:1659;s:6:\"1:1654\";i:1660;s:6:\"1:1655\";i:1661;s:6:\"1:1656\";i:1662;s:6:\"1:1657\";i:1663;s:6:\"1:1658\";i:1664;s:6:\"1:1659\";i:1665;s:6:\"1:1660\";i:1666;s:6:\"1:1661\";i:1667;s:6:\"1:1662\";i:1668;s:6:\"1:1663\";i:1669;s:6:\"1:1664\";i:1670;s:6:\"1:1665\";i:1671;s:6:\"1:1666\";i:1672;s:6:\"1:1667\";i:1673;s:6:\"1:1668\";i:1674;s:6:\"1:1669\";i:1675;s:6:\"1:1670\";i:1676;s:6:\"1:1671\";i:1677;s:6:\"1:1672\";i:1678;s:6:\"1:1673\";i:1679;s:6:\"1:1674\";i:1680;s:6:\"1:1675\";i:1681;s:6:\"1:1676\";i:1682;s:6:\"1:1677\";i:1683;s:6:\"1:1678\";i:1684;s:6:\"1:1577\";i:1685;s:6:\"1:1679\";i:1686;s:6:\"1:1680\";i:1687;s:6:\"1:1681\";i:1688;s:6:\"1:1682\";i:1689;s:6:\"1:1683\";i:1690;s:6:\"1:1684\";i:1691;s:6:\"1:1685\";i:1692;s:6:\"1:1686\";i:1693;s:6:\"1:1687\";i:1694;s:6:\"1:1688\";i:1695;s:6:\"1:1689\";i:1696;s:6:\"1:1690\";i:1697;s:6:\"1:1691\";i:1698;s:6:\"1:1692\";i:1699;s:6:\"1:1693\";i:1700;s:6:\"1:1694\";i:1701;s:6:\"1:1695\";i:1702;s:6:\"1:1696\";i:1703;s:6:\"1:1697\";i:1704;s:6:\"1:1698\";i:1705;s:6:\"1:1699\";i:1706;s:6:\"1:1700\";i:1707;s:6:\"1:1701\";i:1708;s:6:\"1:1702\";i:1709;s:6:\"1:1703\";i:1710;s:6:\"1:1704\";i:1711;s:6:\"1:1705\";i:1712;s:6:\"1:1706\";i:1713;s:6:\"1:1707\";i:1714;s:6:\"1:1599\";i:1715;s:6:\"1:1708\";i:1716;s:6:\"1:1709\";i:1717;s:6:\"1:1710\";i:1718;s:6:\"1:1711\";i:1719;s:6:\"1:1712\";i:1720;s:6:\"1:1713\";i:1721;s:6:\"1:1714\";i:1722;s:6:\"1:1715\";i:1723;s:6:\"1:1716\";i:1724;s:6:\"1:1717\";i:1725;s:6:\"1:1718\";i:1726;s:6:\"1:1719\";i:1727;s:6:\"1:1720\";i:1728;s:6:\"1:1721\";i:1729;s:6:\"1:1722\";i:1730;s:6:\"1:1723\";i:1731;s:6:\"1:1724\";i:1732;s:6:\"1:1725\";i:1733;s:6:\"1:1726\";i:1734;s:6:\"1:1727\";i:1735;s:6:\"1:1728\";i:1736;s:6:\"1:1729\";i:1737;s:6:\"1:1730\";i:1738;s:6:\"1:1731\";i:1739;s:6:\"1:1732\";i:1740;s:6:\"1:1733\";i:1741;s:6:\"1:1734\";i:1742;s:6:\"1:1735\";i:1743;s:6:\"1:1736\";i:1744;s:6:\"1:1737\";i:1745;s:6:\"1:1738\";i:1746;s:6:\"1:1739\";i:1747;s:6:\"1:1740\";i:1748;s:6:\"1:1741\";i:1749;s:6:\"1:1742\";i:1750;s:6:\"1:1743\";i:1751;s:6:\"1:1744\";i:1752;s:6:\"1:1745\";i:1753;s:6:\"1:1746\";i:1754;s:6:\"1:1747\";i:1755;s:6:\"1:1748\";i:1756;s:6:\"1:1749\";i:1757;s:6:\"1:1750\";i:1758;s:6:\"1:1751\";i:1759;s:6:\"1:1752\";i:1760;s:6:\"1:1753\";i:1761;s:6:\"1:1754\";i:1762;s:6:\"1:1755\";i:1763;s:6:\"1:1594\";i:1764;s:6:\"1:1756\";i:1765;s:6:\"1:1757\";i:1766;s:6:\"1:1758\";i:1767;s:6:\"1:1759\";i:1768;s:6:\"1:1760\";i:1769;s:6:\"1:1761\";i:1770;s:6:\"1:1762\";i:1771;s:6:\"1:1763\";i:1772;s:6:\"1:1764\";i:1773;s:6:\"1:1765\";i:1774;s:6:\"1:1766\";i:1775;s:6:\"1:1767\";i:1776;s:6:\"1:1768\";i:1777;s:6:\"1:1769\";i:1778;s:6:\"1:1770\";i:1779;s:6:\"1:1771\";i:1780;s:6:\"1:1772\";i:1781;s:6:\"1:1773\";i:1782;s:6:\"1:1774\";i:1783;s:6:\"1:1600\";i:1784;s:6:\"1:1775\";i:1785;s:6:\"1:1776\";i:1786;s:6:\"1:1777\";i:1787;s:6:\"1:1778\";i:1788;s:6:\"1:1779\";i:1789;s:6:\"1:1780\";i:1790;s:6:\"1:1781\";i:1791;s:6:\"1:1782\";i:1792;s:6:\"1:1783\";i:1793;s:6:\"1:1784\";i:1794;s:6:\"1:1785\";i:1795;s:6:\"1:1786\";i:1796;s:6:\"1:1787\";i:1797;s:6:\"1:1788\";i:1798;s:6:\"1:1789\";i:1799;s:6:\"1:1790\";i:1800;s:6:\"1:1791\";i:1801;s:6:\"1:1792\";i:1802;s:6:\"1:1793\";i:1803;s:6:\"1:1794\";i:1804;s:6:\"1:1795\";i:1805;s:6:\"1:1796\";i:1806;s:6:\"1:1797\";i:1807;s:6:\"1:1798\";i:1808;s:6:\"1:1799\";i:1809;s:6:\"1:1800\";i:1810;s:6:\"1:1801\";i:1811;s:6:\"1:1802\";i:1812;s:6:\"1:1803\";i:1813;s:6:\"1:1804\";i:1814;s:6:\"1:1805\";i:1815;s:6:\"1:1806\";i:1816;s:6:\"1:1807\";i:1817;s:6:\"1:1808\";i:1818;s:6:\"1:1809\";i:1819;s:6:\"1:1810\";i:1820;s:6:\"1:1811\";i:1821;s:6:\"1:1812\";i:1822;s:6:\"1:1813\";i:1823;s:6:\"1:1814\";i:1824;s:6:\"1:1581\";i:1825;s:6:\"1:1815\";i:1826;s:6:\"1:1816\";i:1827;s:6:\"1:1817\";i:1828;s:6:\"1:1818\";i:1829;s:6:\"1:1819\";i:1830;s:6:\"1:1820\";i:1831;s:6:\"1:1821\";i:1832;s:6:\"1:1822\";i:1833;s:6:\"1:1823\";i:1834;s:6:\"1:1824\";i:1835;s:6:\"1:1825\";i:1836;s:6:\"1:1826\";i:1837;s:6:\"1:1827\";i:1838;s:6:\"1:1828\";i:1839;s:6:\"1:1829\";i:1840;s:6:\"1:1830\";i:1841;s:6:\"1:1831\";i:1842;s:6:\"1:1832\";i:1843;s:6:\"1:1833\";i:1844;s:6:\"1:1834\";i:1845;s:6:\"1:1835\";i:1846;s:6:\"1:1836\";i:1847;s:6:\"1:1837\";i:1848;s:6:\"1:1838\";i:1849;s:6:\"1:1839\";i:1850;s:6:\"1:1840\";i:1851;s:6:\"1:1841\";i:1852;s:6:\"1:1842\";i:1853;s:6:\"1:1843\";i:1854;s:6:\"1:1844\";i:1855;s:6:\"1:1845\";i:1856;s:6:\"1:1846\";i:1857;s:6:\"1:1847\";i:1858;s:6:\"1:1848\";i:1859;s:6:\"1:1849\";i:1860;s:6:\"1:1850\";i:1861;s:6:\"1:1851\";i:1862;s:6:\"1:1852\";i:1863;s:6:\"1:1853\";i:1864;s:6:\"1:1854\";i:1865;s:6:\"1:1855\";i:1866;s:6:\"1:1856\";i:1867;s:6:\"1:1857\";i:1868;s:6:\"1:1858\";i:1869;s:6:\"1:1859\";i:1870;s:6:\"1:1860\";i:1871;s:6:\"1:1861\";i:1872;s:6:\"1:1862\";i:1873;s:6:\"1:1863\";i:1874;s:6:\"1:1864\";i:1875;s:6:\"1:1865\";i:1876;s:6:\"1:1866\";i:1877;s:6:\"1:1867\";i:1878;s:6:\"1:1868\";i:1879;s:6:\"1:1869\";i:1880;s:6:\"1:1870\";i:1881;s:6:\"1:1871\";i:1882;s:6:\"1:1872\";i:1883;s:6:\"1:1873\";i:1884;s:6:\"1:1874\";i:1885;s:6:\"1:1875\";i:1886;s:6:\"1:1876\";i:1887;s:6:\"1:1877\";i:1888;s:6:\"1:1878\";i:1889;s:6:\"1:1879\";i:1890;s:6:\"1:1880\";i:1891;s:6:\"1:1881\";i:1892;s:6:\"1:1882\";i:1893;s:6:\"1:1883\";i:1894;s:6:\"1:1884\";i:1895;s:6:\"1:1885\";i:1896;s:6:\"1:1886\";i:1897;s:6:\"1:1887\";i:1898;s:6:\"1:1888\";i:1899;s:6:\"1:1889\";i:1900;s:6:\"1:1890\";i:1901;s:6:\"1:1891\";i:1902;s:6:\"1:1892\";i:1903;s:6:\"1:1893\";i:1904;s:6:\"1:1894\";i:1905;s:6:\"1:1895\";i:1906;s:6:\"1:1896\";i:1907;s:6:\"1:1897\";i:1908;s:6:\"1:1898\";i:1909;s:6:\"1:1899\";i:1910;s:6:\"1:1900\";i:1911;s:6:\"1:1901\";i:1912;s:6:\"1:1902\";i:1913;s:6:\"1:1903\";i:1914;s:6:\"1:1904\";i:1915;s:6:\"1:1905\";i:1916;s:6:\"1:1906\";i:1917;s:6:\"1:1907\";i:1918;s:6:\"1:1908\";i:1919;s:6:\"1:1909\";i:1920;s:6:\"1:1910\";i:1921;s:6:\"1:1911\";i:1922;s:6:\"1:1912\";i:1923;s:6:\"1:1913\";i:1924;s:6:\"1:1914\";i:1925;s:6:\"1:1915\";i:1926;s:6:\"1:1916\";i:1927;s:6:\"1:1917\";i:1928;s:6:\"1:1918\";i:1929;s:6:\"1:1919\";i:1930;s:6:\"1:1920\";i:1931;s:6:\"1:1921\";i:1932;s:6:\"1:1922\";i:1933;s:6:\"1:1923\";i:1934;s:6:\"1:1924\";i:1935;s:6:\"1:1925\";i:1936;s:6:\"1:1926\";i:1937;s:6:\"1:1927\";i:1938;s:6:\"1:1928\";i:1939;s:6:\"1:1929\";i:1940;s:6:\"1:1930\";i:1941;s:6:\"1:1931\";i:1942;s:6:\"1:1932\";i:1943;s:6:\"1:1933\";i:1944;s:6:\"1:1934\";i:1945;s:6:\"1:1935\";i:1946;s:6:\"1:1936\";i:1947;s:6:\"1:1937\";i:1948;s:6:\"1:1938\";i:1949;s:6:\"1:1939\";i:1950;s:6:\"1:1940\";i:1951;s:6:\"1:1941\";i:1952;s:6:\"1:1942\";i:1953;s:6:\"1:1943\";i:1954;s:6:\"1:1944\";i:1955;s:6:\"1:1945\";i:1956;s:6:\"1:1946\";i:1957;s:6:\"1:1947\";i:1958;s:6:\"1:1948\";i:1959;s:6:\"1:1949\";i:1960;s:6:\"1:1950\";i:1961;s:6:\"1:1951\";i:1962;s:6:\"1:1952\";i:1963;s:6:\"1:1953\";i:1964;s:6:\"1:1954\";i:1965;s:6:\"1:1955\";i:1966;s:6:\"1:1956\";i:1967;s:6:\"1:1957\";i:1968;s:6:\"1:1958\";i:1969;s:6:\"1:1959\";i:1970;s:6:\"1:1960\";i:1971;s:6:\"1:1961\";i:1972;s:6:\"1:1962\";i:1973;s:6:\"1:1963\";i:1974;s:6:\"1:1964\";i:1975;s:6:\"1:1965\";i:1976;s:6:\"1:1966\";i:1977;s:6:\"1:1967\";i:1978;s:6:\"1:1968\";i:1979;s:6:\"1:1969\";i:1980;s:6:\"1:1970\";i:1981;s:6:\"1:1971\";i:1982;s:6:\"1:1972\";i:1983;s:6:\"1:1973\";i:1984;s:7:\"10:1974\";i:1985;s:6:\"4:1975\";i:1986;s:6:\"6:1976\";i:1987;s:6:\"6:1977\";i:1988;s:6:\"6:1978\";i:1989;s:6:\"6:1975\";i:1990;s:6:\"6:1979\";i:1991;s:6:\"2:1980\";i:1992;s:7:\"11:1981\";i:1993;s:7:\"11:1982\";i:1994;s:7:\"11:1983\";i:1995;s:7:\"11:1984\";i:1996;s:7:\"11:1985\";i:1997;s:7:\"12:1986\";i:1998;s:7:\"12:1987\";i:1999;s:7:\"13:1988\";i:2000;s:7:\"13:1989\";i:2001;s:7:\"13:1990\";i:2002;s:7:\"14:1991\";i:2003;s:7:\"14:1992\";i:2004;s:7:\"14:1993\";i:2005;s:7:\"14:1994\";i:2006;s:7:\"14:1995\";i:2007;s:7:\"14:1996\";i:2008;s:7:\"14:1997\";i:2009;s:7:\"14:1998\";i:2010;s:7:\"14:1999\";i:2011;s:7:\"14:2000\";i:2012;s:7:\"14:2001\";i:2013;s:7:\"14:2002\";i:2014;s:7:\"14:2003\";i:2015;s:7:\"14:2004\";i:2016;s:7:\"14:2005\";i:2017;s:7:\"14:2006\";i:2018;s:7:\"14:2007\";i:2019;s:7:\"14:2008\";i:2020;s:7:\"14:2009\";i:2021;s:7:\"14:2010\";i:2022;s:7:\"14:2011\";i:2023;s:7:\"14:2012\";i:2024;s:7:\"14:2013\";i:2025;s:7:\"14:2014\";i:2026;s:7:\"14:2015\";i:2027;s:7:\"14:2016\";i:2028;s:7:\"14:2017\";i:2029;s:7:\"14:2018\";i:2030;s:7:\"14:2019\";i:2031;s:7:\"14:2020\";i:2032;s:7:\"14:2021\";i:2033;s:7:\"14:2022\";i:2034;s:7:\"14:2023\";i:2035;s:7:\"14:2024\";i:2036;s:7:\"14:2025\";i:2037;s:7:\"14:2026\";i:2038;s:7:\"14:2027\";i:2039;s:7:\"14:2028\";i:2040;s:7:\"14:2029\";i:2041;s:7:\"14:2030\";i:2042;s:7:\"14:2031\";i:2043;s:7:\"14:2032\";i:2044;s:7:\"14:2033\";i:2045;s:7:\"14:2034\";i:2046;s:7:\"15:2035\";i:2047;s:7:\"15:2036\";i:2048;s:7:\"15:2037\";i:2049;s:7:\"15:2038\";i:2050;s:7:\"15:2039\";i:2051;s:7:\"15:1990\";i:2052;s:7:\"15:2040\";i:2053;s:7:\"15:2041\";i:2054;s:7:\"16:2042\";i:2055;s:7:\"16:2043\";i:2056;s:7:\"16:2044\";i:2057;s:7:\"16:2045\";i:2058;s:7:\"16:2046\";i:2059;s:7:\"16:2047\";i:2060;s:7:\"16:2048\";i:2061;s:7:\"16:2049\";i:2062;s:7:\"16:2050\";i:2063;s:7:\"16:2051\";i:2064;s:6:\"1:2052\";i:2065;s:6:\"1:2053\";i:2066;s:6:\"1:2054\";i:2067;s:6:\"1:2055\";i:2068;s:6:\"1:2056\";i:2069;s:6:\"1:2057\";i:2070;s:6:\"1:2058\";i:2071;s:6:\"1:2059\";i:2072;s:6:\"1:2060\";i:2073;s:6:\"1:2061\";i:2074;s:6:\"1:2062\";i:2075;s:6:\"1:2063\";i:2076;s:6:\"1:2064\";i:2077;s:6:\"1:2065\";i:2078;s:6:\"1:2066\";i:2079;s:6:\"1:2067\";i:2080;s:6:\"1:2068\";i:2081;s:6:\"1:2069\";i:2082;s:6:\"1:2070\";i:2083;s:6:\"1:2071\";i:2084;s:6:\"1:2072\";i:2085;s:6:\"1:2073\";i:2086;s:6:\"1:1974\";i:2087;s:6:\"1:2074\";i:2088;s:6:\"1:2075\";i:2089;s:6:\"1:2076\";i:2090;s:6:\"1:2077\";i:2091;s:6:\"1:2078\";i:2092;s:6:\"1:2079\";i:2093;s:6:\"1:2080\";i:2094;s:6:\"1:2081\";i:2095;s:6:\"1:2082\";i:2096;s:6:\"1:2083\";i:2097;s:6:\"1:2084\";i:2098;s:6:\"1:2085\";i:2099;s:6:\"1:2086\";i:2100;s:6:\"1:2087\";i:2101;s:6:\"1:2088\";i:2102;s:6:\"1:1993\";i:2103;s:6:\"1:2089\";i:2104;s:6:\"1:2090\";i:2105;s:6:\"1:2091\";i:2106;s:6:\"1:2092\";i:2107;s:6:\"1:2093\";i:2108;s:6:\"1:2094\";i:2109;s:6:\"1:2095\";i:2110;s:6:\"1:2096\";i:2111;s:6:\"1:2097\";i:2112;s:6:\"1:2098\";i:2113;s:6:\"1:2099\";i:2114;s:6:\"1:2100\";i:2115;s:6:\"1:2101\";i:2116;s:6:\"1:1975\";i:2117;s:6:\"1:2102\";i:2118;s:6:\"1:2103\";i:2119;s:6:\"1:2104\";i:2120;s:6:\"1:2105\";i:2121;s:6:\"1:2106\";i:2122;s:6:\"1:2107\";i:2123;s:6:\"1:1987\";i:2124;s:6:\"1:2108\";i:2125;s:6:\"1:2109\";i:2126;s:6:\"1:2110\";i:2127;s:6:\"1:2111\";i:2128;s:6:\"1:2112\";i:2129;s:6:\"1:2113\";i:2130;s:6:\"1:2114\";i:2131;s:6:\"1:2115\";i:2132;s:6:\"1:2116\";i:2133;s:6:\"1:2117\";i:2134;s:6:\"1:2118\";i:2135;s:6:\"1:2119\";i:2136;s:6:\"1:2120\";i:2137;s:6:\"1:2121\";i:2138;s:6:\"1:2122\";i:2139;s:6:\"1:2123\";i:2140;s:6:\"1:2124\";i:2141;s:6:\"1:2125\";i:2142;s:6:\"1:2126\";i:2143;s:6:\"1:2127\";i:2144;s:6:\"1:2128\";i:2145;s:6:\"1:2129\";i:2146;s:6:\"1:2130\";i:2147;s:6:\"1:2131\";i:2148;s:6:\"1:1980\";i:2149;s:6:\"1:2132\";i:2150;s:6:\"1:2133\";i:2151;s:6:\"1:2134\";i:2152;s:6:\"1:2135\";i:2153;s:6:\"1:2136\";i:2154;s:6:\"1:2137\";i:2155;s:6:\"1:2138\";i:2156;s:6:\"1:2139\";i:2157;s:6:\"1:2140\";i:2158;s:6:\"1:2141\";i:2159;s:6:\"1:1978\";i:2160;s:6:\"1:2142\";i:2161;s:6:\"1:2143\";i:2162;s:6:\"1:2144\";i:2163;s:6:\"1:2145\";i:2164;s:6:\"1:2146\";i:2165;s:6:\"1:2147\";i:2166;s:6:\"1:1982\";i:2167;s:6:\"1:2148\";i:2168;s:6:\"1:2149\";i:2169;s:6:\"1:2150\";i:2170;s:6:\"1:2151\";i:2171;s:6:\"1:2152\";i:2172;s:6:\"1:2153\";i:2173;s:6:\"1:2154\";i:2174;s:6:\"1:2155\";i:2175;s:6:\"1:2156\";i:2176;s:6:\"1:2157\";i:2177;s:6:\"1:2158\";i:2178;s:6:\"1:2159\";i:2179;s:6:\"1:2160\";i:2180;s:6:\"1:2161\";i:2181;s:6:\"1:2162\";i:2182;s:6:\"1:1977\";i:2183;s:6:\"1:1976\";i:2184;s:6:\"1:2163\";i:2185;s:6:\"1:2164\";i:2186;s:6:\"1:2165\";i:2187;s:6:\"1:2166\";i:2188;s:6:\"1:2167\";i:2189;s:6:\"1:2168\";i:2190;s:6:\"1:2169\";i:2191;s:6:\"1:2170\";i:2192;s:6:\"1:2171\";i:2193;s:6:\"1:2172\";i:2194;s:6:\"1:2173\";i:2195;s:6:\"1:2174\";i:2196;s:6:\"1:2175\";i:2197;s:6:\"1:2176\";i:2198;s:6:\"1:2177\";i:2199;s:6:\"1:2051\";i:2200;s:6:\"1:2178\";i:2201;s:6:\"1:2179\";i:2202;s:6:\"1:2180\";i:2203;s:6:\"1:2181\";i:2204;s:6:\"1:2182\";i:2205;s:6:\"1:2183\";i:2206;s:6:\"1:2046\";i:2207;s:6:\"1:2184\";i:2208;s:6:\"1:2185\";i:2209;s:6:\"1:2186\";i:2210;s:6:\"1:2187\";i:2211;s:6:\"1:2188\";i:2212;s:6:\"1:2189\";i:2213;s:6:\"1:2190\";i:2214;s:6:\"1:2191\";i:2215;s:6:\"1:2192\";i:2216;s:6:\"1:2193\";i:2217;s:6:\"1:2194\";i:2218;s:6:\"1:2195\";i:2219;s:6:\"1:2196\";i:2220;s:6:\"1:2197\";i:2221;s:6:\"1:2198\";i:2222;s:6:\"1:2199\";i:2223;s:6:\"1:2200\";i:2224;s:6:\"1:2201\";i:2225;s:6:\"1:2202\";i:2226;s:6:\"1:2203\";i:2227;s:6:\"1:2204\";i:2228;s:6:\"1:2205\";i:2229;s:6:\"1:2206\";i:2230;s:6:\"1:2207\";i:2231;s:6:\"1:2208\";i:2232;s:6:\"1:2209\";i:2233;s:6:\"1:2210\";i:2234;s:6:\"1:2211\";i:2235;s:6:\"1:2212\";i:2236;s:6:\"1:2213\";i:2237;s:6:\"1:2214\";i:2238;s:6:\"1:2215\";i:2239;s:6:\"1:2216\";i:2240;s:6:\"1:2217\";i:2241;s:6:\"1:2218\";i:2242;s:6:\"1:2219\";i:2243;s:6:\"1:2220\";i:2244;s:6:\"1:2221\";i:2245;s:6:\"1:2222\";i:2246;s:6:\"1:2223\";i:2247;s:6:\"1:2224\";i:2248;s:6:\"1:2225\";i:2249;s:6:\"1:2226\";i:2250;s:6:\"1:2227\";i:2251;s:6:\"1:2228\";i:2252;s:6:\"1:2229\";i:2253;s:6:\"1:2230\";i:2254;s:6:\"1:2231\";i:2255;s:6:\"1:2232\";i:2256;s:6:\"1:2233\";i:2257;s:6:\"1:2234\";i:2258;s:6:\"1:2235\";i:2259;s:6:\"1:2236\";i:2260;s:6:\"1:2237\";i:2261;s:6:\"1:2238\";i:2262;s:6:\"1:2239\";i:2263;s:6:\"1:2240\";i:2264;s:6:\"1:2241\";i:2265;s:6:\"1:2242\";i:2266;s:6:\"1:1983\";i:2267;s:6:\"1:1985\";i:2268;s:6:\"1:2243\";i:2269;s:6:\"1:2244\";i:2270;s:6:\"1:2245\";i:2271;s:6:\"1:2246\";i:2272;s:6:\"1:2247\";i:2273;s:6:\"1:2248\";i:2274;s:6:\"1:2249\";i:2275;s:6:\"1:2250\";i:2276;s:6:\"1:2251\";i:2277;s:6:\"1:2252\";i:2278;s:6:\"1:2253\";i:2279;s:6:\"1:2254\";i:2280;s:6:\"1:2255\";i:2281;s:6:\"1:2256\";i:2282;s:6:\"1:2257\";i:2283;s:6:\"1:2258\";i:2284;s:6:\"1:2259\";i:2285;s:6:\"1:2260\";i:2286;s:6:\"1:2261\";i:2287;s:6:\"1:2262\";i:2288;s:6:\"1:2263\";i:2289;s:6:\"1:2264\";i:2290;s:6:\"1:2265\";i:2291;s:6:\"1:2266\";i:2292;s:6:\"1:2267\";i:2293;s:6:\"1:2268\";i:2294;s:6:\"1:2269\";i:2295;s:6:\"1:2270\";i:2296;s:6:\"1:2271\";i:2297;s:6:\"1:2272\";i:2298;s:6:\"1:2273\";i:2299;s:6:\"1:2274\";i:2300;s:6:\"1:2275\";i:2301;s:6:\"1:2276\";i:2302;s:6:\"1:2277\";i:2303;s:6:\"1:2278\";i:2304;s:6:\"1:2279\";i:2305;s:6:\"1:2280\";i:2306;s:6:\"1:2281\";i:2307;s:6:\"1:2282\";i:2308;s:6:\"1:2283\";i:2309;s:6:\"1:2284\";i:2310;s:6:\"1:2285\";i:2311;s:6:\"1:2286\";i:2312;s:6:\"1:2287\";i:2313;s:6:\"1:2288\";i:2314;s:6:\"1:2289\";i:2315;s:6:\"1:2290\";i:2316;s:6:\"1:2291\";i:2317;s:6:\"1:2292\";i:2318;s:6:\"1:2293\";i:2319;s:6:\"1:2294\";i:2320;s:6:\"1:2295\";i:2321;s:6:\"1:2029\";i:2322;s:6:\"1:2296\";i:2323;s:6:\"1:2032\";i:2324;s:6:\"1:2030\";i:2325;s:6:\"1:2297\";i:2326;s:6:\"1:2298\";i:2327;s:6:\"1:2299\";i:2328;s:6:\"1:2300\";i:2329;s:6:\"1:2301\";i:2330;s:6:\"1:2302\";i:2331;s:6:\"1:2303\";i:2332;s:6:\"1:2304\";i:2333;s:6:\"1:2305\";i:2334;s:6:\"1:2306\";i:2335;s:6:\"1:2307\";i:2336;s:6:\"1:2308\";i:2337;s:6:\"1:2309\";i:2338;s:6:\"1:2310\";i:2339;s:6:\"1:2031\";i:2340;s:6:\"1:2311\";i:2341;s:6:\"1:2312\";i:2342;s:6:\"1:2313\";i:2343;s:6:\"1:2314\";i:2344;s:6:\"1:2315\";i:2345;s:6:\"1:2316\";i:2346;s:6:\"1:2317\";i:2347;s:6:\"1:2318\";i:2348;s:6:\"1:2319\";i:2349;s:6:\"1:2320\";i:2350;s:6:\"1:2321\";i:2351;s:6:\"1:2322\";i:2352;s:6:\"1:2323\";i:2353;s:6:\"1:2324\";i:2354;s:6:\"1:2325\";i:2355;s:6:\"1:2326\";i:2356;s:6:\"1:2327\";i:2357;s:6:\"1:2328\";i:2358;s:6:\"1:2329\";i:2359;s:6:\"1:2330\";i:2360;s:6:\"1:2331\";i:2361;s:6:\"1:2332\";i:2362;s:6:\"1:2333\";i:2363;s:6:\"1:2334\";i:2364;s:6:\"1:2335\";i:2365;s:6:\"1:2336\";i:2366;s:6:\"1:2337\";i:2367;s:6:\"1:2338\";i:2368;s:6:\"1:2339\";i:2369;s:6:\"1:2340\";i:2370;s:6:\"1:2341\";i:2371;s:6:\"1:2025\";i:2372;s:6:\"1:2342\";i:2373;s:6:\"1:2343\";i:2374;s:6:\"1:2344\";i:2375;s:6:\"1:2345\";i:2376;s:6:\"1:2346\";i:2377;s:6:\"1:2347\";i:2378;s:6:\"1:2348\";i:2379;s:6:\"1:2349\";i:2380;s:6:\"1:2350\";i:2381;s:6:\"1:2026\";i:2382;s:6:\"1:2351\";i:2383;s:6:\"1:2352\";i:2384;s:6:\"1:2353\";i:2385;s:6:\"1:2354\";i:2386;s:6:\"1:2355\";i:2387;s:6:\"1:2356\";i:2388;s:6:\"1:2357\";i:2389;s:6:\"1:2358\";i:2390;s:6:\"1:2359\";i:2391;s:6:\"1:2360\";i:2392;s:6:\"1:2361\";i:2393;s:6:\"1:2362\";i:2394;s:6:\"1:2363\";i:2395;s:6:\"1:2364\";i:2396;s:6:\"1:2365\";i:2397;s:6:\"1:2366\";i:2398;s:6:\"1:2367\";i:2399;s:6:\"1:2368\";i:2400;s:6:\"1:2369\";i:2401;s:6:\"1:2370\";i:2402;s:6:\"1:2371\";i:2403;s:6:\"1:2372\";i:2404;s:6:\"1:2373\";i:2405;s:6:\"1:2374\";i:2406;s:6:\"1:2375\";i:2407;s:6:\"1:2376\";i:2408;s:6:\"1:2377\";i:2409;s:6:\"1:2378\";i:2410;s:6:\"1:2379\";i:2411;s:6:\"1:2380\";i:2412;s:6:\"1:2381\";i:2413;s:6:\"1:2382\";i:2414;s:6:\"1:2383\";i:2415;s:6:\"1:2384\";i:2416;s:6:\"1:2385\";i:2417;s:6:\"1:2386\";i:2418;s:6:\"1:2387\";i:2419;s:6:\"1:2388\";i:2420;s:6:\"1:2389\";i:2421;s:6:\"1:2390\";i:2422;s:6:\"1:2391\";i:2423;s:6:\"1:2392\";i:2424;s:6:\"1:2393\";i:2425;s:6:\"1:2394\";i:2426;s:6:\"1:2395\";i:2427;s:6:\"1:1990\";i:2428;s:6:\"1:2396\";i:2429;s:6:\"1:2397\";i:2430;s:6:\"1:2398\";i:2431;s:6:\"1:2399\";i:2432;s:6:\"1:2400\";i:2433;s:6:\"1:2401\";i:2434;s:6:\"1:2402\";i:2435;s:6:\"1:2403\";i:2436;s:6:\"1:2404\";i:2437;s:6:\"1:2405\";i:2438;s:6:\"1:2406\";i:2439;s:6:\"1:2407\";i:2440;s:6:\"1:2408\";i:2441;s:6:\"1:2409\";i:2442;s:6:\"1:2410\";i:2443;s:6:\"1:2411\";i:2444;s:6:\"1:2412\";i:2445;s:6:\"1:2413\";i:2446;s:6:\"1:2414\";i:2447;s:6:\"1:2415\";i:2448;s:6:\"1:2416\";i:2449;s:6:\"1:2417\";i:2450;s:6:\"1:2418\";i:2451;s:6:\"1:2419\";i:2452;s:6:\"1:2420\";i:2453;s:6:\"1:2421\";i:2454;s:6:\"1:2422\";i:2455;s:6:\"1:2423\";i:2456;s:6:\"1:2424\";i:2457;s:6:\"1:2425\";i:2458;s:6:\"1:2426\";i:2459;s:6:\"1:2427\";i:2460;s:6:\"1:2428\";i:2461;s:6:\"1:2429\";i:2462;s:6:\"1:2430\";i:2463;s:6:\"1:2431\";i:2464;s:6:\"1:2432\";i:2465;s:6:\"1:2433\";i:2466;s:6:\"1:2434\";i:2467;s:6:\"1:2435\";i:2468;s:6:\"1:2436\";i:2469;s:6:\"1:2437\";i:2470;s:6:\"1:2438\";i:2471;s:6:\"1:2439\";i:2472;s:6:\"1:2440\";i:2473;s:6:\"1:2441\";i:2474;s:6:\"1:2442\";i:2475;s:6:\"1:2443\";i:2476;s:6:\"1:2444\";i:2477;s:6:\"1:2445\";i:2478;s:6:\"1:2446\";i:2479;s:6:\"1:2447\";i:2480;s:6:\"1:2448\";i:2481;s:6:\"1:2449\";i:2482;s:6:\"1:2450\";i:2483;s:6:\"1:2451\";i:2484;s:6:\"1:2452\";i:2485;s:7:\"17:2453\";i:2486;s:6:\"3:2453\";i:2487;s:7:\"18:2453\";i:2488;s:6:\"1:2454\";i:2489;s:6:\"1:2455\";i:2490;s:6:\"1:2456\";i:2491;s:6:\"1:2457\";i:2492;s:6:\"1:2458\";i:2493;s:6:\"1:2459\";i:2494;s:6:\"1:2460\";i:2495;s:6:\"1:2461\";i:2496;s:6:\"1:2462\";i:2497;s:6:\"1:2453\";i:2498;s:6:\"1:2463\";i:2499;s:6:\"1:2464\";i:2500;s:6:\"1:2465\";i:2501;s:6:\"1:2466\";i:2502;s:6:\"1:2467\";i:2503;s:6:\"1:2468\";i:2504;s:6:\"1:2469\";i:2505;s:6:\"1:2470\";i:2506;s:6:\"1:2471\";i:2507;s:6:\"1:2472\";i:2508;s:6:\"1:2473\";i:2509;s:6:\"1:2474\";}","no");
INSERT INTO `wp_options` VALUES("2183","chld_thm_cfg_options_dict_sel","a:2474:{i:1;s:10:\".alignnone\";i:2;s:29:\".aligncenter, div.aligncenter\";i:3;s:11:\".alignright\";i:4;s:10:\".alignleft\";i:5;s:16:\"a img.alignright\";i:6;s:15:\"a img.alignnone\";i:7;s:15:\"a img.alignleft\";i:8;s:17:\"a img.aligncenter\";i:9;s:26:\".wp-caption .wp-caption-dt\";i:10;s:32:\".wp-caption .wp-caption-dt:empty\";i:11;s:21:\".wp-caption.alignnone\";i:12;s:21:\".wp-caption.alignleft\";i:13;s:22:\".wp-caption.alignright\";i:14;s:15:\".wp-caption img\";i:15;s:29:\".wp-caption p.wp-caption-text\";i:16;s:19:\".screen-reader-text\";i:17;s:25:\".screen-reader-text:focus\";i:18;s:19:\"aside .widget label\";i:19;s:22:\".sticky, .bypostauthor\";i:20;s:43:\"[class^=\"rt-icon2-\"], [class*=\" rt-icon2-\"]\";i:21;s:24:\".rt-icon2-mobile2:before\";i:22;s:24:\".rt-icon2-laptop2:before\";i:23;s:25:\".rt-icon2-desktop2:before\";i:24;s:24:\".rt-icon2-tablet2:before\";i:25;s:23:\".rt-icon2-phone2:before\";i:26;s:25:\".rt-icon2-document:before\";i:27;s:25:\".rt-icon2-calendar:before\";i:28;s:24:\".rt-icon2-picture:before\";i:29;s:25:\".rt-icon2-pictures:before\";i:30;s:22:\".rt-icon2-video:before\";i:31;s:23:\".rt-icon2-camera:before\";i:32;s:24:\".rt-icon2-printer:before\";i:33;s:24:\".rt-icon2-toolbox:before\";i:34;s:23:\".rt-icon2-wallet:before\";i:35;s:21:\".rt-icon2-gift:before\";i:36;s:26:\".rt-icon2-hourglass:before\";i:37;s:21:\".rt-icon2-lock:before\";i:38;s:26:\".rt-icon2-megaphone:before\";i:39;s:26:\".rt-icon2-telescope:before\";i:40;s:22:\".rt-icon2-gears:before\";i:41;s:20:\".rt-icon2-key:before\";i:42;s:27:\".rt-icon2-attachment:before\";i:43;s:26:\".rt-icon2-pricetags:before\";i:44;s:26:\".rt-icon2-lightbulb:before\";i:45;s:23:\".rt-icon2-layers:before\";i:46;s:23:\".rt-icon2-pencil:before\";i:47;s:22:\".rt-icon2-tools:before\";i:48;s:24:\".rt-icon2-tools-2:before\";i:49;s:27:\".rt-icon2-paintbrush:before\";i:50;s:33:\".rt-icon2-magnifying-glass:before\";i:51;s:23:\".rt-icon2-beaker:before\";i:52;s:21:\".rt-icon2-wine:before\";i:53;s:22:\".rt-icon2-globe:before\";i:54;s:24:\".rt-icon2-map-pin:before\";i:55;s:23:\".rt-icon2-upload:before\";i:56;s:25:\".rt-icon2-download:before\";i:57;s:23:\".rt-icon2-global:before\";i:58;s:24:\".rt-icon2-compass:before\";i:59;s:22:\".rt-icon2-quote:before\";i:60;s:23:\".rt-icon2-quote2:before\";i:61;s:20:\".rt-icon2-tag:before\";i:62;s:21:\".rt-icon2-link:before\";i:63;s:24:\".rt-icon2-cabinet:before\";i:64;s:26:\".rt-icon2-calendar2:before\";i:65;s:26:\".rt-icon2-calendar3:before\";i:66;s:21:\".rt-icon2-file:before\";i:67;s:23:\".rt-icon2-phone3:before\";i:68;s:24:\".rt-icon2-tablet3:before\";i:69;s:23:\".rt-icon2-window:before\";i:70;s:24:\".rt-icon2-monitor:before\";i:71;s:21:\".rt-icon2-ipod:before\";i:72;s:19:\".rt-icon2-tv:before\";i:73;s:22:\".rt-icon2-film2:before\";i:74;s:27:\".rt-icon2-microphone:before\";i:75;s:22:\".rt-icon2-drink:before\";i:76;s:23:\".rt-icon2-drink2:before\";i:77;s:23:\".rt-icon2-drink3:before\";i:78;s:24:\".rt-icon2-coffee2:before\";i:79;s:20:\".rt-icon2-mug:before\";i:80;s:25:\".rt-icon2-icecream:before\";i:81;s:22:\".rt-icon2-cake2:before\";i:82;s:26:\".rt-icon2-checkmark:before\";i:83;s:23:\".rt-icon2-cancel:before\";i:84;s:21:\".rt-icon2-plus:before\";i:85;s:22:\".rt-icon2-minus:before\";i:86;s:21:\".rt-icon2-cog2:before\";i:87;s:23:\".rt-icon2-health:before\";i:88;s:26:\".rt-icon2-suitcase2:before\";i:89;s:26:\".rt-icon2-suitcase3:before\";i:90;s:25:\".rt-icon2-picture2:before\";i:91;s:21:\".rt-icon2-time:before\";i:92;s:27:\".rt-icon2-checkmark2:before\";i:93;s:24:\".rt-icon2-cancel2:before\";i:94;s:24:\".rt-icon2-upload2:before\";i:95;s:25:\".rt-icon2-location:before\";i:96;s:26:\".rt-icon2-download2:before\";i:97;s:23:\".rt-icon2-basket:before\";i:98;s:24:\".rt-icon2-gamepad:before\";i:99;s:23:\".rt-icon2-phone4:before\";i:100;s:22:\".rt-icon2-image:before\";i:101;s:20:\".rt-icon2-map:before\";i:102;s:25:\".rt-icon2-trashcan:before\";i:103;s:25:\".rt-icon2-graduate:before\";i:104;s:20:\".rt-icon2-lab:before\";i:105;s:20:\".rt-icon2-tie:before\";i:106;s:25:\".rt-icon2-football:before\";i:107;s:26:\".rt-icon2-eightball:before\";i:108;s:24:\".rt-icon2-bowling:before\";i:109;s:27:\".rt-icon2-bowlingpin:before\";i:110;s:25:\".rt-icon2-baseball:before\";i:111;s:23:\".rt-icon2-soccer:before\";i:112;s:26:\".rt-icon2-3dglasses:before\";i:113;s:26:\".rt-icon2-microwave:before\";i:114;s:29:\".rt-icon2-refrigerator:before\";i:115;s:21:\".rt-icon2-oven:before\";i:116;s:31:\".rt-icon2-washingmachine:before\";i:117;s:22:\".rt-icon2-mouse:before\";i:118;s:22:\".rt-icon2-medal:before\";i:119;s:26:\".rt-icon2-magnifier:before\";i:120;s:22:\".rt-icon2-stack:before\";i:121;s:23:\".rt-icon2-stack2:before\";i:122;s:23:\".rt-icon2-stack3:before\";i:123;s:20:\".rt-icon2-pil:before\";i:124;s:26:\".rt-icon2-injection:before\";i:125;s:28:\".rt-icon2-thermometer:before\";i:126;s:24:\".rt-icon2-library:before\";i:127;s:24:\".rt-icon2-auction:before\";i:128;s:24:\".rt-icon2-justice:before\";i:129;s:24:\".rt-icon2-pencil2:before\";i:130;s:21:\".rt-icon2-male:before\";i:131;s:23:\".rt-icon2-female:before\";i:132;s:26:\".rt-icon2-pictures2:before\";i:133;s:25:\".rt-icon2-compass2:before\";i:134;s:26:\".rt-icon2-clipboard:before\";i:135;s:22:\".rt-icon2-ruler:before\";i:136;s:22:\".rt-icon2-heart:before\";i:137;s:22:\".rt-icon2-cloud:before\";i:138;s:21:\".rt-icon2-star:before\";i:139;s:20:\".rt-icon2-tv2:before\";i:140;s:22:\".rt-icon2-sound:before\";i:141;s:23:\".rt-icon2-video2:before\";i:142;s:22:\".rt-icon2-trash:before\";i:143;s:21:\".rt-icon2-user:before\";i:144;s:21:\".rt-icon2-key2:before\";i:145;s:24:\".rt-icon2-search2:before\";i:146;s:25:\".rt-icon2-settings:before\";i:147;s:24:\".rt-icon2-camera2:before\";i:148;s:21:\".rt-icon2-tag2:before\";i:149;s:22:\".rt-icon2-lock2:before\";i:150;s:21:\".rt-icon2-bulb:before\";i:151;s:20:\".rt-icon2-pen:before\";i:152;s:25:\".rt-icon2-diamond2:before\";i:153;s:24:\".rt-icon2-display:before\";i:154;s:26:\".rt-icon2-location2:before\";i:155;s:20:\".rt-icon2-eye:before\";i:156;s:23:\".rt-icon2-bubble:before\";i:157;s:23:\".rt-icon2-stack4:before\";i:158;s:20:\".rt-icon2-cup:before\";i:159;s:23:\".rt-icon2-phone5:before\";i:160;s:21:\".rt-icon2-news:before\";i:161;s:21:\".rt-icon2-mail:before\";i:162;s:21:\".rt-icon2-like:before\";i:163;s:22:\".rt-icon2-photo:before\";i:164;s:21:\".rt-icon2-note:before\";i:165;s:22:\".rt-icon2-clock:before\";i:166;s:27:\".rt-icon2-paperplane:before\";i:167;s:23:\".rt-icon2-params:before\";i:168;s:25:\".rt-icon2-banknote:before\";i:169;s:21:\".rt-icon2-data:before\";i:170;s:22:\".rt-icon2-music:before\";i:171;s:27:\".rt-icon2-megaphone2:before\";i:172;s:22:\".rt-icon2-study:before\";i:173;s:21:\".rt-icon2-lab2:before\";i:174;s:21:\".rt-icon2-food:before\";i:175;s:24:\".rt-icon2-t-shirt:before\";i:176;s:21:\".rt-icon2-fire:before\";i:177;s:21:\".rt-icon2-clip:before\";i:178;s:21:\".rt-icon2-shop:before\";i:179;s:26:\".rt-icon2-calendar4:before\";i:180;s:24:\".rt-icon2-wallet2:before\";i:181;s:22:\".rt-icon2-vynil:before\";i:182;s:22:\".rt-icon2-truck:before\";i:183;s:22:\".rt-icon2-world:before\";i:184;s:20:\".rt-icon2-sun:before\";i:185;s:21:\".rt-icon2-moon:before\";i:186;s:23:\".rt-icon2-cloudy:before\";i:187;s:26:\".rt-icon2-lightning:before\";i:188;s:22:\".rt-icon2-rainy:before\";i:189;s:23:\".rt-icon2-rainy2:before\";i:190;s:22:\".rt-icon2-snowy:before\";i:191;s:23:\".rt-icon2-snowy2:before\";i:192;s:24:\".rt-icon2-weather:before\";i:193;s:22:\".rt-icon2-store:before\";i:194;s:20:\".rt-icon2-out:before\";i:195;s:19:\".rt-icon2-in:before\";i:196;s:23:\".rt-icon2-in-alt:before\";i:197;s:21:\".rt-icon2-home:before\";i:198;s:27:\".rt-icon2-lightbulb2:before\";i:199;s:23:\".rt-icon2-anchor:before\";i:200;s:24:\".rt-icon2-feather:before\";i:201;s:23:\".rt-icon2-expand:before\";i:202;s:25:\".rt-icon2-maximize:before\";i:203;s:24:\".rt-icon2-search3:before\";i:204;s:20:\".rt-icon2-add:before\";i:205;s:25:\".rt-icon2-subtract:before\";i:206;s:23:\".rt-icon2-close2:before\";i:207;s:21:\".rt-icon2-book:before\";i:208;s:24:\".rt-icon2-spinner:before\";i:209;s:21:\".rt-icon2-play:before\";i:210;s:21:\".rt-icon2-stop:before\";i:211;s:22:\".rt-icon2-pause:before\";i:212;s:24:\".rt-icon2-forward:before\";i:213;s:23:\".rt-icon2-rewind:before\";i:214;s:23:\".rt-icon2-sound2:before\";i:215;s:26:\".rt-icon2-sound-alt:before\";i:216;s:25:\".rt-icon2-soundoff:before\";i:217;s:22:\".rt-icon2-inbox:before\";i:218;s:26:\".rt-icon2-inbox-alt:before\";i:219;s:25:\".rt-icon2-envelope:before\";i:220;s:24:\".rt-icon2-compose:before\";i:221;s:30:\".rt-icon2-newspaper-alt:before\";i:222;s:26:\".rt-icon2-calendar5:before\";i:223;s:26:\".rt-icon2-hyperlink:before\";i:224;s:23:\".rt-icon2-trash2:before\";i:225;s:21:\".rt-icon2-menu:before\";i:226;s:24:\".rt-icon2-gallery:before\";i:227;s:27:\".rt-icon2-calculator:before\";i:228;s:23:\".rt-icon2-clock2:before\";i:229;s:26:\".rt-icon2-portfolio:before\";i:230;s:22:\".rt-icon2-user2:before\";i:231;s:22:\".rt-icon2-users:before\";i:232;s:23:\".rt-icon2-heart2:before\";i:233;s:21:\".rt-icon2-chat:before\";i:234;s:25:\".rt-icon2-comments:before\";i:235;s:23:\".rt-icon2-screen:before\";i:236;s:23:\".rt-icon2-iphone:before\";i:237;s:26:\".rt-icon2-instagram:before\";i:238;s:24:\".rt-icon2-pin-alt:before\";i:239;s:24:\".rt-icon2-camera3:before\";i:240;s:29:\".rt-icon2-chevron-down:before\";i:241;s:29:\".rt-icon2-chevron-left:before\";i:242;s:30:\".rt-icon2-chevron-right:before\";i:243;s:27:\".rt-icon2-chevron-up:before\";i:244;s:23:\".rt-icon2-quote3:before\";i:245;s:24:\".rt-icon2-search4:before\";i:246;s:30:\".rt-icon2-triangle-down:before\";i:247;s:30:\".rt-icon2-triangle-left:before\";i:248;s:31:\".rt-icon2-triangle-right:before\";i:249;s:28:\".rt-icon2-triangle-up:before\";i:250;s:27:\".rt-icon2-file-empty:before\";i:251;s:28:\".rt-icon2-files-empty:before\";i:252;s:27:\".rt-icon2-file-text2:before\";i:253;s:29:\".rt-icon2-file-picture:before\";i:254;s:27:\".rt-icon2-file-music:before\";i:255;s:26:\".rt-icon2-file-play:before\";i:256;s:27:\".rt-icon2-file-video:before\";i:257;s:25:\".rt-icon2-file-zip:before\";i:258;s:23:\".rt-icon2-phone6:before\";i:259;s:28:\".rt-icon2-quotes-left:before\";i:260;s:29:\".rt-icon2-quotes-right:before\";i:261;s:25:\".rt-icon2-spinner6:before\";i:262;s:23:\".rt-icon2-magnet:before\";i:263;s:23:\".rt-icon2-google:before\";i:264;s:28:\".rt-icon2-google-plus:before\";i:265;s:29:\".rt-icon2-google-plus2:before\";i:266;s:29:\".rt-icon2-google-plus3:before\";i:267;s:29:\".rt-icon2-google-drive:before\";i:268;s:25:\".rt-icon2-facebook:before\";i:269;s:26:\".rt-icon2-facebook2:before\";i:270;s:26:\".rt-icon2-facebook3:before\";i:271;s:27:\".rt-icon2-instagram2:before\";i:272;s:24:\".rt-icon2-twitter:before\";i:273;s:25:\".rt-icon2-twitter2:before\";i:274;s:25:\".rt-icon2-twitter3:before\";i:275;s:22:\".rt-icon2-feed2:before\";i:276;s:22:\".rt-icon2-feed3:before\";i:277;s:22:\".rt-icon2-feed4:before\";i:278;s:25:\".rt-icon2-youtube5:before\";i:279;s:25:\".rt-icon2-youtube2:before\";i:280;s:25:\".rt-icon2-youtube3:before\";i:281;s:25:\".rt-icon2-youtube4:before\";i:282;s:22:\".rt-icon2-vimeo:before\";i:283;s:23:\".rt-icon2-vimeo2:before\";i:284;s:23:\".rt-icon2-vimeo3:before\";i:285;s:23:\".rt-icon2-lanyrd:before\";i:286;s:23:\".rt-icon2-flickr:before\";i:287;s:24:\".rt-icon2-flickr2:before\";i:288;s:24:\".rt-icon2-flickr3:before\";i:289;s:24:\".rt-icon2-flickr4:before\";i:290;s:24:\".rt-icon2-picassa:before\";i:291;s:25:\".rt-icon2-picassa2:before\";i:292;s:25:\".rt-icon2-dribbble:before\";i:293;s:26:\".rt-icon2-dribbble2:before\";i:294;s:26:\".rt-icon2-dribbble3:before\";i:295;s:24:\".rt-icon2-dropbox:before\";i:296;s:24:\".rt-icon2-github3:before\";i:297;s:26:\".rt-icon2-wordpress:before\";i:298;s:27:\".rt-icon2-wordpress2:before\";i:299;s:23:\".rt-icon2-joomla:before\";i:300;s:24:\".rt-icon2-blogger:before\";i:301;s:25:\".rt-icon2-blogger2:before\";i:302;s:23:\".rt-icon2-tumblr:before\";i:303;s:24:\".rt-icon2-tumblr2:before\";i:304;s:22:\".rt-icon2-apple:before\";i:305;s:24:\".rt-icon2-android:before\";i:306;s:24:\".rt-icon2-windows:before\";i:307;s:25:\".rt-icon2-windows8:before\";i:308;s:22:\".rt-icon2-skype:before\";i:309;s:23:\".rt-icon2-reddit:before\";i:310;s:25:\".rt-icon2-linkedin:before\";i:311;s:26:\".rt-icon2-linkedin2:before\";i:312;s:23:\".rt-icon2-lastfm:before\";i:313;s:24:\".rt-icon2-lastfm2:before\";i:314;s:26:\".rt-icon2-delicious:before\";i:315;s:28:\".rt-icon2-stumbleupon:before\";i:316;s:29:\".rt-icon2-stumbleupon2:before\";i:317;s:26:\".rt-icon2-pinterest:before\";i:318;s:27:\".rt-icon2-pinterest2:before\";i:319;s:22:\".rt-icon2-html5:before\";i:320;s:23:\".rt-icon2-html52:before\";i:321;s:21:\".rt-icon2-css3:before\";i:322;s:23:\".rt-icon2-chrome:before\";i:323;s:24:\".rt-icon2-firefox:before\";i:324;s:19:\".rt-icon2-IE:before\";i:325;s:22:\".rt-icon2-opera:before\";i:326;s:23:\".rt-icon2-safari:before\";i:327;s:23:\".rt-icon2-times2:before\";i:328;s:21:\".rt-icon2-tick:before\";i:329;s:22:\".rt-icon2-plus2:before\";i:330;s:23:\".rt-icon2-minus2:before\";i:331;s:23:\".rt-icon2-equals:before\";i:332;s:23:\".rt-icon2-divide:before\";i:333;s:31:\".rt-icon2-chevron-right2:before\";i:334;s:30:\".rt-icon2-chevron-left2:before\";i:335;s:34:\".rt-icon2-arrow-right-thick:before\";i:336;s:33:\".rt-icon2-arrow-left-thick:before\";i:337;s:22:\".rt-icon2-home2:before\";i:338;s:30:\".rt-icon2-arrow-forward:before\";i:339;s:27:\".rt-icon2-arrow-back:before\";i:340;s:22:\".rt-icon2-link2:before\";i:341;s:23:\".rt-icon2-image2:before\";i:342;s:31:\".rt-icon2-delete-outline:before\";i:343;s:30:\".rt-icon2-cloud-storage:before\";i:344;s:23:\".rt-icon2-heart3:before\";i:345;s:28:\".rt-icon2-attachment2:before\";i:346;s:28:\".rt-icon2-media-pause:before\";i:347;s:22:\".rt-icon2-group:before\";i:348;s:26:\".rt-icon2-chart-pie:before\";i:349;s:27:\".rt-icon2-chart-line:before\";i:350;s:26:\".rt-icon2-chart-bar:before\";i:351;s:27:\".rt-icon2-chart-area:before\";i:352;s:23:\".rt-icon2-globe2:before\";i:353;s:21:\".rt-icon2-eye2:before\";i:354;s:21:\".rt-icon2-cog3:before\";i:355;s:24:\".rt-icon2-camera4:before\";i:356;s:24:\".rt-icon2-refresh:before\";i:357;s:27:\".rt-icon2-info-large:before\";i:358;s:21:\".rt-icon2-zoom:before\";i:359;s:25:\".rt-icon2-zoom-out:before\";i:360;s:24:\".rt-icon2-zoom-in:before\";i:361;s:33:\".rt-icon2-sort-numerically:before\";i:362;s:36:\".rt-icon2-sort-alphabetically:before\";i:363;s:30:\".rt-icon2-input-checked:before\";i:364;s:25:\".rt-icon2-calender:before\";i:365;s:24:\".rt-icon2-spanner:before\";i:366;s:23:\".rt-icon2-phone7:before\";i:367;s:29:\".rt-icon2-media-rewind:before\";i:368;s:34:\".rt-icon2-adjust-brightness:before\";i:369;s:22:\".rt-icon2-waves:before\";i:370;s:31:\".rt-icon2-social-twitter:before\";i:371;s:32:\".rt-icon2-social-facebook:before\";i:372;s:32:\".rt-icon2-social-dribbble:before\";i:373;s:27:\".rt-icon2-media-stop:before\";i:374;s:29:\".rt-icon2-media-record:before\";i:375;s:27:\".rt-icon2-media-play:before\";i:376;s:35:\".rt-icon2-media-fast-forward:before\";i:377;s:28:\".rt-icon2-media-eject:before\";i:378;s:29:\".rt-icon2-social-vimeo:before\";i:379;s:31:\".rt-icon2-social-tumbler:before\";i:380;s:29:\".rt-icon2-social-skype:before\";i:381;s:33:\".rt-icon2-social-pinterest:before\";i:382;s:32:\".rt-icon2-social-linkedin:before\";i:383;s:31:\".rt-icon2-social-last-fm:before\";i:384;s:30:\".rt-icon2-social-github:before\";i:385;s:30:\".rt-icon2-social-flickr:before\";i:386;s:19:\".rt-icon2-at:before\";i:387;s:30:\".rt-icon2-times-outline:before\";i:388;s:29:\".rt-icon2-plus-outline:before\";i:389;s:30:\".rt-icon2-minus-outline:before\";i:390;s:29:\".rt-icon2-tick-outline:before\";i:391;s:33:\".rt-icon2-th-large-outline:before\";i:392;s:31:\".rt-icon2-equals-outline:before\";i:393;s:31:\".rt-icon2-divide-outline:before\";i:394;s:38:\".rt-icon2-chevron-right-outline:before\";i:395;s:37:\".rt-icon2-chevron-left-outline:before\";i:396;s:36:\".rt-icon2-arrow-right-outline:before\";i:397;s:35:\".rt-icon2-arrow-left-outline:before\";i:398;s:33:\".rt-icon2-th-small-outline:before\";i:399;s:32:\".rt-icon2-th-menu-outline:before\";i:400;s:32:\".rt-icon2-th-list-outline:before\";i:401;s:29:\".rt-icon2-home-outline:before\";i:402;s:33:\".rt-icon2-arrow-up-outline:before\";i:403;s:38:\".rt-icon2-arrow-forward-outline:before\";i:404;s:35:\".rt-icon2-arrow-down-outline:before\";i:405;s:35:\".rt-icon2-arrow-back-outline:before\";i:406;s:23:\".rt-icon2-trash3:before\";i:407;s:28:\".rt-icon2-rss-outline:before\";i:408;s:24:\".rt-icon2-message:before\";i:409;s:33:\".rt-icon2-location-outline:before\";i:410;s:29:\".rt-icon2-link-outline:before\";i:411;s:30:\".rt-icon2-image-outline:before\";i:412;s:31:\".rt-icon2-export-outline:before\";i:413;s:22:\".rt-icon2-cross:before\";i:414;s:30:\".rt-icon2-wi-fi-outline:before\";i:415;s:29:\".rt-icon2-star-outline:before\";i:416;s:36:\".rt-icon2-media-pause-outline:before\";i:417;s:22:\".rt-icon2-mail2:before\";i:418;s:30:\".rt-icon2-heart-outline:before\";i:419;s:30:\".rt-icon2-flash-outline:before\";i:420;s:31:\".rt-icon2-cancel-outline:before\";i:421;s:35:\".rt-icon2-arrow-move-outline:before\";i:422;s:22:\".rt-icon2-watch:before\";i:423;s:32:\".rt-icon2-warning-outline:before\";i:424;s:22:\".rt-icon2-time2:before\";i:425;s:30:\".rt-icon2-radar-outline:before\";i:426;s:34:\".rt-icon2-lock-open-outline:before\";i:427;s:39:\".rt-icon2-location-arrow-outline:before\";i:428;s:29:\".rt-icon2-info-outline:before\";i:429;s:34:\".rt-icon2-backspace-outline:before\";i:430;s:35:\".rt-icon2-attachment-outline:before\";i:431;s:29:\".rt-icon2-user-outline:before\";i:432;s:36:\".rt-icon2-user-delete-outline:before\";i:433;s:33:\".rt-icon2-user-add-outline:before\";i:434;s:36:\".rt-icon2-lock-closed-outline:before\";i:435;s:30:\".rt-icon2-group-outline:before\";i:436;s:34:\".rt-icon2-chart-pie-outline:before\";i:437;s:35:\".rt-icon2-chart-line-outline:before\";i:438;s:34:\".rt-icon2-chart-bar-outline:before\";i:439;s:35:\".rt-icon2-chart-area-outline:before\";i:440;s:30:\".rt-icon2-video-outline:before\";i:441;s:42:\".rt-icon2-point-of-interest-outline:before\";i:442;s:21:\".rt-icon2-map2:before\";i:443;s:28:\".rt-icon2-key-outline:before\";i:444;s:33:\".rt-icon2-infinity-outline:before\";i:445;s:30:\".rt-icon2-globe-outline:before\";i:446;s:28:\".rt-icon2-eye-outline:before\";i:447;s:28:\".rt-icon2-cog-outline:before\";i:448;s:31:\".rt-icon2-camera-outline:before\";i:449;s:24:\".rt-icon2-support:before\";i:450;s:33:\".rt-icon2-scissors-outline:before\";i:451;s:32:\".rt-icon2-refresh-outline:before\";i:452;s:35:\".rt-icon2-info-large-outline:before\";i:453;s:33:\".rt-icon2-download-outline:before\";i:454;s:28:\".rt-icon2-battery-low:before\";i:455;s:29:\".rt-icon2-zoom-outline:before\";i:456;s:33:\".rt-icon2-zoom-out-outline:before\";i:457;s:32:\".rt-icon2-zoom-in-outline:before\";i:458;s:21:\".rt-icon2-tag3:before\";i:459;s:29:\".rt-icon2-tabs-outline:before\";i:460;s:28:\".rt-icon2-pin-outline:before\";i:461;s:31:\".rt-icon2-message-typing:before\";i:462;s:27:\".rt-icon2-directions:before\";i:463;s:29:\".rt-icon2-battery-full:before\";i:464;s:31:\".rt-icon2-battery-charge:before\";i:465;s:24:\".rt-icon2-pencil3:before\";i:466;s:23:\".rt-icon2-folder:before\";i:467;s:30:\".rt-icon2-folder-delete:before\";i:468;s:27:\".rt-icon2-folder-add:before\";i:469;s:21:\".rt-icon2-edit:before\";i:470;s:26:\".rt-icon2-document2:before\";i:471;s:32:\".rt-icon2-document-delete:before\";i:472;s:29:\".rt-icon2-document-add:before\";i:473;s:22:\".rt-icon2-brush:before\";i:474;s:26:\".rt-icon2-thumbs-up:before\";i:475;s:28:\".rt-icon2-thumbs-down:before\";i:476;s:21:\".rt-icon2-pen2:before\";i:477;s:41:\".rt-icon2-sort-numerically-outline:before\";i:478;s:44:\".rt-icon2-sort-alphabetically-outline:before\";i:479;s:40:\".rt-icon2-social-last-fm-circular:before\";i:480;s:39:\".rt-icon2-social-github-circular:before\";i:481;s:25:\".rt-icon2-compass3:before\";i:482;s:29:\".rt-icon2-code-outline:before\";i:483;s:33:\".rt-icon2-calender-outline:before\";i:484;s:30:\".rt-icon2-business-card:before\";i:485;s:25:\".rt-icon2-arrow-up:before\";i:486;s:28:\".rt-icon2-arrow-right:before\";i:487;s:27:\".rt-icon2-arrow-left:before\";i:488;s:30:\".rt-icon2-document-text:before\";i:489;s:27:\".rt-icon2-clipboard2:before\";i:490;s:28:\".rt-icon2-calculator2:before\";i:491;s:39:\".rt-icon2-arrow-minimise-outline:before\";i:492;s:39:\".rt-icon2-arrow-maximise-outline:before\";i:493;s:27:\".rt-icon2-arrow-down:before\";i:494;s:22:\".rt-icon2-gift2:before\";i:495;s:22:\".rt-icon2-film3:before\";i:496;s:21:\".rt-icon2-bell:before\";i:497;s:31:\".rt-icon2-anchor-outline:before\";i:498;s:30:\".rt-icon2-world-outline:before\";i:499;s:29:\".rt-icon2-shopping-bag:before\";i:500;s:30:\".rt-icon2-power-outline:before\";i:501;s:30:\".rt-icon2-notes-outline:before\";i:502;s:30:\".rt-icon2-device-tablet:before\";i:503;s:29:\".rt-icon2-device-phone:before\";i:504;s:30:\".rt-icon2-device-laptop:before\";i:505;s:31:\".rt-icon2-device-desktop:before\";i:506;s:26:\".rt-icon2-briefcase:before\";i:507;s:26:\".rt-icon2-stopwatch:before\";i:508;s:32:\".rt-icon2-spanner-outline:before\";i:509;s:31:\".rt-icon2-puzzle-outline:before\";i:510;s:25:\".rt-icon2-printer2:before\";i:511;s:27:\".rt-icon2-lightbulb3:before\";i:512;s:29:\".rt-icon2-flag-outline:before\";i:513;s:25:\".rt-icon2-contacts:before\";i:514;s:31:\".rt-icon2-weather-stormy:before\";i:515;s:31:\".rt-icon2-weather-shower:before\";i:516;s:37:\".rt-icon2-weather-partly-sunny:before\";i:517;s:33:\".rt-icon2-weather-downpour:before\";i:518;s:31:\".rt-icon2-weather-cloudy:before\";i:519;s:30:\".rt-icon2-plane-outline:before\";i:520;s:30:\".rt-icon2-phone-outline:before\";i:521;s:35:\".rt-icon2-microphone-outline:before\";i:522;s:30:\".rt-icon2-weather-windy:before\";i:523;s:37:\".rt-icon2-weather-windy-cloudy:before\";i:524;s:30:\".rt-icon2-weather-sunny:before\";i:525;s:29:\".rt-icon2-weather-snow:before\";i:526;s:30:\".rt-icon2-weather-night:before\";i:527;s:35:\".rt-icon2-media-stop-outline:before\";i:528;s:37:\".rt-icon2-media-rewind-outline:before\";i:529;s:37:\".rt-icon2-media-record-outline:before\";i:530;s:35:\".rt-icon2-media-play-outline:before\";i:531;s:43:\".rt-icon2-media-fast-forward-outline:before\";i:532;s:36:\".rt-icon2-media-eject-outline:before\";i:533;s:22:\".rt-icon2-wine2:before\";i:534;s:30:\".rt-icon2-waves-outline:before\";i:535;s:23:\".rt-icon2-ticket:before\";i:536;s:22:\".rt-icon2-tags2:before\";i:537;s:21:\".rt-icon2-plug:before\";i:538;s:27:\".rt-icon2-headphones:before\";i:539;s:28:\".rt-icon2-credit-card:before\";i:540;s:24:\".rt-icon2-coffee3:before\";i:541;s:22:\".rt-icon2-book2:before\";i:542;s:21:\".rt-icon2-beer:before\";i:543;s:23:\".rt-icon2-volume:before\";i:544;s:26:\".rt-icon2-volume-up:before\";i:545;s:28:\".rt-icon2-volume-mute:before\";i:546;s:28:\".rt-icon2-volume-down:before\";i:547;s:38:\".rt-icon2-social-vimeo-circular:before\";i:548;s:40:\".rt-icon2-social-twitter-circular:before\";i:549;s:42:\".rt-icon2-social-pinterest-circular:before\";i:550;s:41:\".rt-icon2-social-linkedin-circular:before\";i:551;s:41:\".rt-icon2-social-facebook-circular:before\";i:552;s:41:\".rt-icon2-social-dribbble-circular:before\";i:553;s:21:\".rt-icon2-tree:before\";i:554;s:29:\".rt-icon2-thermometer2:before\";i:555;s:40:\".rt-icon2-social-tumbler-circular:before\";i:556;s:37:\".rt-icon2-social-skype-outline:before\";i:557;s:39:\".rt-icon2-social-flickr-circular:before\";i:558;s:35:\".rt-icon2-social-at-circular:before\";i:559;s:30:\".rt-icon2-shopping-cart:before\";i:560;s:25:\".rt-icon2-messages:before\";i:561;s:21:\".rt-icon2-leaf:before\";i:562;s:25:\".rt-icon2-feather2:before\";i:563;s:36:\".rt-icon2-keyboard_arrow_down:before\";i:564;s:36:\".rt-icon2-keyboard_arrow_left:before\";i:565;s:37:\".rt-icon2-keyboard_arrow_right:before\";i:566;s:34:\".rt-icon2-keyboard_arrow_up:before\";i:567;s:31:\".rt-icon2-directions_bus:before\";i:568;s:31:\".rt-icon2-directions_car:before\";i:569;s:33:\".rt-icon2-directions_ferry:before\";i:570;s:34:\".rt-icon2-directions_subway:before\";i:571;s:35:\".rt-icon2-directions_railway:before\";i:572;s:32:\".rt-icon2-directions_walk:before\";i:573;s:23:\".rt-icon2-flight:before\";i:574;s:32:\".rt-icon2-restaurant_menu:before\";i:575;s:21:\".rt-icon2-wifi:before\";i:576;s:21:\".rt-icon2-cake:before\";i:577;s:33:\".rt-icon2-favorite_outline:before\";i:578;s:26:\".rt-icon2-lock_open:before\";i:579;s:29:\".rt-icon2-lock_outline:before\";i:580;s:30:\".rt-icon2-perm_identity:before\";i:581;s:23:\".rt-icon2-search:before\";i:582;s:21:\".rt-icon2-eye3:before\";i:583;s:27:\".rt-icon2-paper-clip:before\";i:584;s:22:\".rt-icon2-mail3:before\";i:585;s:23:\".rt-icon2-image3:before\";i:586;s:23:\".rt-icon2-clock3:before\";i:587;s:23:\".rt-icon2-watch2:before\";i:588;s:24:\".rt-icon2-camera5:before\";i:589;s:23:\".rt-icon2-video3:before\";i:590;s:25:\".rt-icon2-monitor2:before\";i:591;s:21:\".rt-icon2-cog4:before\";i:592;s:23:\".rt-icon2-heart4:before\";i:593;s:24:\".rt-icon2-layers2:before\";i:594;s:22:\".rt-icon2-paper:before\";i:595;s:24:\".rt-icon2-search5:before\";i:596;s:28:\".rt-icon2-microphone2:before\";i:597;s:26:\".rt-icon2-umbrella2:before\";i:598;s:22:\".rt-icon2-moon2:before\";i:599;s:29:\".rt-icon2-thermometer3:before\";i:600;s:21:\".rt-icon2-drop:before\";i:601;s:21:\".rt-icon2-sun2:before\";i:602;s:23:\".rt-icon2-cloud2:before\";i:603;s:21:\".rt-icon2-map3:before\";i:604;s:21:\".rt-icon2-head:before\";i:605;s:27:\".rt-icon2-briefcase2:before\";i:606;s:30:\".rt-icon2-speech-bubble:before\";i:607;s:23:\".rt-icon2-globe3:before\";i:608;s:21:\".rt-icon2-tag4:before\";i:609;s:22:\".rt-icon2-star2:before\";i:610;s:22:\".rt-icon2-plus3:before\";i:611;s:23:\".rt-icon2-minus3:before\";i:612;s:23:\".rt-icon2-check2:before\";i:613;s:23:\".rt-icon2-cross2:before\";i:614;s:21:\".rt-icon2-help:before\";i:615;s:22:\".rt-icon2-files:before\";i:616;s:22:\".rt-icon2-file2:before\";i:617;s:24:\".rt-icon2-browser:before\";i:618;s:26:\".rt-icon2-wifi-full:before\";i:619;s:28:\".rt-icon2-microphone3:before\";i:620;s:26:\".rt-icon2-trashcan2:before\";i:621;s:24:\".rt-icon2-search6:before\";i:622;s:26:\".rt-icon2-calendar6:before\";i:623;s:23:\".rt-icon2-heart5:before\";i:624;s:22:\".rt-icon2-star3:before\";i:625;s:23:\".rt-icon2-clock4:before\";i:626;s:23:\".rt-icon2-users2:before\";i:627;s:22:\".rt-icon2-user3:before\";i:628;s:28:\".rt-icon2-creditcards:before\";i:629;s:28:\".rt-icon2-calculator3:before\";i:630;s:20:\".rt-icon2-bag:before\";i:631;s:25:\".rt-icon2-diamond3:before\";i:632;s:23:\".rt-icon2-drink4:before\";i:633;s:23:\".rt-icon2-shorts:before\";i:634;s:24:\".rt-icon2-coffee4:before\";i:635;s:21:\".rt-icon2-map4:before\";i:636;s:24:\".rt-icon2-syringe:before\";i:637;s:21:\".rt-icon2-pill:before\";i:638;s:21:\".rt-icon2-lab3:before\";i:639;s:21:\".rt-icon2-mug2:before\";i:640;s:22:\".rt-icon2-chart:before\";i:641;s:24:\".rt-icon2-pencil4:before\";i:642;s:27:\".rt-icon2-envelope-o:before\";i:643;s:23:\".rt-icon2-star-o:before\";i:644;s:21:\".rt-icon2-film:before\";i:645;s:22:\".rt-icon2-check:before\";i:646;s:22:\".rt-icon2-close:before\";i:647;s:23:\".rt-icon2-remove:before\";i:648;s:22:\".rt-icon2-times:before\";i:649;s:20:\".rt-icon2-cog:before\";i:650;s:21:\".rt-icon2-gear:before\";i:651;s:24:\".rt-icon2-trash-o:before\";i:652;s:23:\".rt-icon2-file-o:before\";i:653;s:24:\".rt-icon2-clock-o:before\";i:654;s:21:\".rt-icon2-tags:before\";i:655;s:28:\".rt-icon2-thumbs-o-up:before\";i:656;s:30:\".rt-icon2-thumbs-o-down:before\";i:657;s:24:\".rt-icon2-heart-o:before\";i:658;s:22:\".rt-icon2-phone:before\";i:659;s:25:\".rt-icon2-umbrella:before\";i:660;s:28:\".rt-icon2-lightbulb-o:before\";i:661;s:24:\".rt-icon2-user-md:before\";i:662;s:28:\".rt-icon2-stethoscope:before\";i:663;s:25:\".rt-icon2-suitcase:before\";i:664;s:23:\".rt-icon2-coffee:before\";i:665;s:24:\".rt-icon2-cutlery:before\";i:666;s:28:\".rt-icon2-file-text-o:before\";i:667;s:27:\".rt-icon2-building-o:before\";i:668;s:27:\".rt-icon2-hospital-o:before\";i:669;s:26:\".rt-icon2-ambulance:before\";i:670;s:23:\".rt-icon2-medkit:before\";i:671;s:27:\".rt-icon2-angle-left:before\";i:672;s:28:\".rt-icon2-angle-right:before\";i:673;s:25:\".rt-icon2-angle-up:before\";i:674;s:27:\".rt-icon2-angle-down:before\";i:675;s:24:\".rt-icon2-desktop:before\";i:676;s:23:\".rt-icon2-laptop:before\";i:677;s:23:\".rt-icon2-tablet:before\";i:678;s:23:\".rt-icon2-mobile:before\";i:679;s:29:\".rt-icon2-mobile-phone:before\";i:680;s:27:\".rt-icon2-quote-left:before\";i:681;s:28:\".rt-icon2-quote-right:before\";i:682;s:24:\".rt-icon2-youtube:before\";i:683;s:27:\".rt-icon2-file-pdf-o:before\";i:684;s:28:\".rt-icon2-file-word-o:before\";i:685;s:29:\".rt-icon2-file-excel-o:before\";i:686;s:34:\".rt-icon2-file-powerpoint-o:before\";i:687;s:29:\".rt-icon2-file-image-o:before\";i:688;s:29:\".rt-icon2-file-photo-o:before\";i:689;s:31:\".rt-icon2-file-picture-o:before\";i:690;s:31:\".rt-icon2-file-archive-o:before\";i:691;s:27:\".rt-icon2-file-zip-o:before\";i:692;s:29:\".rt-icon2-file-audio-o:before\";i:693;s:29:\".rt-icon2-file-sound-o:before\";i:694;s:29:\".rt-icon2-file-movie-o:before\";i:695;s:29:\".rt-icon2-file-video-o:before\";i:696;s:28:\".rt-icon2-file-code-o:before\";i:697;s:30:\".rt-icon2-paper-plane-o:before\";i:698;s:23:\".rt-icon2-send-o:before\";i:699;s:25:\".rt-icon2-futbol-o:before\";i:700;s:30:\".rt-icon2-soccer-ball-o:before\";i:701;s:30:\".rt-icon2-birthday-cake:before\";i:702;s:24:\".rt-icon2-diamond:before\";i:703;s:25:\".rt-icon2-whatsapp:before\";i:704;s:30:\".rt-icon2-chevron-down2:before\";i:705;s:30:\".rt-icon2-chevron-left3:before\";i:706;s:31:\".rt-icon2-chevron-right3:before\";i:707;s:35:\".rt-icon2-chevron-small-down:before\";i:708;s:35:\".rt-icon2-chevron-small-left:before\";i:709;s:36:\".rt-icon2-chevron-small-right:before\";i:710;s:33:\".rt-icon2-chevron-small-up:before\";i:711;s:34:\".rt-icon2-chevron-thin-down:before\";i:712;s:34:\".rt-icon2-chevron-thin-left:before\";i:713;s:35:\".rt-icon2-chevron-thin-right:before\";i:714;s:32:\".rt-icon2-chevron-thin-up:before\";i:715;s:28:\".rt-icon2-chevron-up2:before\";i:716;s:21:\".rt-icon2-code:before\";i:717;s:27:\".rt-icon2-light-bulb:before\";i:718;s:34:\".rt-icon2-magnifying-glass2:before\";i:719;s:21:\".rt-icon2-map5:before\";i:720;s:25:\".rt-icon2-scissors:before\";i:721;s:23:\".rt-icon2-tools2:before\";i:722;s:20:\".rt-icon2-box:before\";i:723;s:22:\".rt-icon2-write:before\";i:724;s:23:\".rt-icon2-clock5:before\";i:725;s:24:\".rt-icon2-search7:before\";i:726;s:23:\".rt-icon2-trash4:before\";i:727;s:26:\".rt-icon2-envelope2:before\";i:728;s:24:\".rt-icon2-bubble2:before\";i:729;s:24:\".rt-icon2-camera6:before\";i:730;s:23:\".rt-icon2-image4:before\";i:731;s:21:\".rt-icon2-tag5:before\";i:732;s:23:\".rt-icon2-heart6:before\";i:733;s:29:\".rt-icon2-video-camera:before\";i:734;s:21:\".rt-icon2-cart:before\";i:735;s:22:\".rt-icon2-film4:before\";i:736;s:22:\".rt-icon2-home3:before\";i:737;s:18:\".rt-icon2-question\";i:738;s:25:\".rt-icon2-question:before\";i:739;s:19:\".social-icon:before\";i:740;s:23:\".soc-modelmayhem:before\";i:741;s:20:\".soc-mixcloud:before\";i:742;s:18:\".soc-drupal:before\";i:743;s:17:\".soc-swarm:before\";i:744;s:18:\".soc-istock:before\";i:745;s:18:\".soc-yammer:before\";i:746;s:16:\".soc-ello:before\";i:747;s:25:\".soc-stackoverflow:before\";i:748;s:19:\".soc-persona:before\";i:749;s:19:\".soc-triplej:before\";i:750;s:17:\".soc-houzz:before\";i:751;s:15:\".soc-rss:before\";i:752;s:18:\".soc-paypal:before\";i:753;s:25:\".soc-odnoklassniki:before\";i:754;s:18:\".soc-airbnb:before\";i:755;s:21:\".soc-periscope:before\";i:756;s:19:\".soc-outlook:before\";i:757;s:21:\".soc-coderwall:before\";i:758;s:23:\".soc-tripadvisor:before\";i:759;s:18:\".soc-appnet:before\";i:760;s:21:\".soc-goodreads:before\";i:761;s:18:\".soc-tripit:before\";i:762;s:18:\".soc-lanyrd:before\";i:763;s:22:\".soc-slideshare:before\";i:764;s:18:\".soc-buffer:before\";i:765;s:18:\".soc-disqus:before\";i:766;s:21:\".soc-vkontakte:before\";i:767;s:20:\".soc-whatsapp:before\";i:768;s:19:\".soc-patreon:before\";i:769;s:22:\".soc-storehouse:before\";i:770;s:18:\".soc-pocket:before\";i:771;s:16:\".soc-mail:before\";i:772;s:19:\".soc-blogger:before\";i:773;s:22:\".soc-technorati:before\";i:774;s:18:\".soc-reddit:before\";i:775;s:20:\".soc-dribbble:before\";i:776;s:23:\".soc-stumbleupon:before\";i:777;s:16:\".soc-digg:before\";i:778;s:18:\".soc-envato:before\";i:779;s:19:\".soc-behance:before\";i:780;s:21:\".soc-delicious:before\";i:781;s:22:\".soc-deviantart:before\";i:782;s:18:\".soc-forrst:before\";i:783;s:16:\".soc-play:before\";i:784;s:18:\".soc-zerply:before\";i:785;s:21:\".soc-wikipedia:before\";i:786;s:17:\".soc-apple:before\";i:787;s:18:\".soc-flattr:before\";i:788;s:18:\".soc-github:before\";i:789;s:18:\".soc-renren:before\";i:790;s:22:\".soc-friendfeed:before\";i:791;s:20:\".soc-newsvine:before\";i:792;s:20:\".soc-identica:before\";i:793;s:16:\".soc-bebo:before\";i:794;s:17:\".soc-zynga:before\";i:795;s:17:\".soc-steam:before\";i:796;s:16:\".soc-xbox:before\";i:797;s:19:\".soc-windows:before\";i:798;s:14:\".soc-qq:before\";i:799;s:18:\".soc-douban:before\";i:800;s:18:\".soc-meetup:before\";i:801;s:23:\".soc-playstation:before\";i:802;s:19:\".soc-android:before\";i:803;s:20:\".soc-snapchat:before\";i:804;s:19:\".soc-twitter:before\";i:805;s:20:\".soc-facebook:before\";i:806;s:22:\".soc-googleplus:before\";i:807;s:21:\".soc-pinterest:before\";i:808;s:22:\".soc-foursquare:before\";i:809;s:17:\".soc-yahoo:before\";i:810;s:17:\".soc-skype:before\";i:811;s:16:\".soc-yelp:before\";i:812;s:22:\".soc-feedburner:before\";i:813;s:20:\".soc-linkedin:before\";i:814;s:18:\".soc-viadeo:before\";i:815;s:16:\".soc-xing:before\";i:816;s:19:\".soc-myspace:before\";i:817;s:22:\".soc-soundcloud:before\";i:818;s:19:\".soc-spotify:before\";i:819;s:23:\".soc-grooveshark:before\";i:820;s:18:\".soc-lastfm:before\";i:821;s:19:\".soc-youtube:before\";i:822;s:17:\".soc-vimeo:before\";i:823;s:23:\".soc-dailymotion:before\";i:824;s:16:\".soc-vine:before\";i:825;s:18:\".soc-flickr:before\";i:826;s:17:\".soc-500px:before\";i:827;s:21:\".soc-wordpress:before\";i:828;s:18:\".soc-tumblr:before\";i:829;s:18:\".soc-twitch:before\";i:830;s:19:\".soc-8tracks:before\";i:831;s:18:\".soc-amazon:before\";i:832;s:15:\".soc-icq:before\";i:833;s:19:\".soc-smugmug:before\";i:834;s:19:\".soc-ravelry:before\";i:835;s:17:\".soc-weibo:before\";i:836;s:17:\".soc-baidu:before\";i:837;s:21:\".soc-angellist:before\";i:838;s:16:\".soc-ebay:before\";i:839;s:16:\".soc-imdb:before\";i:840;s:23:\".soc-stayfriends:before\";i:841;s:27:\".soc-residentadvisor:before\";i:842;s:18:\".soc-google:before\";i:843;s:18:\".soc-yandex:before\";i:844;s:21:\".soc-sharethis:before\";i:845;s:20:\".soc-bandcamp:before\";i:846;s:18:\".soc-itunes:before\";i:847;s:18:\".soc-deezer:before\";i:848;s:20:\".soc-telegram:before\";i:849;s:18:\".soc-openid:before\";i:850;s:21:\".soc-amplement:before\";i:851;s:17:\".soc-viber:before\";i:852;s:18:\".soc-zomato:before\";i:853;s:20:\".soc-draugiem:before\";i:854;s:20:\".soc-endomodo:before\";i:855;s:19:\".soc-filmweb:before\";i:856;s:25:\".soc-stackexchange:before\";i:857;s:17:\".soc-wykop:before\";i:858;s:21:\".soc-teamspeak:before\";i:859;s:22:\".soc-teamviewer:before\";i:860;s:20:\".soc-ventrilo:before\";i:861;s:18:\".soc-younow:before\";i:862;s:20:\".soc-raidcall:before\";i:863;s:18:\".soc-mumble:before\";i:864;s:18:\".soc-medium:before\";i:865;s:17:\".soc-bebee:before\";i:866;s:18:\".soc-hitbox:before\";i:867;s:24:\".soc-reverbnation:before\";i:868;s:19:\".soc-formulr:before\";i:869;s:21:\".soc-instagram:before\";i:870;s:21:\".soc-battlenet:before\";i:871;s:18:\".soc-chrome:before\";i:872;s:19:\".soc-discord:before\";i:873;s:17:\".soc-issuu:before\";i:874;s:17:\".soc-macos:before\";i:875;s:19:\".soc-firefox:before\";i:876;s:17:\".soc-opera:before\";i:877;s:19:\".soc-keybase:before\";i:878;s:20:\".soc-alliance:before\";i:879;s:23:\".soc-livejournal:before\";i:880;s:24:\".soc-googlephotos:before\";i:881;s:17:\".soc-horde:before\";i:882;s:16:\".soc-etsy:before\";i:883;s:18:\".soc-zapier:before\";i:884;s:26:\".soc-google-scholar:before\";i:885;s:24:\".soc-researchgate:before\";i:886;s:18:\".soc-wechat:before\";i:887;s:18:\".soc-strava:before\";i:888;s:16:\".soc-line:before\";i:889;s:16:\".soc-lyft:before\";i:890;s:16:\".soc-uber:before\";i:891;s:20:\".soc-songkick:before\";i:892;s:19:\".soc-viewbug:before\";i:893;s:24:\".soc-googlegroups:before\";i:894;s:17:\".soc-quora:before\";i:895;s:18:\".soc-diablo:before\";i:896;s:20:\".soc-blizzard:before\";i:897;s:23:\".soc-hearthstone:before\";i:898;s:18:\".soc-heroes:before\";i:899;s:21:\".soc-overwatch:before\";i:900;s:20:\".soc-warcraft:before\";i:901;s:21:\".soc-starcraft:before\";i:902;s:16:\".soc-beam:before\";i:903;s:17:\".soc-curse:before\";i:904;s:18:\".soc-player:before\";i:905;s:21:\".soc-streamjar:before\";i:906;s:20:\".soc-nintendo:before\";i:907;s:22:\".soc-hellocoton:before\";i:908;s:3:\".fa\";i:909;s:6:\".fa-lg\";i:910;s:6:\".fa-2x\";i:911;s:6:\".fa-3x\";i:912;s:6:\".fa-4x\";i:913;s:6:\".fa-5x\";i:914;s:6:\".fa-fw\";i:915;s:6:\".fa-ul\";i:916;s:11:\".fa-ul > li\";i:917;s:6:\".fa-li\";i:918;s:12:\".fa-li.fa-lg\";i:919;s:10:\".fa-border\";i:920;s:13:\".fa-pull-left\";i:921;s:14:\".fa-pull-right\";i:922;s:16:\".fa.fa-pull-left\";i:923;s:17:\".fa.fa-pull-right\";i:924;s:11:\".pull-right\";i:925;s:10:\".pull-left\";i:926;s:13:\".fa.pull-left\";i:927;s:14:\".fa.pull-right\";i:928;s:8:\".fa-spin\";i:929;s:9:\".fa-pulse\";i:930;s:13:\".fa-rotate-90\";i:931;s:14:\".fa-rotate-180\";i:932;s:14:\".fa-rotate-270\";i:933;s:19:\".fa-flip-horizontal\";i:934;s:17:\".fa-flip-vertical\";i:935;s:115:\":root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical\";i:936;s:9:\".fa-stack\";i:937;s:26:\".fa-stack-1x, .fa-stack-2x\";i:938;s:12:\".fa-stack-1x\";i:939;s:12:\".fa-stack-2x\";i:940;s:11:\".fa-inverse\";i:941;s:16:\".fa-glass:before\";i:942;s:16:\".fa-music:before\";i:943;s:17:\".fa-search:before\";i:944;s:21:\".fa-envelope-o:before\";i:945;s:16:\".fa-heart:before\";i:946;s:15:\".fa-star:before\";i:947;s:17:\".fa-star-o:before\";i:948;s:15:\".fa-user:before\";i:949;s:15:\".fa-film:before\";i:950;s:19:\".fa-th-large:before\";i:951;s:13:\".fa-th:before\";i:952;s:18:\".fa-th-list:before\";i:953;s:16:\".fa-check:before\";i:954;s:53:\".fa-remove:before, .fa-close:before, .fa-times:before\";i:955;s:22:\".fa-search-plus:before\";i:956;s:23:\".fa-search-minus:before\";i:957;s:20:\".fa-power-off:before\";i:958;s:17:\".fa-signal:before\";i:959;s:31:\".fa-gear:before, .fa-cog:before\";i:960;s:18:\".fa-trash-o:before\";i:961;s:15:\".fa-home:before\";i:962;s:17:\".fa-file-o:before\";i:963;s:18:\".fa-clock-o:before\";i:964;s:15:\".fa-road:before\";i:965;s:19:\".fa-download:before\";i:966;s:30:\".fa-arrow-circle-o-down:before\";i:967;s:28:\".fa-arrow-circle-o-up:before\";i:968;s:16:\".fa-inbox:before\";i:969;s:24:\".fa-play-circle-o:before\";i:970;s:42:\".fa-rotate-right:before, .fa-repeat:before\";i:971;s:18:\".fa-refresh:before\";i:972;s:19:\".fa-list-alt:before\";i:973;s:15:\".fa-lock:before\";i:974;s:15:\".fa-flag:before\";i:975;s:21:\".fa-headphones:before\";i:976;s:21:\".fa-volume-off:before\";i:977;s:22:\".fa-volume-down:before\";i:978;s:20:\".fa-volume-up:before\";i:979;s:17:\".fa-qrcode:before\";i:980;s:18:\".fa-barcode:before\";i:981;s:14:\".fa-tag:before\";i:982;s:15:\".fa-tags:before\";i:983;s:15:\".fa-book:before\";i:984;s:19:\".fa-bookmark:before\";i:985;s:16:\".fa-print:before\";i:986;s:17:\".fa-camera:before\";i:987;s:15:\".fa-font:before\";i:988;s:15:\".fa-bold:before\";i:989;s:17:\".fa-italic:before\";i:990;s:22:\".fa-text-height:before\";i:991;s:21:\".fa-text-width:before\";i:992;s:21:\".fa-align-left:before\";i:993;s:23:\".fa-align-center:before\";i:994;s:22:\".fa-align-right:before\";i:995;s:24:\".fa-align-justify:before\";i:996;s:15:\".fa-list:before\";i:997;s:37:\".fa-dedent:before, .fa-outdent:before\";i:998;s:17:\".fa-indent:before\";i:999;s:23:\".fa-video-camera:before\";i:1000;s:56:\".fa-photo:before, .fa-image:before, .fa-picture-o:before\";i:1001;s:17:\".fa-pencil:before\";i:1002;s:21:\".fa-map-marker:before\";i:1003;s:17:\".fa-adjust:before\";i:1004;s:15:\".fa-tint:before\";i:1005;s:43:\".fa-edit:before, .fa-pencil-square-o:before\";i:1006;s:25:\".fa-share-square-o:before\";i:1007;s:25:\".fa-check-square-o:before\";i:1008;s:17:\".fa-arrows:before\";i:1009;s:24:\".fa-step-backward:before\";i:1010;s:24:\".fa-fast-backward:before\";i:1011;s:19:\".fa-backward:before\";i:1012;s:15:\".fa-play:before\";i:1013;s:16:\".fa-pause:before\";i:1014;s:15:\".fa-stop:before\";i:1015;s:18:\".fa-forward:before\";i:1016;s:23:\".fa-fast-forward:before\";i:1017;s:23:\".fa-step-forward:before\";i:1018;s:16:\".fa-eject:before\";i:1019;s:23:\".fa-chevron-left:before\";i:1020;s:24:\".fa-chevron-right:before\";i:1021;s:22:\".fa-plus-circle:before\";i:1022;s:23:\".fa-minus-circle:before\";i:1023;s:23:\".fa-times-circle:before\";i:1024;s:23:\".fa-check-circle:before\";i:1025;s:26:\".fa-question-circle:before\";i:1026;s:22:\".fa-info-circle:before\";i:1027;s:21:\".fa-crosshairs:before\";i:1028;s:25:\".fa-times-circle-o:before\";i:1029;s:25:\".fa-check-circle-o:before\";i:1030;s:14:\".fa-ban:before\";i:1031;s:21:\".fa-arrow-left:before\";i:1032;s:22:\".fa-arrow-right:before\";i:1033;s:19:\".fa-arrow-up:before\";i:1034;s:21:\".fa-arrow-down:before\";i:1035;s:41:\".fa-mail-forward:before, .fa-share:before\";i:1036;s:17:\".fa-expand:before\";i:1037;s:19:\".fa-compress:before\";i:1038;s:15:\".fa-plus:before\";i:1039;s:16:\".fa-minus:before\";i:1040;s:19:\".fa-asterisk:before\";i:1041;s:29:\".fa-exclamation-circle:before\";i:1042;s:15:\".fa-gift:before\";i:1043;s:15:\".fa-leaf:before\";i:1044;s:15:\".fa-fire:before\";i:1045;s:14:\".fa-eye:before\";i:1046;s:20:\".fa-eye-slash:before\";i:1047;s:51:\".fa-warning:before, .fa-exclamation-triangle:before\";i:1048;s:16:\".fa-plane:before\";i:1049;s:19:\".fa-calendar:before\";i:1050;s:17:\".fa-random:before\";i:1051;s:18:\".fa-comment:before\";i:1052;s:17:\".fa-magnet:before\";i:1053;s:21:\".fa-chevron-up:before\";i:1054;s:23:\".fa-chevron-down:before\";i:1055;s:18:\".fa-retweet:before\";i:1056;s:24:\".fa-shopping-cart:before\";i:1057;s:17:\".fa-folder:before\";i:1058;s:22:\".fa-folder-open:before\";i:1059;s:19:\".fa-arrows-v:before\";i:1060;s:19:\".fa-arrows-h:before\";i:1061;s:44:\".fa-bar-chart-o:before, .fa-bar-chart:before\";i:1062;s:25:\".fa-twitter-square:before\";i:1063;s:26:\".fa-facebook-square:before\";i:1064;s:23:\".fa-camera-retro:before\";i:1065;s:14:\".fa-key:before\";i:1066;s:33:\".fa-gears:before, .fa-cogs:before\";i:1067;s:19:\".fa-comments:before\";i:1068;s:22:\".fa-thumbs-o-up:before\";i:1069;s:24:\".fa-thumbs-o-down:before\";i:1070;s:20:\".fa-star-half:before\";i:1071;s:18:\".fa-heart-o:before\";i:1072;s:19:\".fa-sign-out:before\";i:1073;s:26:\".fa-linkedin-square:before\";i:1074;s:21:\".fa-thumb-tack:before\";i:1075;s:24:\".fa-external-link:before\";i:1076;s:18:\".fa-sign-in:before\";i:1077;s:17:\".fa-trophy:before\";i:1078;s:24:\".fa-github-square:before\";i:1079;s:17:\".fa-upload:before\";i:1080;s:18:\".fa-lemon-o:before\";i:1081;s:16:\".fa-phone:before\";i:1082;s:19:\".fa-square-o:before\";i:1083;s:21:\".fa-bookmark-o:before\";i:1084;s:23:\".fa-phone-square:before\";i:1085;s:18:\".fa-twitter:before\";i:1086;s:42:\".fa-facebook-f:before, .fa-facebook:before\";i:1087;s:17:\".fa-github:before\";i:1088;s:17:\".fa-unlock:before\";i:1089;s:22:\".fa-credit-card:before\";i:1090;s:31:\".fa-feed:before, .fa-rss:before\";i:1091;s:16:\".fa-hdd-o:before\";i:1092;s:19:\".fa-bullhorn:before\";i:1093;s:15:\".fa-bell:before\";i:1094;s:22:\".fa-certificate:before\";i:1095;s:23:\".fa-hand-o-right:before\";i:1096;s:22:\".fa-hand-o-left:before\";i:1097;s:20:\".fa-hand-o-up:before\";i:1098;s:22:\".fa-hand-o-down:before\";i:1099;s:28:\".fa-arrow-circle-left:before\";i:1100;s:29:\".fa-arrow-circle-right:before\";i:1101;s:26:\".fa-arrow-circle-up:before\";i:1102;s:28:\".fa-arrow-circle-down:before\";i:1103;s:16:\".fa-globe:before\";i:1104;s:17:\".fa-wrench:before\";i:1105;s:16:\".fa-tasks:before\";i:1106;s:17:\".fa-filter:before\";i:1107;s:20:\".fa-briefcase:before\";i:1108;s:21:\".fa-arrows-alt:before\";i:1109;s:34:\".fa-group:before, .fa-users:before\";i:1110;s:33:\".fa-chain:before, .fa-link:before\";i:1111;s:16:\".fa-cloud:before\";i:1112;s:16:\".fa-flask:before\";i:1113;s:35:\".fa-cut:before, .fa-scissors:before\";i:1114;s:35:\".fa-copy:before, .fa-files-o:before\";i:1115;s:20:\".fa-paperclip:before\";i:1116;s:36:\".fa-save:before, .fa-floppy-o:before\";i:1117;s:17:\".fa-square:before\";i:1118;s:55:\".fa-navicon:before, .fa-reorder:before, .fa-bars:before\";i:1119;s:18:\".fa-list-ul:before\";i:1120;s:18:\".fa-list-ol:before\";i:1121;s:24:\".fa-strikethrough:before\";i:1122;s:20:\".fa-underline:before\";i:1123;s:16:\".fa-table:before\";i:1124;s:16:\".fa-magic:before\";i:1125;s:16:\".fa-truck:before\";i:1126;s:20:\".fa-pinterest:before\";i:1127;s:27:\".fa-pinterest-square:before\";i:1128;s:29:\".fa-google-plus-square:before\";i:1129;s:22:\".fa-google-plus:before\";i:1130;s:16:\".fa-money:before\";i:1131;s:21:\".fa-caret-down:before\";i:1132;s:19:\".fa-caret-up:before\";i:1133;s:21:\".fa-caret-left:before\";i:1134;s:22:\".fa-caret-right:before\";i:1135;s:18:\".fa-columns:before\";i:1136;s:36:\".fa-unsorted:before, .fa-sort:before\";i:1137;s:42:\".fa-sort-down:before, .fa-sort-desc:before\";i:1138;s:39:\".fa-sort-up:before, .fa-sort-asc:before\";i:1139;s:19:\".fa-envelope:before\";i:1140;s:19:\".fa-linkedin:before\";i:1141;s:39:\".fa-rotate-left:before, .fa-undo:before\";i:1142;s:34:\".fa-legal:before, .fa-gavel:before\";i:1143;s:43:\".fa-dashboard:before, .fa-tachometer:before\";i:1144;s:20:\".fa-comment-o:before\";i:1145;s:21:\".fa-comments-o:before\";i:1146;s:33:\".fa-flash:before, .fa-bolt:before\";i:1147;s:18:\".fa-sitemap:before\";i:1148;s:19:\".fa-umbrella:before\";i:1149;s:38:\".fa-paste:before, .fa-clipboard:before\";i:1150;s:22:\".fa-lightbulb-o:before\";i:1151;s:19:\".fa-exchange:before\";i:1152;s:25:\".fa-cloud-download:before\";i:1153;s:23:\".fa-cloud-upload:before\";i:1154;s:18:\".fa-user-md:before\";i:1155;s:22:\".fa-stethoscope:before\";i:1156;s:19:\".fa-suitcase:before\";i:1157;s:17:\".fa-bell-o:before\";i:1158;s:17:\".fa-coffee:before\";i:1159;s:18:\".fa-cutlery:before\";i:1160;s:22:\".fa-file-text-o:before\";i:1161;s:21:\".fa-building-o:before\";i:1162;s:21:\".fa-hospital-o:before\";i:1163;s:20:\".fa-ambulance:before\";i:1164;s:17:\".fa-medkit:before\";i:1165;s:22:\".fa-fighter-jet:before\";i:1166;s:15:\".fa-beer:before\";i:1167;s:19:\".fa-h-square:before\";i:1168;s:22:\".fa-plus-square:before\";i:1169;s:28:\".fa-angle-double-left:before\";i:1170;s:29:\".fa-angle-double-right:before\";i:1171;s:26:\".fa-angle-double-up:before\";i:1172;s:28:\".fa-angle-double-down:before\";i:1173;s:21:\".fa-angle-left:before\";i:1174;s:22:\".fa-angle-right:before\";i:1175;s:19:\".fa-angle-up:before\";i:1176;s:21:\".fa-angle-down:before\";i:1177;s:18:\".fa-desktop:before\";i:1178;s:17:\".fa-laptop:before\";i:1179;s:17:\".fa-tablet:before\";i:1180;s:42:\".fa-mobile-phone:before, .fa-mobile:before\";i:1181;s:19:\".fa-circle-o:before\";i:1182;s:21:\".fa-quote-left:before\";i:1183;s:22:\".fa-quote-right:before\";i:1184;s:18:\".fa-spinner:before\";i:1185;s:17:\".fa-circle:before\";i:1186;s:39:\".fa-mail-reply:before, .fa-reply:before\";i:1187;s:21:\".fa-github-alt:before\";i:1188;s:19:\".fa-folder-o:before\";i:1189;s:24:\".fa-folder-open-o:before\";i:1190;s:18:\".fa-smile-o:before\";i:1191;s:18:\".fa-frown-o:before\";i:1192;s:16:\".fa-meh-o:before\";i:1193;s:18:\".fa-gamepad:before\";i:1194;s:21:\".fa-keyboard-o:before\";i:1195;s:17:\".fa-flag-o:before\";i:1196;s:25:\".fa-flag-checkered:before\";i:1197;s:19:\".fa-terminal:before\";i:1198;s:15:\".fa-code:before\";i:1199;s:47:\".fa-mail-reply-all:before, .fa-reply-all:before\";i:1200;s:77:\".fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before\";i:1201;s:25:\".fa-location-arrow:before\";i:1202;s:15:\".fa-crop:before\";i:1203;s:20:\".fa-code-fork:before\";i:1204;s:42:\".fa-unlink:before, .fa-chain-broken:before\";i:1205;s:19:\".fa-question:before\";i:1206;s:15:\".fa-info:before\";i:1207;s:22:\".fa-exclamation:before\";i:1208;s:22:\".fa-superscript:before\";i:1209;s:20:\".fa-subscript:before\";i:1210;s:17:\".fa-eraser:before\";i:1211;s:23:\".fa-puzzle-piece:before\";i:1212;s:21:\".fa-microphone:before\";i:1213;s:27:\".fa-microphone-slash:before\";i:1214;s:17:\".fa-shield:before\";i:1215;s:21:\".fa-calendar-o:before\";i:1216;s:28:\".fa-fire-extinguisher:before\";i:1217;s:17:\".fa-rocket:before\";i:1218;s:17:\".fa-maxcdn:before\";i:1219;s:30:\".fa-chevron-circle-left:before\";i:1220;s:31:\".fa-chevron-circle-right:before\";i:1221;s:28:\".fa-chevron-circle-up:before\";i:1222;s:30:\".fa-chevron-circle-down:before\";i:1223;s:16:\".fa-html5:before\";i:1224;s:15:\".fa-css3:before\";i:1225;s:17:\".fa-anchor:before\";i:1226;s:21:\".fa-unlock-alt:before\";i:1227;s:19:\".fa-bullseye:before\";i:1228;s:21:\".fa-ellipsis-h:before\";i:1229;s:21:\".fa-ellipsis-v:before\";i:1230;s:21:\".fa-rss-square:before\";i:1231;s:22:\".fa-play-circle:before\";i:1232;s:17:\".fa-ticket:before\";i:1233;s:23:\".fa-minus-square:before\";i:1234;s:25:\".fa-minus-square-o:before\";i:1235;s:19:\".fa-level-up:before\";i:1236;s:21:\".fa-level-down:before\";i:1237;s:23:\".fa-check-square:before\";i:1238;s:24:\".fa-pencil-square:before\";i:1239;s:31:\".fa-external-link-square:before\";i:1240;s:23:\".fa-share-square:before\";i:1241;s:18:\".fa-compass:before\";i:1242;s:54:\".fa-toggle-down:before, .fa-caret-square-o-down:before\";i:1243;s:50:\".fa-toggle-up:before, .fa-caret-square-o-up:before\";i:1244;s:56:\".fa-toggle-right:before, .fa-caret-square-o-right:before\";i:1245;s:31:\".fa-euro:before, .fa-eur:before\";i:1246;s:14:\".fa-gbp:before\";i:1247;s:33:\".fa-dollar:before, .fa-usd:before\";i:1248;s:32:\".fa-rupee:before, .fa-inr:before\";i:1249;s:62:\".fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before\";i:1250;s:51:\".fa-ruble:before, .fa-rouble:before, .fa-rub:before\";i:1251;s:30:\".fa-won:before, .fa-krw:before\";i:1252;s:34:\".fa-bitcoin:before, .fa-btc:before\";i:1253;s:15:\".fa-file:before\";i:1254;s:20:\".fa-file-text:before\";i:1255;s:25:\".fa-sort-alpha-asc:before\";i:1256;s:26:\".fa-sort-alpha-desc:before\";i:1257;s:26:\".fa-sort-amount-asc:before\";i:1258;s:27:\".fa-sort-amount-desc:before\";i:1259;s:27:\".fa-sort-numeric-asc:before\";i:1260;s:28:\".fa-sort-numeric-desc:before\";i:1261;s:20:\".fa-thumbs-up:before\";i:1262;s:22:\".fa-thumbs-down:before\";i:1263;s:25:\".fa-youtube-square:before\";i:1264;s:18:\".fa-youtube:before\";i:1265;s:15:\".fa-xing:before\";i:1266;s:22:\".fa-xing-square:before\";i:1267;s:23:\".fa-youtube-play:before\";i:1268;s:18:\".fa-dropbox:before\";i:1269;s:25:\".fa-stack-overflow:before\";i:1270;s:20:\".fa-instagram:before\";i:1271;s:17:\".fa-flickr:before\";i:1272;s:14:\".fa-adn:before\";i:1273;s:20:\".fa-bitbucket:before\";i:1274;s:27:\".fa-bitbucket-square:before\";i:1275;s:17:\".fa-tumblr:before\";i:1276;s:24:\".fa-tumblr-square:before\";i:1277;s:26:\".fa-long-arrow-down:before\";i:1278;s:24:\".fa-long-arrow-up:before\";i:1279;s:26:\".fa-long-arrow-left:before\";i:1280;s:27:\".fa-long-arrow-right:before\";i:1281;s:16:\".fa-apple:before\";i:1282;s:18:\".fa-windows:before\";i:1283;s:18:\".fa-android:before\";i:1284;s:16:\".fa-linux:before\";i:1285;s:19:\".fa-dribbble:before\";i:1286;s:16:\".fa-skype:before\";i:1287;s:21:\".fa-foursquare:before\";i:1288;s:17:\".fa-trello:before\";i:1289;s:17:\".fa-female:before\";i:1290;s:15:\".fa-male:before\";i:1291;s:38:\".fa-gittip:before, .fa-gratipay:before\";i:1292;s:16:\".fa-sun-o:before\";i:1293;s:17:\".fa-moon-o:before\";i:1294;s:18:\".fa-archive:before\";i:1295;s:14:\".fa-bug:before\";i:1296;s:13:\".fa-vk:before\";i:1297;s:16:\".fa-weibo:before\";i:1298;s:17:\".fa-renren:before\";i:1299;s:20:\".fa-pagelines:before\";i:1300;s:25:\".fa-stack-exchange:before\";i:1301;s:31:\".fa-arrow-circle-o-right:before\";i:1302;s:30:\".fa-arrow-circle-o-left:before\";i:1303;s:54:\".fa-toggle-left:before, .fa-caret-square-o-left:before\";i:1304;s:23:\".fa-dot-circle-o:before\";i:1305;s:21:\".fa-wheelchair:before\";i:1306;s:23:\".fa-vimeo-square:before\";i:1307;s:39:\".fa-turkish-lira:before, .fa-try:before\";i:1308;s:24:\".fa-plus-square-o:before\";i:1309;s:24:\".fa-space-shuttle:before\";i:1310;s:16:\".fa-slack:before\";i:1311;s:26:\".fa-envelope-square:before\";i:1312;s:20:\".fa-wordpress:before\";i:1313;s:17:\".fa-openid:before\";i:1314;s:62:\".fa-institution:before, .fa-bank:before, .fa-university:before\";i:1315;s:50:\".fa-mortar-board:before, .fa-graduation-cap:before\";i:1316;s:16:\".fa-yahoo:before\";i:1317;s:17:\".fa-google:before\";i:1318;s:17:\".fa-reddit:before\";i:1319;s:24:\".fa-reddit-square:before\";i:1320;s:29:\".fa-stumbleupon-circle:before\";i:1321;s:22:\".fa-stumbleupon:before\";i:1322;s:20:\".fa-delicious:before\";i:1323;s:15:\".fa-digg:before\";i:1324;s:24:\".fa-pied-piper-pp:before\";i:1325;s:25:\".fa-pied-piper-alt:before\";i:1326;s:17:\".fa-drupal:before\";i:1327;s:17:\".fa-joomla:before\";i:1328;s:19:\".fa-language:before\";i:1329;s:14:\".fa-fax:before\";i:1330;s:19:\".fa-building:before\";i:1331;s:16:\".fa-child:before\";i:1332;s:14:\".fa-paw:before\";i:1333;s:16:\".fa-spoon:before\";i:1334;s:15:\".fa-cube:before\";i:1335;s:16:\".fa-cubes:before\";i:1336;s:18:\".fa-behance:before\";i:1337;s:25:\".fa-behance-square:before\";i:1338;s:16:\".fa-steam:before\";i:1339;s:23:\".fa-steam-square:before\";i:1340;s:18:\".fa-recycle:before\";i:1341;s:37:\".fa-automobile:before, .fa-car:before\";i:1342;s:31:\".fa-cab:before, .fa-taxi:before\";i:1343;s:15:\".fa-tree:before\";i:1344;s:18:\".fa-spotify:before\";i:1345;s:21:\".fa-deviantart:before\";i:1346;s:21:\".fa-soundcloud:before\";i:1347;s:19:\".fa-database:before\";i:1348;s:21:\".fa-file-pdf-o:before\";i:1349;s:22:\".fa-file-word-o:before\";i:1350;s:23:\".fa-file-excel-o:before\";i:1351;s:28:\".fa-file-powerpoint-o:before\";i:1352;s:75:\".fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before\";i:1353;s:48:\".fa-file-zip-o:before, .fa-file-archive-o:before\";i:1354;s:48:\".fa-file-sound-o:before, .fa-file-audio-o:before\";i:1355;s:48:\".fa-file-movie-o:before, .fa-file-video-o:before\";i:1356;s:22:\".fa-file-code-o:before\";i:1357;s:15:\".fa-vine:before\";i:1358;s:18:\".fa-codepen:before\";i:1359;s:19:\".fa-jsfiddle:before\";i:1360;s:107:\".fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before\";i:1361;s:25:\".fa-circle-o-notch:before\";i:1362;s:54:\".fa-ra:before, .fa-resistance:before, .fa-rebel:before\";i:1363;s:32:\".fa-ge:before, .fa-empire:before\";i:1364;s:21:\".fa-git-square:before\";i:1365;s:14:\".fa-git:before\";i:1366;s:76:\".fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before\";i:1367;s:24:\".fa-tencent-weibo:before\";i:1368;s:13:\".fa-qq:before\";i:1369;s:36:\".fa-wechat:before, .fa-weixin:before\";i:1370;s:39:\".fa-send:before, .fa-paper-plane:before\";i:1371;s:43:\".fa-send-o:before, .fa-paper-plane-o:before\";i:1372;s:18:\".fa-history:before\";i:1373;s:22:\".fa-circle-thin:before\";i:1374;s:17:\".fa-header:before\";i:1375;s:20:\".fa-paragraph:before\";i:1376;s:18:\".fa-sliders:before\";i:1377;s:20:\".fa-share-alt:before\";i:1378;s:27:\".fa-share-alt-square:before\";i:1379;s:15:\".fa-bomb:before\";i:1380;s:45:\".fa-soccer-ball-o:before, .fa-futbol-o:before\";i:1381;s:14:\".fa-tty:before\";i:1382;s:21:\".fa-binoculars:before\";i:1383;s:15:\".fa-plug:before\";i:1384;s:21:\".fa-slideshare:before\";i:1385;s:17:\".fa-twitch:before\";i:1386;s:15:\".fa-yelp:before\";i:1387;s:22:\".fa-newspaper-o:before\";i:1388;s:15:\".fa-wifi:before\";i:1389;s:21:\".fa-calculator:before\";i:1390;s:17:\".fa-paypal:before\";i:1391;s:24:\".fa-google-wallet:before\";i:1392;s:18:\".fa-cc-visa:before\";i:1393;s:24:\".fa-cc-mastercard:before\";i:1394;s:22:\".fa-cc-discover:before\";i:1395;s:18:\".fa-cc-amex:before\";i:1396;s:20:\".fa-cc-paypal:before\";i:1397;s:20:\".fa-cc-stripe:before\";i:1398;s:21:\".fa-bell-slash:before\";i:1399;s:23:\".fa-bell-slash-o:before\";i:1400;s:16:\".fa-trash:before\";i:1401;s:20:\".fa-copyright:before\";i:1402;s:13:\".fa-at:before\";i:1403;s:21:\".fa-eyedropper:before\";i:1404;s:22:\".fa-paint-brush:before\";i:1405;s:24:\".fa-birthday-cake:before\";i:1406;s:21:\".fa-area-chart:before\";i:1407;s:20:\".fa-pie-chart:before\";i:1408;s:21:\".fa-line-chart:before\";i:1409;s:17:\".fa-lastfm:before\";i:1410;s:24:\".fa-lastfm-square:before\";i:1411;s:21:\".fa-toggle-off:before\";i:1412;s:20:\".fa-toggle-on:before\";i:1413;s:18:\".fa-bicycle:before\";i:1414;s:14:\".fa-bus:before\";i:1415;s:18:\".fa-ioxhost:before\";i:1416;s:20:\".fa-angellist:before\";i:1417;s:13:\".fa-cc:before\";i:1418;s:52:\".fa-shekel:before, .fa-sheqel:before, .fa-ils:before\";i:1419;s:19:\".fa-meanpath:before\";i:1420;s:21:\".fa-buysellads:before\";i:1421;s:25:\".fa-connectdevelop:before\";i:1422;s:19:\".fa-dashcube:before\";i:1423;s:19:\".fa-forumbee:before\";i:1424;s:18:\".fa-leanpub:before\";i:1425;s:17:\".fa-sellsy:before\";i:1426;s:23:\".fa-shirtsinbulk:before\";i:1427;s:22:\".fa-simplybuilt:before\";i:1428;s:19:\".fa-skyatlas:before\";i:1429;s:20:\".fa-cart-plus:before\";i:1430;s:26:\".fa-cart-arrow-down:before\";i:1431;s:18:\".fa-diamond:before\";i:1432;s:15:\".fa-ship:before\";i:1433;s:22:\".fa-user-secret:before\";i:1434;s:21:\".fa-motorcycle:before\";i:1435;s:22:\".fa-street-view:before\";i:1436;s:20:\".fa-heartbeat:before\";i:1437;s:16:\".fa-venus:before\";i:1438;s:15:\".fa-mars:before\";i:1439;s:18:\".fa-mercury:before\";i:1440;s:43:\".fa-intersex:before, .fa-transgender:before\";i:1441;s:26:\".fa-transgender-alt:before\";i:1442;s:23:\".fa-venus-double:before\";i:1443;s:22:\".fa-mars-double:before\";i:1444;s:21:\".fa-venus-mars:before\";i:1445;s:22:\".fa-mars-stroke:before\";i:1446;s:24:\".fa-mars-stroke-v:before\";i:1447;s:24:\".fa-mars-stroke-h:before\";i:1448;s:17:\".fa-neuter:before\";i:1449;s:21:\".fa-genderless:before\";i:1450;s:28:\".fa-facebook-official:before\";i:1451;s:22:\".fa-pinterest-p:before\";i:1452;s:19:\".fa-whatsapp:before\";i:1453;s:17:\".fa-server:before\";i:1454;s:20:\".fa-user-plus:before\";i:1455;s:21:\".fa-user-times:before\";i:1456;s:32:\".fa-hotel:before, .fa-bed:before\";i:1457;s:18:\".fa-viacoin:before\";i:1458;s:16:\".fa-train:before\";i:1459;s:17:\".fa-subway:before\";i:1460;s:17:\".fa-medium:before\";i:1461;s:38:\".fa-yc:before, .fa-y-combinator:before\";i:1462;s:24:\".fa-optin-monster:before\";i:1463;s:19:\".fa-opencart:before\";i:1464;s:23:\".fa-expeditedssl:before\";i:1465;s:45:\".fa-battery-4:before, .fa-battery-full:before\";i:1466;s:55:\".fa-battery-3:before, .fa-battery-three-quarters:before\";i:1467;s:45:\".fa-battery-2:before, .fa-battery-half:before\";i:1468;s:48:\".fa-battery-1:before, .fa-battery-quarter:before\";i:1469;s:46:\".fa-battery-0:before, .fa-battery-empty:before\";i:1470;s:24:\".fa-mouse-pointer:before\";i:1471;s:19:\".fa-i-cursor:before\";i:1472;s:23:\".fa-object-group:before\";i:1473;s:25:\".fa-object-ungroup:before\";i:1474;s:22:\".fa-sticky-note:before\";i:1475;s:24:\".fa-sticky-note-o:before\";i:1476;s:17:\".fa-cc-jcb:before\";i:1477;s:25:\".fa-cc-diners-club:before\";i:1478;s:16:\".fa-clone:before\";i:1479;s:24:\".fa-balance-scale:before\";i:1480;s:22:\".fa-hourglass-o:before\";i:1481;s:50:\".fa-hourglass-1:before, .fa-hourglass-start:before\";i:1482;s:49:\".fa-hourglass-2:before, .fa-hourglass-half:before\";i:1483;s:48:\".fa-hourglass-3:before, .fa-hourglass-end:before\";i:1484;s:20:\".fa-hourglass:before\";i:1485;s:46:\".fa-hand-grab-o:before, .fa-hand-rock-o:before\";i:1486;s:47:\".fa-hand-stop-o:before, .fa-hand-paper-o:before\";i:1487;s:26:\".fa-hand-scissors-o:before\";i:1488;s:24:\".fa-hand-lizard-o:before\";i:1489;s:23:\".fa-hand-spock-o:before\";i:1490;s:25:\".fa-hand-pointer-o:before\";i:1491;s:23:\".fa-hand-peace-o:before\";i:1492;s:20:\".fa-trademark:before\";i:1493;s:21:\".fa-registered:before\";i:1494;s:27:\".fa-creative-commons:before\";i:1495;s:13:\".fa-gg:before\";i:1496;s:20:\".fa-gg-circle:before\";i:1497;s:22:\".fa-tripadvisor:before\";i:1498;s:24:\".fa-odnoklassniki:before\";i:1499;s:31:\".fa-odnoklassniki-square:before\";i:1500;s:21:\".fa-get-pocket:before\";i:1501;s:22:\".fa-wikipedia-w:before\";i:1502;s:17:\".fa-safari:before\";i:1503;s:17:\".fa-chrome:before\";i:1504;s:18:\".fa-firefox:before\";i:1505;s:16:\".fa-opera:before\";i:1506;s:28:\".fa-internet-explorer:before\";i:1507;s:36:\".fa-tv:before, .fa-television:before\";i:1508;s:17:\".fa-contao:before\";i:1509;s:16:\".fa-500px:before\";i:1510;s:17:\".fa-amazon:before\";i:1511;s:26:\".fa-calendar-plus-o:before\";i:1512;s:27:\".fa-calendar-minus-o:before\";i:1513;s:27:\".fa-calendar-times-o:before\";i:1514;s:27:\".fa-calendar-check-o:before\";i:1515;s:19:\".fa-industry:before\";i:1516;s:18:\".fa-map-pin:before\";i:1517;s:20:\".fa-map-signs:before\";i:1518;s:16:\".fa-map-o:before\";i:1519;s:14:\".fa-map:before\";i:1520;s:21:\".fa-commenting:before\";i:1521;s:23:\".fa-commenting-o:before\";i:1522;s:16:\".fa-houzz:before\";i:1523;s:16:\".fa-vimeo:before\";i:1524;s:20:\".fa-black-tie:before\";i:1525;s:20:\".fa-fonticons:before\";i:1526;s:23:\".fa-reddit-alien:before\";i:1527;s:15:\".fa-edge:before\";i:1528;s:26:\".fa-credit-card-alt:before\";i:1529;s:19:\".fa-codiepie:before\";i:1530;s:15:\".fa-modx:before\";i:1531;s:23:\".fa-fort-awesome:before\";i:1532;s:14:\".fa-usb:before\";i:1533;s:23:\".fa-product-hunt:before\";i:1534;s:19:\".fa-mixcloud:before\";i:1535;s:17:\".fa-scribd:before\";i:1536;s:23:\".fa-pause-circle:before\";i:1537;s:25:\".fa-pause-circle-o:before\";i:1538;s:22:\".fa-stop-circle:before\";i:1539;s:24:\".fa-stop-circle-o:before\";i:1540;s:23:\".fa-shopping-bag:before\";i:1541;s:26:\".fa-shopping-basket:before\";i:1542;s:18:\".fa-hashtag:before\";i:1543;s:20:\".fa-bluetooth:before\";i:1544;s:22:\".fa-bluetooth-b:before\";i:1545;s:18:\".fa-percent:before\";i:1546;s:17:\".fa-gitlab:before\";i:1547;s:21:\".fa-wpbeginner:before\";i:1548;s:18:\".fa-wpforms:before\";i:1549;s:17:\".fa-envira:before\";i:1550;s:27:\".fa-universal-access:before\";i:1551;s:25:\".fa-wheelchair-alt:before\";i:1552;s:28:\".fa-question-circle-o:before\";i:1553;s:16:\".fa-blind:before\";i:1554;s:28:\".fa-audio-description:before\";i:1555;s:31:\".fa-volume-control-phone:before\";i:1556;s:18:\".fa-braille:before\";i:1557;s:38:\".fa-assistive-listening-systems:before\";i:1558;s:75:\".fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before\";i:1559;s:64:\".fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before\";i:1560;s:16:\".fa-glide:before\";i:1561;s:18:\".fa-glide-g:before\";i:1562;s:44:\".fa-signing:before, .fa-sign-language:before\";i:1563;s:21:\".fa-low-vision:before\";i:1564;s:17:\".fa-viadeo:before\";i:1565;s:24:\".fa-viadeo-square:before\";i:1566;s:19:\".fa-snapchat:before\";i:1567;s:25:\".fa-snapchat-ghost:before\";i:1568;s:26:\".fa-snapchat-square:before\";i:1569;s:21:\".fa-pied-piper:before\";i:1570;s:22:\".fa-first-order:before\";i:1571;s:16:\".fa-yoast:before\";i:1572;s:20:\".fa-themeisle:before\";i:1573;s:62:\".fa-google-plus-circle:before, .fa-google-plus-official:before\";i:1574;s:38:\".fa-fa:before, .fa-font-awesome:before\";i:1575;s:8:\".sr-only\";i:1576;s:51:\".sr-only-focusable:active, .sr-only-focusable:focus\";i:1577;s:153:\".grid-view .item-content .button.product_type_grouped, .grid-view .item-content .button.product_type_simple, .grid-view .item-content .add_to_cart_button\";i:1578;s:51:\".product .vertical-item .item-media + .item-content\";i:1579;s:21:\".woocommerce-ordering\";i:1580;s:25:\".woocommerce-result-count\";i:1581;s:38:\".woocommerce-checkout .selectize-input\";i:1582;s:33:\"#review_form .form-submit .submit\";i:1583;s:61:\".columns-2 .product, .columns-3 .product, .columns-4 .product\";i:1584;s:9:\".col2-set\";i:1585;s:19:\".col2-set.addresses\";i:1586;s:53:\".col2-set.addresses:before, .col2-set.addresses:after\";i:1587;s:54:\".col2-set.addresses .col-1, .col2-set.addresses .col-2\";i:1588;s:36:\"#order_review_heading, #order_review\";i:1589;s:207:\".woocommerce-billing-fields #billing_first_name_field, .woocommerce-billing-fields #billing_last_name_field, .woocommerce-billing-fields #billing_phone_field, .woocommerce-billing-fields #billing_email_field\";i:1590;s:103:\".woocommerce-billing-fields #billing_first_name_field, .woocommerce-billing-fields #billing_phone_field\";i:1591;s:102:\".woocommerce-billing-fields #billing_last_name_field, .woocommerce-billing-fields #billing_email_field\";i:1592;s:33:\"#review_form .comment-form-author\";i:1593;s:32:\"#review_form .comment-form-email\";i:1594;s:25:\"#review_form .form-submit\";i:1595;s:19:\".columns-2 .product\";i:1596;s:19:\".columns-3 .product\";i:1597;s:19:\".columns-4 .product\";i:1598;s:33:\".summary .product_meta .meta-name\";i:1599;s:45:\".summary [class*=\'add-to-cart\'] .theme_button\";i:1600;s:10:\"table.cart\";i:1601;s:12:\".cart_totals\";i:1602;s:15:\"input[disabled]\";i:1603;s:19:\".storefront-sorting\";i:1604;s:31:\".storefront-sorting .form-group\";i:1605;s:25:\".storefront-sorting label\";i:1606;s:32:\".woocommerce-message .wc-forward\";i:1607;s:29:\".ds .woocommerce-result-count\";i:1608;s:17:\"#toggle_shop_view\";i:1609;s:49:\"#toggle_shop_view:before, #toggle_shop_view:after\";i:1610;s:24:\"#toggle_shop_view:before\";i:1611;s:23:\"#toggle_shop_view:after\";i:1612;s:34:\"#toggle_shop_view.grid-view:before\";i:1613;s:33:\"#toggle_shop_view.grid-view:after\";i:1614;s:10:\"#sort_view\";i:1615;s:19:\".columns-1 .product\";i:1616;s:62:\".product .images, .product .thumbnails a, .product .item-media\";i:1617;s:74:\".product .images img, .product .thumbnails a img, .product .item-media img\";i:1618;s:92:\".product .images:hover img, .product .thumbnails a:hover img, .product .item-media:hover img\";i:1619;s:25:\".product .thumbnails-wrap\";i:1620;s:63:\".product .thumbnails-wrap .woocommerce-product-gallery__image a\";i:1621;s:9:\".products\";i:1622;s:33:\".products:before, .products:after\";i:1623;s:38:\".upsells .products, .related .products\";i:1624;s:26:\".products .item-content h4\";i:1625;s:10:\"li.product\";i:1626;s:18:\".owl-item .product\";i:1627;s:23:\".product h1.entry-title\";i:1628;s:11:\".product h3\";i:1629;s:22:\".product .rating-title\";i:1630;s:80:\".product [class*=\"col-\"]:first-child h2, .product [class*=\"col-\"]:first-child h3\";i:1631;s:23:\".product .product-media\";i:1632;s:16:\".product .images\";i:1633;s:147:\".product [class*=\"col-\"]:first-child a span, .product [class*=\"col-\"]:first-child .onsale, .product [class*=\"col-\"]:first-child .product-media span\";i:1634;s:168:\".product [class*=\"col-\"]:first-child a span.onsale, .product [class*=\"col-\"]:first-child .onsale.onsale, .product [class*=\"col-\"]:first-child .product-media span.onsale\";i:1635;s:18:\".related, .upsells\";i:1636;s:28:\".related > h2, .upsells > h2\";i:1637;s:50:\".related .item-content p, .upsells .item-content p\";i:1638;s:58:\".related .owl-theme .owl-nav, .upsells .owl-theme .owl-nav\";i:1639;s:70:\".related .owl-theme .owl-nav > div, .upsells .owl-theme .owl-nav > div\";i:1640;s:82:\".related .owl-theme .owl-nav > div:after, .upsells .owl-theme .owl-nav > div:after\";i:1641;s:88:\".related .owl-theme .owl-nav > div.owl-prev, .upsells .owl-theme .owl-nav > div.owl-prev\";i:1642;s:88:\".related .owl-theme .owl-nav > div.owl-next, .upsells .owl-theme .owl-nav > div.owl-next\";i:1643;s:48:\".related .added_to_cart, .upsells .added_to_cart\";i:1644;s:19:\".upsells + .related\";i:1645;s:34:\".related .owl-theme:hover .owl-nav\";i:1646;s:16:\".product-buttons\";i:1647;s:18:\".product-buttons a\";i:1648;s:80:\".product-buttons a.loading [class*=\'rt-icon\'], .product-buttons a.loading:before\";i:1649;s:94:\".product-buttons a.loading [class*=\'rt-icon\']:before, .product-buttons a.loading:before:before\";i:1650;s:33:\".product-buttons a.loading:before\";i:1651;s:47:\".product-buttons a i, .product-buttons a:before\";i:1652;s:25:\".product-buttons a:before\";i:1653;s:34:\".product-buttons a.favorite_button\";i:1654;s:24:\".product-buttons a:hover\";i:1655;s:32:\".product-buttons a.added_to_cart\";i:1656;s:38:\".product-buttons a.added_to_cart:hover\";i:1657;s:39:\".product-buttons a.added_to_cart:before\";i:1658;s:47:\".product-buttons a.product_type_variable:before\";i:1659;s:10:\".grid-view\";i:1660;s:15:\".grid-view .row\";i:1661;s:24:\".grid-view .product-meta\";i:1662;s:37:\".grid-view .product-meta .star-rating\";i:1663;s:31:\".grid-view .product-description\";i:1664;s:26:\".grid-view [class*=\"col-\"]\";i:1665;s:30:\".grid-view .item-media .onsale\";i:1666;s:26:\".grid-view .item-content p\";i:1667;s:26:\".grid-view .item-content a\";i:1668;s:31:\".grid-view .item-content a > h2\";i:1669;s:37:\".grid-view .item-content a > h2:hover\";i:1670;s:31:\".grid-view .item-content .stock\";i:1671;s:31:\".grid-view .item-content .price\";i:1672;s:35:\".ds .grid-view .item-content .price\";i:1673;s:35:\".grid-view .item-content .price del\";i:1674;s:35:\".grid-view .item-content .price ins\";i:1675;s:39:\".grid-view .item-content .added_to_cart\";i:1676;s:46:\".grid-view .item-content .added_to_cart:before\";i:1677;s:50:\".ds .grid-view .item-content .added_to_cart:before\";i:1678;s:52:\".grid-view .item-content .added_to_cart:hover:before\";i:1679;s:171:\".grid-view .item-content .button.product_type_grouped:hover, .grid-view .item-content .button.product_type_simple:hover, .grid-view .item-content .add_to_cart_button:hover\";i:1680;s:51:\".grid-view .item-content .add_to_cart_button:before\";i:1681;s:57:\".grid-view .item-content .add_to_cart_button:hover:before\";i:1682;s:61:\".grid-view .item-content .button.product_type_variable:before\";i:1683;s:11:\".summary h1\";i:1684;s:70:\".summary .variations .value select, .summary .variations .value option\";i:1685;s:62:\".summary .product-rating, .summary .woocommerce-product-rating\";i:1686;s:58:\".summary .woocommerce-product-details__short-description p\";i:1687;s:15:\".summary .price\";i:1688;s:19:\".summary .price ins\";i:1689;s:44:\".summary .woocommerce-variation-price .price\";i:1690;s:21:\".summary .star-rating\";i:1691;s:15:\".summary .stock\";i:1692;s:18:\".summary .email-to\";i:1693;s:29:\".summary .product-option-name\";i:1694;s:22:\".summary .theme_button\";i:1695;s:52:\".summary .theme_button.wc-variation-selection-needed\";i:1696;s:19:\".summary .posted_in\";i:1697;s:33:\".summary .posted_in .small_button\";i:1698;s:22:\".summary .product_meta\";i:1699;s:29:\".summary .product_meta > span\";i:1700;s:34:\".summary .product_meta > span .sku\";i:1701;s:41:\".summary .product_meta > span:first-child\";i:1702;s:33:\".summary [itemprop=\"description\"]\";i:1703;s:20:\".summary ul.list1 li\";i:1704;s:26:\".summary .reset_variations\";i:1705;s:33:\".summary .reset_variations:before\";i:1706;s:14:\".summary label\";i:1707;s:31:\".summary [class*=\'add-to-cart\']\";i:1708;s:9:\".quantity\";i:1709;s:25:\".quantity [type=\"button\"]\";i:1710;s:31:\".quantity [type=\"button\"].minus\";i:1711;s:25:\".quantity [type=\"number\"]\";i:1712;s:14:\".variations td\";i:1713;s:20:\".variations td.value\";i:1714;s:20:\".product_meta_bottom\";i:1715;s:13:\".product-tabs\";i:1716;s:24:\".owl-carousel.thumbnails\";i:1717;s:34:\".owl-carousel.thumbnails .owl-dots\";i:1718;s:48:\".owl-carousel.thumbnails .owl-dots .owl-dot span\";i:1719;s:33:\".owl-carousel.thumbnails .owl-nav\";i:1720;s:39:\".owl-carousel.thumbnails .owl-nav > div\";i:1721;s:51:\".owl-carousel.thumbnails .owl-nav > div:first-child\";i:1722;s:45:\".owl-carousel.thumbnails .owl-nav > div:after\";i:1723;s:43:\".product-icons .teaser [class*=\"_bg_color\"]\";i:1724;s:39:\".product + .nav-tabs, .woocommerce-tabs\";i:1725;s:23:\".star-rating, p.stars a\";i:1726;s:45:\".star-rating span:before, .star-rating:before\";i:1727;s:12:\".star-rating\";i:1728;s:19:\".star-rating:before\";i:1729;s:17:\".star-rating span\";i:1730;s:24:\".star-rating span:before\";i:1731;s:44:\"p.stars a:before, p.stars a:hover ~ a:before\";i:1732;s:7:\"p.stars\";i:1733;s:9:\"p.stars a\";i:1734;s:16:\"p.stars a:before\";i:1735;s:56:\"p.stars.selected a.active:before, p.stars:hover a:before\";i:1736;s:36:\"p.stars.selected a.active ~ a:before\";i:1737;s:38:\"p.stars.selected a:not(.active):before\";i:1738;s:12:\".commentlist\";i:1739;s:15:\".commentlist li\";i:1740;s:19:\".commentlist li img\";i:1741;s:26:\".commentlist .comment-text\";i:1742;s:19:\".commentlist p.meta\";i:1743;s:26:\".commentlist p.meta strong\";i:1744;s:24:\".commentlist p.meta time\";i:1745;s:25:\".commentlist .star-rating\";i:1746;s:30:\".woocommerce-tabs .tab-content\";i:1747;s:70:\".woocommerce-tabs .tab-content .woocommerce-Tabs-panel--description h2\";i:1748;s:57:\".woocommerce-tabs .tab-content .woocommerce-Reviews-title\";i:1749;s:51:\".woocommerce-tabs .tab-content .comment-form-rating\";i:1750;s:70:\".woocommerce-tabs .tab-content .comment-form-rating .selectize-control\";i:1751;s:47:\".woocommerce-tabs .tab-content .comment-respond\";i:1752;s:50:\".woocommerce-tabs .tab-content .comment-respond h3\";i:1753;s:50:\".woocommerce-tabs .tab-content .comment-respond h4\";i:1754;s:80:\"#review_form textarea, #review_form [type*=\'text\'], #review_form [type*=\'email\']\";i:1755;s:92:\".ds #review_form textarea, .ds\n#review_form [type*=\'text\'], .ds\n#review_form [type*=\'email\']\";i:1756;s:31:\".comment-form-rating label[for]\";i:1757;s:23:\".woocommerce-info.alert\";i:1758;s:26:\".woocommerce-cart .content\";i:1759;s:12:\".cross-sells\";i:1760;s:14:\".shop_table ul\";i:1761;s:23:\".shop_table .input-text\";i:1762;s:20:\".shop_table .actions\";i:1763;s:41:\".shop_table .actions input[type=\"submit\"]\";i:1764;s:96:\".shop_table .actions input[type=\"submit\"]:hover, .shop_table .actions input[type=\"submit\"]:focus\";i:1765;s:49:\".shop_table .actions .coupon input[type=\"submit\"]\";i:1766;s:41:\".shop_table .actions .button.apply_coupon\";i:1767;s:96:\".shop_table .actions .button.apply_coupon:hover, .shop_table .actions .button.apply_coupon:focus\";i:1768;s:40:\".shop_table .actions .button.update_cart\";i:1769;s:94:\".shop_table .actions .button.update_cart:hover, .shop_table .actions .button.update_cart:focus\";i:1770;s:40:\".order-total strong, .cart_totals strong\";i:1771;s:10:\".shop-adds\";i:1772;s:14:\".shop-adds .fa\";i:1773;s:17:\".shop-adds.teaser\";i:1774;s:38:\".shop-adds.teaser [class*=\"_bg_color\"]\";i:1775;s:19:\"table.cart thead th\";i:1776;s:17:\"table.cart .media\";i:1777;s:33:\"table.cart .product-thumbnail img\";i:1778;s:13:\"table.cart h4\";i:1779;s:21:\"table.cart .cart_item\";i:1780;s:33:\"table.cart .cart_item:first-child\";i:1781;s:28:\"table.cart td, table.cart th\";i:1782;s:26:\"table.cart .product-remove\";i:1783;s:29:\"table.cart .product-thumbnail\";i:1784;s:28:\"table.cart .product-subtotal\";i:1785;s:28:\"table.cart .product-quantity\";i:1786;s:38:\"table.cart .product-quantity .quantity\";i:1787;s:25:\"table.cart .product-price\";i:1788;s:18:\"table.cart .coupon\";i:1789;s:24:\"table.cart .coupon label\";i:1790;s:12:\"table.cart a\";i:1791;s:16:\".ds table.cart a\";i:1792;s:26:\"table.cart td.product-name\";i:1793;s:17:\".cart_totals > h2\";i:1794;s:27:\".cart_totals h4:first-child\";i:1795;s:18:\".cart_totals table\";i:1796;s:44:\".cart_totals table th, .cart_totals table td\";i:1797;s:58:\".cart_totals table th strong, .cart_totals table td strong\";i:1798;s:21:\".cart_totals table th\";i:1799;s:21:\".cart_totals table tr\";i:1800;s:33:\".cart_totals table tr:first-child\";i:1801;s:72:\".cart_totals table .cart-subtotal td, .cart_totals table .order-total td\";i:1802;s:66:\".cart_totals table .cart-subtotal .woocommerce-Price-amount.amount\";i:1803;s:35:\".wc-proceed-to-checkout .wc-forward\";i:1804;s:10:\".shop-info\";i:1805;s:14:\"#createaccount\";i:1806;s:32:\"#ship-to-different-address label\";i:1807;s:40:\"#ship-to-different-address label + input\";i:1808;s:57:\".checkout [class*=\'col-\'], .shop-register [class*=\'col-\']\";i:1809;s:30:\".woocommerce-checkout .content\";i:1810;s:24:\".woocommerce-checkout h3\";i:1811;s:132:\".woocommerce-checkout .woocommerce-checkout-review-order-table th, .woocommerce-checkout .woocommerce-checkout-review-order-table td\";i:1812;s:105:\".woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered\";i:1813;s:46:\".woocommerce-checkout .select2-results__option\";i:1814;s:52:\".woocommerce-checkout .woocommerce-additional-fields\";i:1815;s:49:\".woocommerce form:before, .woocommerce form:after\";i:1816;s:37:\".woocommerce form input[type=\"radio\"]\";i:1817;s:40:\".woocommerce form input[type=\"checkbox\"]\";i:1818;s:30:\".woocommerce form p:last-child\";i:1819;s:9:\".form-row\";i:1820;s:33:\".form-row:before, .form-row:after\";i:1821;s:19:\".form-row .checkbox\";i:1822;s:24:\".form-row .lost_password\";i:1823;s:15:\".form-row label\";i:1824;s:143:\".form-row [type=\"email\"], .form-row [type=\"number\"], .form-row [type=\"password\"], .form-row [type=\"text\"], .form-row select, .form-row textarea\";i:1825;s:33:\".woocommerce-billing-fields label\";i:1826;s:42:\".woocommerce-billing-fields #billing_phone\";i:1827;s:65:\".woocommerce-billing-fields .form-row .select2 .select2-selection\";i:1828;s:67:\".woocommerce-billing-fields .form-row .select2 .select2-selection b\";i:1829;s:29:\"#account_password_field label\";i:1830;s:58:\".woocommerce-account-fields .checkbox input[type=checkbox]\";i:1831;s:36:\".woocommerce-additional-fields label\";i:1832;s:17:\".select2-dropdown\";i:1833;s:358:\".select2-dropdown input[type=\"text\"], .select2-dropdown input[type=\"email\"], .select2-dropdown input[type=\"url\"], .select2-dropdown input[type=\"password\"], .select2-dropdown input[type=\"search\"], .select2-dropdown input[type=\"tel\"], .select2-dropdown input[type=\"number\"], .select2-dropdown textarea, .select2-dropdown select, .select2-dropdown .form-control\";i:1834;s:60:\".woocommerce form.login label, .woocommerce form.login input\";i:1835;s:39:\".woocommerce form.login [type=\"submit\"]\";i:1836;s:47:\"#order_review.woocommerce-checkout-review-order\";i:1837;s:88:\"#order_review.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table\";i:1838;s:94:\"#order_review.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table thead\";i:1839;s:184:\"#order_review.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table th, #order_review.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table td\";i:1840;s:198:\"#order_review.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table th strong, #order_review.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table td strong\";i:1841;s:102:\"#order_review.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .product-name\";i:1842;s:109:\"#order_review.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .product-name strong\";i:1843;s:103:\"#order_review.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .product-total\";i:1844;s:103:\"#order_review.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .cart-subtotal\";i:1845;s:101:\"#order_review.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table .order-total\";i:1846;s:12:\".cart-button\";i:1847;s:12:\".share-title\";i:1848;s:24:\".shop-item .item-content\";i:1849;s:22:\".shop-item .item-price\";i:1850;s:27:\".shop-item .item-price span\";i:1851;s:23:\".shop-item .cart-button\";i:1852;s:39:\".related .owl-carousel .owl-stage-outer\";i:1853;s:22:\".related .item-content\";i:1854;s:55:\".related .item-content .woocommerce-loop-product__title\";i:1855;s:42:\".related .item-content .add_to_cart_button\";i:1856;s:11:\".related h2\";i:1857;s:34:\".select2-container .select2-choice\";i:1858;s:20:\".select2-drop-active\";i:1859;s:29:\".woocommerce-checkout-payment\";i:1860;s:36:\".woocommerce-checkout-payment .radio\";i:1861;s:32:\".woocommerce-checkout-payment ul\";i:1862;s:32:\".woocommerce-checkout-payment li\";i:1863;s:31:\".woocommerce-checkout-payment p\";i:1864;s:33:\".woocommerce-checkout-payment img\";i:1865;s:45:\".woocommerce-checkout-payment [type=\"submit\"]\";i:1866;s:11:\".wc-forward\";i:1867;s:13:\".row > .alert\";i:1868;s:33:\".woocommerce-MyAccount-navigation\";i:1869;s:36:\".woocommerce-MyAccount-navigation ul\";i:1870;s:36:\".woocommerce-MyAccount-navigation li\";i:1871;s:46:\".woocommerce-MyAccount-navigation .is-active a\";i:1872;s:40:\".wc-proceed-to-checkout .checkout-button\";i:1873;s:46:\".wc-proceed-to-checkout .checkout-button:hover\";i:1874;s:33:\".woocommerce-MyAccount-content h2\";i:1875;s:20:\".woocommerce-Message\";i:1876;s:40:\".woocommerce-Message .woocommerce-Button\";i:1877;s:14:\".order-actions\";i:1878;s:17:\".customer_details\";i:1879;s:18:\".addresses address\";i:1880;s:46:\".widget_shopping_cart .product_list_widget img\";i:1881;s:48:\".widget_shopping_cart .product_list_widget a + a\";i:1882;s:58:\".widget_shopping_cart .product_list_widget .mini_cart_item\";i:1883;s:52:\".widget_shopping_cart .product_list_widget .quantity\";i:1884;s:78:\".widget_shopping_cart .product_list_widget .quantity .woocommerce-Price-amount\";i:1885;s:32:\".widget_shopping_cart .cart_list\";i:1886;s:51:\".widget_shopping_cart .woocommerce-mini-cart__total\";i:1887;s:58:\".widget_shopping_cart .woocommerce-mini-cart__total strong\";i:1888;s:62:\".ds .widget_shopping_cart .woocommerce-mini-cart__total strong\";i:1889;s:77:\".widget_shopping_cart .woocommerce-mini-cart__total .woocommerce-Price-amount\";i:1890;s:53:\".widget_shopping_cart .woocommerce-mini-cart__buttons\";i:1891;s:29:\".widget_shopping_cart .remove\";i:1892;s:33:\".ds .widget_shopping_cart .remove\";i:1893;s:39:\".ds .widget_shopping_cart .remove:hover\";i:1894;s:36:\".widget_shopping_cart .remove:before\";i:1895;s:33:\".widget_shopping_cart .wc-forward\";i:1896;s:39:\".widget_shopping_cart .wc-forward:hover\";i:1897;s:42:\".widget_shopping_cart .wc-forward.checkout\";i:1898;s:62:\".widget_top_rated_products .product_list_widget .product-title\";i:1899;s:60:\".widget_top_rated_products .product_list_widget .star-rating\";i:1900;s:73:\".widget_top_rated_products .product_list_widget .woocommerce-Price-amount\";i:1901;s:51:\".widget_top_rated_products .product_list_widget ins\";i:1902;s:47:\".widget_layered_nav.widget_categories > ul > li\";i:1903;s:59:\".widget_layered_nav.widget_categories > ul > li:first-child\";i:1904;s:49:\".widget_layered_nav.widget_categories .count.dark\";i:1905;s:36:\".widget_price_filter input[readonly]\";i:1906;s:37:\".widget_price_filter .ui-slider-range\";i:1907;s:42:\".widget_price_filter .ui-slider-horizontal\";i:1908;s:31:\".widget_price_filter label[for]\";i:1909;s:33:\".widget_price_filter .price_label\";i:1910;s:32:\".widget_price_filter .form-group\";i:1911;s:27:\".widget_price_filter button\";i:1912;s:33:\".widget_price_filter button:hover\";i:1913;s:41:\".widget_price_filter .price_slider_amount\";i:1914;s:47:\".widget_price_filter .price_slider_amount:after\";i:1915;s:38:\".widget_layered_nav .select2-container\";i:1916;s:90:\".widget_layered_nav .select2-container:hover, .widget_layered_nav .select2-container:focus\";i:1917;s:63:\".widget_layered_nav .select2-container .dropdown-wrapper option\";i:1918;s:45:\".widget_layered_nav .select2-selection__clear\";i:1919;s:65:\".widget_layered_nav .select2-container .select2-selection--single\";i:1920;s:103:\".widget_layered_nav .select2-container--default .select2-selection--single .select2-selection__rendered\";i:1921;s:100:\".widget_layered_nav .select2-container--default .select2-selection--single .select2-selection__arrow\";i:1922;s:102:\".widget_layered_nav .select2-container--default .select2-selection--single .select2-selection__arrow b\";i:1923;s:106:\".widget_layered_nav .select2-container--default .select2-selection--single .select2-selection__arrow:after\";i:1924;s:66:\".widget_layered_nav .select2-container--default .select2-selection\";i:1925;s:18:\".ui-widget-overlay\";i:1926;s:10:\".ui-slider\";i:1927;s:28:\".ui-slider .ui-slider-handle\";i:1928;s:27:\".ui-slider .ui-slider-range\";i:1929;s:93:\".ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range\";i:1930;s:21:\".ui-slider-horizontal\";i:1931;s:39:\".ui-slider-horizontal .ui-slider-handle\";i:1932;s:38:\".ui-slider-horizontal .ui-slider-range\";i:1933;s:42:\".ui-slider-horizontal .ui-slider-range-min\";i:1934;s:42:\".ui-slider-horizontal .ui-slider-range-max\";i:1935;s:19:\".ui-slider-vertical\";i:1936;s:37:\".ui-slider-vertical .ui-slider-handle\";i:1937;s:36:\".ui-slider-vertical .ui-slider-range\";i:1938;s:40:\".ui-slider-vertical .ui-slider-range-min\";i:1939;s:40:\".ui-slider-vertical .ui-slider-range-max\";i:1940;s:37:\".widget_layered_nav .color-filters li\";i:1941;s:36:\".widget_layered_nav .color-filters a\";i:1942;s:43:\".widget_layered_nav .color-filters a:before\";i:1943;s:39:\".widget_layered_nav .color-filters span\";i:1944;s:49:\".woocommerce-widget-layered-nav.widget_categories\";i:1945;s:44:\".widget_product_categories.widget_categories\";i:1946;s:54:\".widget_product_categories.widget_categories > ul > li\";i:1947;s:66:\".widget_product_categories.widget_categories > ul > li:first-child\";i:1948;s:61:\".widget_product_categories.widget_categories ul.children > li\";i:1949;s:73:\".widget_product_categories.widget_categories ul.children > li:first-child\";i:1950;s:72:\".widget_product_categories.widget_categories ul.children > li:last-child\";i:1951;s:56:\".widget_product_categories.widget_categories .count.dark\";i:1952;s:20:\".widget_products img\";i:1953;s:26:\".widget_products .media h3\";i:1954;s:29:\".widget_products .star-rating\";i:1955;s:23:\".widget_products .price\";i:1956;s:36:\".widget_products .add_to_cart_button\";i:1957;s:42:\".widget_products .add_to_cart_button:hover\";i:1958;s:22:\".widget .product-title\";i:1959;s:33:\".widget .woocommerce-Price-amount\";i:1960;s:37:\".widget del .woocommerce-Price-amount\";i:1961;s:20:\".widget .star-rating\";i:1962;s:128:\".widget_recent_reviews li:before, .widget_recent_reviews li:after, .product_list_widget li:before, .product_list_widget li:after\";i:1963;s:52:\".widget_recent_reviews img, .product_list_widget img\";i:1964;s:21:\".widget_rating_filter\";i:1965;s:24:\".widget_rating_filter li\";i:1966;s:34:\".widget_rating_filter .star-rating\";i:1967;s:36:\".widget_product_search .widget-title\";i:1968;s:83:\".woocommerce-checkout ::-moz-placeholder, .widget_product_search ::-moz-placeholder\";i:1969;s:91:\".woocommerce-checkout :-ms-input-placeholder, .widget_product_search :-ms-input-placeholder\";i:1970;s:101:\".woocommerce-checkout ::-webkit-input-placeholder, .widget_product_search ::-webkit-input-placeholder\";i:1971;s:81:\".woocommerce-checkout :-moz-placeholder, .widget_product_search :-moz-placeholder\";i:1972;s:93:\".woocommerce-checkout :focus:-moz-placeholder, .widget_product_search :focus:-moz-placeholder\";i:1973;s:95:\".woocommerce-checkout :focus::-moz-placeholder, .widget_product_search :focus::-moz-placeholder\";i:1974;s:80:\"body table.booked-calendar input[type=submit], body table.booked-calendar button\";i:1975;s:29:\"body table.booked-calendar td\";i:1976;s:70:\"body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-range\";i:1977;s:71:\"body .booked-calendar-wrap .booked-appt-list .timeslot .spots-available\";i:1978;s:44:\"body table.booked-calendar .booked-appt-list\";i:1979;s:36:\"body table.booked-calendar td > span\";i:1980;s:47:\"body table.booked-calendar td.today .today_word\";i:1981;s:43:\"body .booked-list-view .booked-appt-list h2\";i:1982;s:58:\"body .booked-list-view .booked-appt-list h2.booked-no-prev\";i:1983;s:44:\"body .booked-list-view .booked-list-view-nav\";i:1984;s:146:\"body .booked-list-view .booked-list-view-nav .booked-list-view-date-next, body .booked-list-view .booked-list-view-nav .booked-list-view-date-prev\";i:1985;s:72:\"body .booked-list-view .booked-list-view-nav .booked-list-view-date-next\";i:1986;s:36:\"body table.booked-calendar td .count\";i:1987;s:43:\"body table.booked-calendar td .date .number\";i:1988;s:51:\"body #booked-profile-page .booked-profile-appt-list\";i:1989;s:39:\"body #booked-profile-page #profile-edit\";i:1990;s:77:\"body #booked-profile-page .booked-profile-appt-list .appt-block .status-block\";i:1991;s:57:\"body .booked-calendar-wrap table.booked-calendar thead th\";i:1992;s:65:\"body .booked-calendar-wrap table.booked-calendar thead tr.days th\";i:1993;s:46:\"body table.booked-calendar thead th .monthName\";i:1994;s:83:\"body table.booked-calendar th .page-left, body table.booked-calendar th .page-right\";i:1995;s:51:\"body .booked-calendar-wrap table.booked-calendar td\";i:1996;s:68:\"body .booked-calendar-wrap table.booked-calendar thead th .page-left\";i:1997;s:69:\"body .booked-calendar-wrap table.booked-calendar thead th .page-right\";i:1998;s:74:\"body .booked-calendar-wrap table.booked-calendar thead th .page-left:hover\";i:1999;s:75:\"body .booked-calendar-wrap table.booked-calendar thead th .page-right:hover\";i:2000;s:62:\"body .booked-calendar-wrap table.booked-calendar th .monthName\";i:2001;s:64:\"body .booked-calendar-wrap table.booked-calendar th .monthName a\";i:2002;s:58:\"body .booked-calendar-wrap table.booked-calendar td .count\";i:2003;s:57:\"body .booked-calendar-wrap table.booked-calendar td .date\";i:2004;s:65:\"body .booked-calendar-wrap table.booked-calendar td .date .number\";i:2005;s:132:\"body .booked-calendar-wrap table.booked-calendar td.blur .date, body .booked-calendar-wrap table.booked-calendar td.blur:hover .date\";i:2006;s:136:\"body .booked-calendar-wrap table.booked-calendar td.booked .date, body .booked-calendar-wrap table.booked-calendar td.booked:hover .date\";i:2007;s:63:\"body .booked-calendar-wrap table.booked-calendar td.today .date\";i:2008;s:69:\"body .booked-calendar-wrap table.booked-calendar td.today:hover .date\";i:2009;s:63:\"body .booked-calendar-wrap table.booked-calendar td:hover .date\";i:2010;s:80:\"body .booked-calendar-wrap table.booked-calendar tr.week td.active .date .number\";i:2011;s:65:\"body .booked-calendar-wrap table.booked-calendar tr.entryBlock td\";i:2012;s:66:\"body .booked-calendar-wrap table.booked-calendar .booked-appt-list\";i:2013;s:72:\"body .booked-calendar-wrap.small table.booked-calendar .booked-appt-list\";i:2014;s:47:\"body table.booked-calendar .booked-appt-list h2\";i:2015;s:52:\"body table.booked-calendar .booked-appt-list h2 span\";i:2016;s:54:\"body table.booked-calendar .booked-appt-list .timeslot\";i:2017;s:141:\"body table.booked-calendar .booked-appt-list .timeslot .timeslot-time, body table.booked-calendar .booked-appt-list .timeslot .timeslot-count\";i:2018;s:178:\"body table.booked-calendar .booked-appt-list .timeslot .timeslot-mobile-title, body .booked-calendar-wrap table.booked-calendar .booked-appt-list .timeslot .timeslot-mobile-title\";i:2019;s:150:\"body table.booked-calendar .booked-appt-list .timeslot .timeslot-people, body table.booked-calendar .booked-appt-list .timeslot .timeslot-people:hover\";i:2020;s:78:\"body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button\";i:2021;s:95:\"body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button .button-timeslot\";i:2022;s:91:\"body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button .button-text\";i:2023;s:142:\"body .booked-calendar-wrap table.booked-calendar td.prev-date .date, body .booked-calendar-wrap table.booked-calendar td.prev-date:hover .date\";i:2024;s:152:\"body .booked-calendar-wrap table.booked-calendar tr.week td.active .date, body .booked-calendar-wrap table.booked-calendar tr.week td.active:hover .date\";i:2025;s:54:\"body #booked-profile-page .result-section.table-layout\";i:2026;s:94:\"body #booked-profile-page .result-section.table-layout .table-box .cell-title .compact-img img\";i:2027;s:96:\"body #booked-profile-page .booked-tabs li, body #booked-profile-page .booked-tabs li.edit-button\";i:2028;s:100:\"body #booked-profile-page .booked-tabs li a, body #booked-profile-page .booked-tabs li.edit-button a\";i:2029;s:18:\"body .booked-modal\";i:2030;s:29:\"body .booked-modal .bm-window\";i:2031;s:48:\"body .booked-modal .bm-window .booked-scrollable\";i:2032;s:30:\"body .booked-modal .bm-overlay\";i:2033;s:38:\"body .booked-modal .bm-window p.name b\";i:2034;s:242:\"body .booked-list-view .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-people button .button-timeslot, body .booked-calendar-wrap .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-people button .button-timeslot\";i:2035;s:37:\"body .booked-modal input[type=submit]\";i:2036;s:26:\"body .booked-modal .button\";i:2037;s:29:\"body .booked-calendarSwitcher\";i:2038;s:34:\"body .booked-calendarSwitcher i.fa\";i:2039;s:36:\"body .booked-calendarSwitcher select\";i:2040;s:206:\"body #profile-edit #booked-page-form p.form-nickname, body #profile-edit #booked-page-form p.form-email, body #profile-edit #booked-page-form p.form-url, body #profile-edit #booked-page-form p.form-password\";i:2041;s:42:\"body .booked-modal #customerChoices .field\";i:2042;s:50:\"body .booked-list-view .booked-appt-list h2 strong\";i:2043;s:59:\"body .booked-list-view .booked-appt-list h2 span:last-child\";i:2044;s:50:\"body .booked-list-view .booked-appt-list .timeslot\";i:2045;s:133:\"body .booked-list-view .booked-appt-list .timeslot .timeslot-time, body .booked-list-view .booked-appt-list .timeslot .timeslot-count\";i:2046;s:67:\"body .booked-list-view .booked-appt-list .timeslot .timeslot-people\";i:2047;s:74:\"body .booked-list-view .booked-appt-list .timeslot .timeslot-people button\";i:2048;s:91:\"body .booked-list-view .booked-appt-list .timeslot .timeslot-people button .button-timeslot\";i:2049;s:87:\"body .booked-list-view .booked-appt-list .timeslot .timeslot-people button .button-text\";i:2050;s:101:\"body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-people button .timeslot-mobile-title\";i:2051;s:93:\"body .booked-calendar-wrap .booked-appt-list .timeslot.timeslot-count-hidden .timeslot-people\";i:2052;s:807:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a.ui-state-active, #ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a.ui-state-active:hover, body #booked-profile-page input[type=submit].button-primary:hover, body .booked-list-view button.button:hover, body .booked-list-view input[type=submit].button-primary:hover, body table.booked-calendar input[type=submit].button-primary:hover, body .booked-modal input[type=submit].button-primary:hover, body #booked-profile-page .booked-profile-header, body #booked-profile-page .booked-tabs li.active a, body #booked-profile-page .booked-tabs li.active a:hover, body #booked-profile-page .appt-block .google-cal-button > a:hover, #ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header\";i:2053;s:419:\"body #booked-profile-page input[type=submit].button-primary:hover, body table.booked-calendar input[type=submit].button-primary:hover, body .booked-list-view button.button:hover, body .booked-list-view input[type=submit].button-primary:hover, body .booked-modal input[type=submit].button-primary:hover, body #booked-profile-page .booked-profile-header, body #booked-profile-page .appt-block .google-cal-button > a:hover\";i:2054;s:63:\"body table.booked-calendar th, body table.booked-calendar thead\";i:2055;s:84:\"body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button:hover\";i:2056;s:88:\"body .ds table.booked-calendar .booked-appt-list .timeslot .timeslot-people button:hover\";i:2057;s:318:\"body table.booked-calendar tr.days, body table.booked-calendar tr.days th, body .booked-calendarSwitcher.calendar, body #booked-profile-page .booked-tabs, #ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar thead, #ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar thead th\";i:2058;s:77:\"body table.booked-calendar tr.days th, body #booked-profile-page .booked-tabs\";i:2059;s:1046:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a, #ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a:hover, body #booked-profile-page input[type=submit].button-primary, body table.booked-calendar input[type=submit].button-primary, body .booked-list-view button.button, body .booked-list-view input[type=submit].button-primary, body .booked-list-view button.button, body .booked-list-view input[type=submit].button-primary, body .booked-modal input[type=submit].button-primary, body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button, body #booked-profile-page .booked-profile-appt-list .appt-block.approved .status-block, body #booked-profile-page .appt-block .google-cal-button > a, body .booked-modal p.booked-title-bar, body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active, body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active:hover, .booked-ms-modal .booked-book-appt\";i:2060;s:40:\"body table.booked-calendar td .date span\";i:2061;s:46:\"body table.booked-calendar td:hover .date span\";i:2062;s:58:\"body table.booked-calendar td:hover .date.tooltipster span\";i:2063;s:665:\"body #booked-profile-page input[type=submit].button-primary, body table.booked-calendar input[type=submit].button-primary, body .booked-list-view button.button, body .booked-list-view input[type=submit].button-primary, body .booked-list-view button.button, body .booked-list-view input[type=submit].button-primary, body .booked-modal input[type=submit].button-primary, body #booked-profile-page .appt-block .google-cal-button > a, body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button, body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active, body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active:hover\";i:2064;s:227:\"body .booked-modal .bm-window p i.fa, body .booked-modal .bm-window a, body .booked-appt-list .booked-public-appointment-title, body .booked-modal .bm-window p.appointment-title, .booked-ms-modal.visible:hover .booked-book-appt\";i:2065;s:70:\".booked-appt-list .timeslot.has-title .booked-public-appointment-title\";i:2066;s:46:\"body .calendarSavingState, body #data-ajax-url\";i:2067;s:25:\"body .calendarSavingState\";i:2068;s:36:\"#wp-admin-bar-booked .ab-icon:before\";i:2069;s:20:\"body.booked-noScroll\";i:2070;s:26:\"body .bookedClearFix:after\";i:2071;s:60:\"body table.booked-calendar th, body table.booked-calendar td\";i:2072;s:33:\"body .ds table.booked-calendar td\";i:2073;s:300:\"body #booked-profile-page input[type=submit], body #booked-profile-page button, body .booked-list-view input[type=submit], body .booked-list-view button, body table.booked-calendar input[type=submit], body table.booked-calendar button, body .booked-modal input[type=submit], body .booked-modal button\";i:2074;s:372:\"body #booked-profile-page input[type=submit].bb-small, body #booked-profile-page button.bb-small, body .booked-list-view input[type=submit].bb-small, body .booked-list-view button.bb-small, body table.booked-calendar input[type=submit].bb-small, body table.booked-calendar button.bb-small, body .booked-modal input[type=submit].bb-small, body .booked-modal button.bb-small\";i:2075;s:233:\"body #booked-profile-page input[type=submit].button-primary, body table.booked-calendar input[type=submit].button-primary, body .booked-list-view input[type=submit].button-primary, body .booked-modal input[type=submit].button-primary\";i:2076;s:348:\"body #booked-profile-page input[type=submit]:hover, body #booked-profile-page button:hover, body .booked-list-view input[type=submit]:hover, body .booked-list-view button:hover, body table.booked-calendar input[type=submit]:hover, body table.booked-calendar button:hover, body .booked-modal input[type=submit]:hover, body .booked-modal button:hover\";i:2077;s:257:\"body #booked-profile-page input[type=submit].button-primary:hover, body table.booked-calendar input[type=submit].button-primary:hover, body .booked-list-view input[type=submit].button-primary:hover, body .booked-modal input[type=submit].button-primary:hover\";i:2078;s:26:\"body table.booked-calendar\";i:2079;s:95:\"body table.booked-calendar thead th .page-right, body table.booked-calendar thead th .page-left\";i:2080;s:99:\"body table.booked-calendar thead th .page-right i, body table.booked-calendar thead th .page-left i\";i:2081;s:107:\"body table.booked-calendar thead th .page-right:hover, body table.booked-calendar thead th .page-left:hover\";i:2082;s:103:\"body .ds table.booked-calendar thead th .page-right, body .ds table.booked-calendar thead th .page-left\";i:2083;s:107:\"body .ds table.booked-calendar thead th .page-right i, body .ds table.booked-calendar thead th .page-left i\";i:2084;s:115:\"body .ds table.booked-calendar thead th .page-right:hover, body .ds table.booked-calendar thead th .page-left:hover\";i:2085;s:107:\"body table.booked-calendar thead th .page-right:after, body table.booked-calendar thead th .page-left:after\";i:2086;s:53:\"body table.booked-calendar thead th .page-right:after\";i:2087;s:52:\"body table.booked-calendar thead th .page-left:after\";i:2088;s:35:\"body table.booked-calendar thead th\";i:2089;s:50:\"body .ds table.booked-calendar thead th .monthName\";i:2090;s:35:\"body table.booked-calendar tbody td\";i:2091;s:26:\"body .booked-calendar-wrap\";i:2092;s:50:\"body .widget_booked_calendar .booked-calendar-wrap\";i:2093;s:30:\"body .ds table.booked-calendar\";i:2094;s:32:\"body table.booked-calendar thead\";i:2095;s:29:\"body table.booked-calendar th\";i:2096;s:34:\"body table.booked-calendar tr.days\";i:2097;s:37:\"body table.booked-calendar tr.days th\";i:2098;s:42:\"body table.booked-calendar th .monthName a\";i:2099;s:48:\"body table.booked-calendar th .monthName a:hover\";i:2100;s:40:\"body table.booked-calendar th .page-left\";i:2101;s:41:\"body table.booked-calendar th .page-right\";i:2102;s:41:\"body table.booked-calendar td:first-child\";i:2103;s:40:\"body table.booked-calendar td:last-child\";i:2104;s:44:\"body .ds table.booked-calendar td:last-child\";i:2105;s:45:\"body .ds table.booked-calendar td:first-child\";i:2106;s:35:\"body table.booked-calendar td .date\";i:2107;s:39:\"body .ds table.booked-calendar td .date\";i:2108;s:41:\"body table.booked-calendar td:hover .date\";i:2109;s:44:\"body table.booked-calendar tr.week td.active\";i:2110;s:48:\"body .ds table.booked-calendar tr.week td.active\";i:2111;s:50:\"body table.booked-calendar tr.week td.active .date\";i:2112;s:58:\"body table.booked-calendar tr.week td.active .date .number\";i:2113;s:40:\"body table.booked-calendar tr.entryBlock\";i:2114;s:43:\"body table.booked-calendar tr.entryBlock td\";i:2115;s:47:\"body .ds table.booked-calendar tr.entryBlock td\";i:2116;s:51:\"body table.booked-calendar tr.entryBlock.loading td\";i:2117;s:156:\"body table.booked-calendar td.prev-date .date, body table.booked-calendar td.prev-date:hover .date, body table.booked-calendar td.prev-date:hover .date span\";i:2118;s:168:\"body .ds table.booked-calendar td.prev-date .date, body .ds table.booked-calendar td.prev-date:hover .date, body .ds table.booked-calendar td.prev-date:hover .date span\";i:2119;s:141:\"body table.booked-calendar td.blur .date, body table.booked-calendar td.blur:hover .date, body table.booked-calendar td.blur:hover .date span\";i:2120;s:104:\"body table.booked-calendar td.next-month .date span, body table.booked-calendar td.prev-month .date span\";i:2121;s:112:\"body .ds table.booked-calendar td.next-month .date span, body .ds table.booked-calendar td.prev-month .date span\";i:2122;s:116:\"body table.booked-calendar td.next-month:hover .date span, body table.booked-calendar td.prev-month:hover .date span\";i:2123;s:196:\"body table.booked-calendar td.booked .date, body table.booked-calendar td.booked:hover .date, body table.booked-calendar td.booked .date span, body table.booked-calendar td.booked:hover .date span\";i:2124;s:53:\"body table.booked-calendar td.active:hover .date span\";i:2125;s:264:\"body table.booked-calendar.booked-pa-active td.booked .date, body table.booked-calendar.booked-pa-active td.booked:hover .date, body table.booked-calendar.booked-pa-active td.booked .date span, body table.booked-calendar.booked-pa-active td.booked:hover .date span\";i:2126;s:70:\"body table.booked-calendar.booked-pa-active td.booked:hover .date span\";i:2127;s:156:\"body table.booked-calendar.booked-pa-active tr.week td.booked.active .date, body table.booked-calendar.booked-pa-active tr.week td.booked.active .date:hover\";i:2128;s:166:\"body table.booked-calendar.booked-pa-active tr.week td.booked.active .date span, body table.booked-calendar.booked-pa-active tr.week td.booked.active .date span:hover\";i:2129;s:94:\"body table.booked-calendar td.next-month .date, body table.booked-calendar td.prev-month .date\";i:2130;s:102:\"body .ds table.booked-calendar td.next-month .date, body .ds table.booked-calendar td.prev-month .date\";i:2131;s:35:\"body table.booked-calendar td.today\";i:2132;s:41:\"body table.booked-calendar td.today .date\";i:2133;s:46:\"body table.booked-calendar td.today .date span\";i:2134;s:56:\"body table.booked-calendar td.today.prev-date .date span\";i:2135;s:47:\"body table.booked-calendar td.today:hover .date\";i:2136;s:52:\"body table.booked-calendar td.today:hover .date span\";i:2137;s:59:\"body table.booked-calendar td.today.active:hover .date span\";i:2138;s:62:\"body table.booked-calendar td.today.prev-date:hover .date span\";i:2139;s:150:\"body table.booked-calendar tr.week td.active .date, body table.booked-calendar tr.week td.active:hover .date, body table.booked-calendar tr.entryBlock\";i:2140;s:162:\"body .ds table.booked-calendar tr.week td.active .date, body .ds table.booked-calendar tr.week td.active:hover .date, body .ds table.booked-calendar tr.entryBlock\";i:2141;s:44:\"body .booked-calendar-wrap .booked-appt-list\";i:2142;s:48:\"body .ds table.booked-calendar .booked-appt-list\";i:2143;s:50:\"body .booked-calendar-wrap .booked-appt-list.shown\";i:2144;s:47:\"body .booked-calendar-wrap .booked-appt-list h2\";i:2145;s:54:\"body .booked-calendar-wrap .booked-appt-list h2 strong\";i:2146;s:52:\"body .booked-calendar-wrap .booked-appt-list h2 span\";i:2147;s:51:\"body .ds .booked-calendar-wrap .booked-appt-list h2\";i:2148;s:46:\"body .booked-calendar-wrap .booked-appt-list p\";i:2149;s:54:\"body .booked-calendar-wrap .booked-appt-list .timeslot\";i:2150;s:58:\"body .ds .booked-calendar-wrap .booked-appt-list .timeslot\";i:2151;s:65:\"body .booked-calendar-wrap .booked-appt-list .timeslot:last-child\";i:2152;s:69:\"body .ds .booked-calendar-wrap .booked-appt-list .timeslot:last-child\";i:2153;s:60:\"body .booked-calendar-wrap .booked-appt-list .timeslot.faded\";i:2154;s:60:\"body .booked-calendar-wrap .booked-appt-list .timeslot:hover\";i:2155;s:64:\"body .ds .booked-calendar-wrap .booked-appt-list .timeslot:hover\";i:2156;s:56:\"body .booked-list-view .booked-appt-list .timeslot:hover\";i:2157;s:70:\"body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-title\";i:2158;s:69:\"body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-time\";i:2159;s:79:\"body .booked-calendar-wrap .booked-appt-list .timeslot.has-title .timeslot-time\";i:2160;s:74:\"body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-time i.fa\";i:2161;s:71:\"body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-people\";i:2162;s:73:\"body .ds .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-time\";i:2163;s:77:\"body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-range:before\";i:2164;s:83:\"body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-range .booked-icon\";i:2165;s:77:\"body .booked-calendar-wrap .booked-appt-list .timeslot .spots-available.empty\";i:2166;s:92:\"body .booked-calendar-wrap .booked-appt-list .timeslot.timeslot-unavailable .spots-available\";i:2167;s:78:\"body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-people button\";i:2168;s:95:\"body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-people button .button-timeslot\";i:2169;s:56:\"body .booked-calendar-wrap .booked-appt-list .timeslot a\";i:2170;s:158:\"body table.booked-calendar .booked-appt-list .timeslot button .spots-available, body .booked-calendar-wrap .booked-appt-list .timeslot button .spots-available\";i:2171;s:96:\"body .booked-calendar-wrap .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-time\";i:2172;s:112:\"body .booked-calendar-wrap .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-time .timeslot-title\";i:2173;s:112:\"body .booked-calendar-wrap .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-time .timeslot-range\";i:2174;s:96:\"body table.booked-calendar .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-time\";i:2175;s:112:\"body table.booked-calendar .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-time .timeslot-title\";i:2176;s:112:\"body table.booked-calendar .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-time .timeslot-range\";i:2177;s:91:\"body .booked-calendar-wrap .booked-appt-list .timeslot.timeslot-count-hidden .timeslot-time\";i:2178;s:65:\"body .booked-list-view .booked-appt-list .timeslot .timeslot-time\";i:2179;s:158:\"body .booked-list-view .booked-appt-list .timeslot .timeslot-people, body .booked-list-view .booked-appt-list .timeslot.timeslot-count-hidden .timeslot-people\";i:2180;s:105:\"body .booked-calendar-wrap.small table.booked-calendar .booked-appt-list .timeslot:hover .timeslot-people\";i:2181;s:84:\"body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-people button:hover\";i:2182;s:184:\"body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-people button[disabled], body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-people button[disabled]:hover\";i:2183;s:22:\"body .booked-list-view\";i:2184;s:107:\"body .booked-list-view.small .booked-appt-list h2, body .booked-list-view.booked-tight .booked-appt-list h2\";i:2185;s:109:\"body .booked-list-view.small .booked-list-view-nav, body .booked-list-view.booked-tight .booked-list-view-nav\";i:2186;s:332:\"body .booked-list-view.small .booked-list-view-nav .booked-list-view-date-next, body .booked-list-view.small .booked-list-view-nav .booked-list-view-date-prev, body .booked-list-view.booked-tight .booked-list-view-nav .booked-list-view-date-next, body .booked-list-view.booked-tight .booked-list-view-nav .booked-list-view-date-prev\";i:2187;s:49:\"body table.booked-calendar .timeslot-count strong\";i:2188;s:38:\"body table.booked-calendar .appt-block\";i:2189;s:49:\"body table.booked-calendar .timeslot-count button\";i:2190;s:51:\"body table.booked-calendar .timeslot-count a.delete\";i:2191;s:57:\"body table.booked-calendar .timeslot-count a.delete:hover\";i:2192;s:57:\"body table.booked-calendar tr.week td.active:hover .count\";i:2193;s:180:\"body table.booked-calendar .booked-appt-list .timeslot .timeslot-mobile-title, body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-people button .timeslot-mobile-title\";i:2194;s:107:\"body .booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button .timeslot-mobile-title\";i:2195;s:38:\"body .booked-calendarSwitcher.calendar\";i:2196;s:40:\"body .booked-calendarSwitcher.calendar p\";i:2197;s:45:\"body .booked-calendarSwitcher.calendar p i.fa\";i:2198;s:45:\"body .booked-calendarSwitcher.calendar select\";i:2199;s:105:\"body .booked-calendarSwitcher.calendar select:active, body .booked-calendarSwitcher.calendar select:focus\";i:2200;s:47:\"body .booked-calendarSwitcher.calendar p:before\";i:2201;s:34:\"body .booked-calendarSwitcher.list\";i:2202;s:36:\"body .booked-calendarSwitcher.list p\";i:2203;s:41:\"body .booked-calendarSwitcher.list p i.fa\";i:2204;s:41:\"body .booked-calendarSwitcher.list select\";i:2205;s:97:\"body .booked-calendarSwitcher.list select:active, body .booked-calendarSwitcher.list select:focus\";i:2206;s:63:\"body .booked-calendar-wrap.small table.booked-calendar thead th\";i:2207;s:71:\"body .booked-calendar-wrap.small table.booked-calendar thead tr.days th\";i:2208;s:57:\"body .booked-calendar-wrap.small table.booked-calendar td\";i:2209;s:74:\"body .booked-calendar-wrap.small table.booked-calendar thead th .page-left\";i:2210;s:75:\"body .booked-calendar-wrap.small table.booked-calendar thead th .page-right\";i:2211;s:80:\"body .booked-calendar-wrap.small table.booked-calendar thead th .page-left:hover\";i:2212;s:81:\"body .booked-calendar-wrap.small table.booked-calendar thead th .page-right:hover\";i:2213;s:68:\"body .booked-calendar-wrap.small table.booked-calendar th .monthName\";i:2214;s:70:\"body .booked-calendar-wrap.small table.booked-calendar th .monthName a\";i:2215;s:64:\"body .booked-calendar-wrap.small table.booked-calendar td .count\";i:2216;s:63:\"body .booked-calendar-wrap.small table.booked-calendar td .date\";i:2217;s:71:\"body .booked-calendar-wrap.small table.booked-calendar td .date .number\";i:2218;s:144:\"body .booked-calendar-wrap.small table.booked-calendar td.blur .date, body .booked-calendar-wrap.small table.booked-calendar td.blur:hover .date\";i:2219;s:148:\"body .booked-calendar-wrap.small table.booked-calendar td.booked .date, body .booked-calendar-wrap.small table.booked-calendar td.booked:hover .date\";i:2220;s:69:\"body .booked-calendar-wrap.small table.booked-calendar td.today .date\";i:2221;s:75:\"body .booked-calendar-wrap.small table.booked-calendar td.today:hover .date\";i:2222;s:69:\"body .booked-calendar-wrap.small table.booked-calendar td:hover .date\";i:2223;s:86:\"body .booked-calendar-wrap.small table.booked-calendar tr.week td.active .date .number\";i:2224;s:71:\"body .booked-calendar-wrap.small table.booked-calendar tr.entryBlock td\";i:2225;s:50:\"body .booked-calendar-wrap.small .booked-appt-list\";i:2226;s:53:\"body .booked-calendar-wrap.small .booked-appt-list h2\";i:2227;s:58:\"body .booked-calendar-wrap.small .booked-appt-list h2 span\";i:2228;s:60:\"body .booked-calendar-wrap.small .booked-appt-list .timeslot\";i:2229;s:153:\"body .booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-time, body .booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-count\";i:2230;s:77:\"body .booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people\";i:2231;s:84:\"body .booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button\";i:2232;s:101:\"body .booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button .button-timeslot\";i:2233;s:97:\"body .booked-calendar-wrap.small .booked-appt-list .timeslot .timeslot-people button .button-text\";i:2234;s:128:\"body .booked-calendar-wrap.small .booked-appt-list .timeslot.has-title.booked-hide-time .timeslot-people button .button-timeslot\";i:2235;s:154:\"body .booked-calendar-wrap.small table.booked-calendar td.prev-date .date, body .booked-calendar-wrap.small table.booked-calendar td.prev-date:hover .date\";i:2236;s:167:\"body .booked-calendar-wrap.small table.booked-calendar tr.week td.active .date, body .booked-calendar-wrap.small table.booked-calendar td.today.active:hover .date span\";i:2237;s:49:\"body .booked-list-view.small .booked-appt-list h2\";i:2238;s:46:\"body .booked-list-view.small .booked-appt-list\";i:2239;s:40:\"body .booked-list-view .booked-appt-list\";i:2240;s:55:\"body .booked-list-view.booked-loading .booked-appt-list\";i:2241;s:60:\"body .booked-list-view.booked-loading .booked-appt-list > h2\";i:2242;s:70:\"body .booked-list-view.booked-loading .booked_list_date_picker_trigger\";i:2243;s:72:\"body .booked-list-view .booked-list-view-nav .booked-list-view-date-prev\";i:2244;s:50:\"body .booked-list-view span.booked-datepicker-wrap\";i:2245;s:56:\"body .booked-list-view a.booked_list_date_picker_trigger\";i:2246;s:62:\"body .booked-list-view a.booked_list_date_picker_trigger:hover\";i:2247;s:154:\"body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active, body .booked-list-view a.booked_list_date_picker_trigger.booked-dp-active:hover\";i:2248;s:50:\".booked-appt-list .booked-public-appointment-title\";i:2249;s:107:\".booked-appt-list ul.booked-public-appointment-list, .booked-appt-list ul.booked-public-appointment-list li\";i:2250;s:54:\".booked-appt-list ul.booked-public-appointment-list li\";i:2251;s:40:\".booked-appt-list .booked-public-pending\";i:2252;s:41:\".timeslot-time.booked-public-appointments\";i:2253;s:17:\"body .booked-form\";i:2254;s:24:\"body .booked-form .field\";i:2255;s:44:\"body .booked-form .field.booked-text-content\";i:2256;s:57:\"body .booked-form .field.booked-text-content *:last-child\";i:2257;s:30:\"body .booked-form .field:after\";i:2258;s:75:\"body .booked-form input[type=radio], body .booked-form input[type=checkbox]\";i:2259;s:242:\"body .booked-form .field select, body .booked-form .field input[type=text], body .booked-form .field input[type=password], body .booked-form .field input[type=tel], body .booked-form .field input[type=email], body .booked-form .field textarea\";i:2260;s:41:\"body .booked-form .field input:last-child\";i:2261;s:209:\"body .booked-form .field input[type=text], body .booked-form .field input[type=password], body .booked-form .field input[type=tel], body .booked-form .field input[type=email], body .booked-form .field textarea\";i:2262;s:76:\"body .booked-form .field textarea, body .booked-form .field input.hasContent\";i:2263;s:75:\"body .booked-form .field input.large, body .booked-form .field select.large\";i:2264;s:25:\"body .booked-form .spacer\";i:2265;s:29:\"body .booked-form .spacer.big\";i:2266;s:20:\"body .booked-form hr\";i:2267;s:34:\"body .booked-form .condition-block\";i:2268;s:42:\"body .booked-form .condition-block.default\";i:2269;s:62:\"body .booked-form input[type=submit], body .booked-form button\";i:2270;s:30:\"body .booked-form .field label\";i:2271;s:42:\"body .booked-form .field label.field-label\";i:2272;s:33:\"body .booked-form .field textarea\";i:2273;s:46:\"body .booked-form .field .checkbox-radio-block\";i:2274;s:52:\"body .booked-form .field .checkbox-radio-block label\";i:2275;s:27:\"body .booked-form .cf-block\";i:2276;s:34:\"body .booked-form .cf-block select\";i:2277;s:62:\"body .booked-form .cf-block ul, body .booked-form .cf-block ol\";i:2278;s:36:\"body .booked-form .required-asterisk\";i:2279;s:28:\"body .booked-form #ajaxlogin\";i:2280;s:37:\"body .booked-form #ajaxlogin p.status\";i:2281;s:46:\"body .booked-form #newAppointmentForm p.status\";i:2282;s:22:\"body img.captcha-image\";i:2283;s:73:\"body #booked-page-form p.captcha, body .booked-modal .bm-window p.captcha\";i:2284;s:40:\"body .booked-form .field p.field-small-p\";i:2285;s:52:\"body .booked-form input[type=submit].button:disabled\";i:2286;s:38:\"body .booked-form .booked-appointments\";i:2287;s:45:\"body .booked-form .booked-appointment-details\";i:2288;s:56:\"body .booked-form .booked-appointment-details:last-child\";i:2289;s:55:\"body .booked-form .booked-appointment-details.has-error\";i:2290;s:16:\"#customerChoices\";i:2291;s:23:\"#customerChoices .field\";i:2292;s:45:\"#customerChoices .field .checkbox-radio-block\";i:2293;s:34:\"#customerChoices .field:last-child\";i:2294;s:51:\"#customerChoices .field .checkbox-radio-block label\";i:2295;s:11:\"#ajaxforgot\";i:2296;s:21:\"body .booked-modal hr\";i:2297;s:40:\"body .booked-modal.bm-loading .bm-window\";i:2298;s:41:\"body .booked-modal.bm-closing .bm-overlay\";i:2299;s:40:\"body .booked-modal.bm-closing .bm-window\";i:2300;s:31:\"body .booked-modal .bm-window p\";i:2301;s:37:\"body .booked-modal .bm-window p small\";i:2302;s:49:\"body .booked-modal .bm-window p.appointment-title\";i:2303;s:45:\"body .booked-modal .bm-window p.calendar-name\";i:2304;s:48:\"body .booked-modal .bm-window p.appointment-info\";i:2305;s:38:\"body .booked-modal .bm-window p strong\";i:2306;s:31:\"body .booked-modal .bm-window a\";i:2307;s:36:\"body .booked-modal .bm-window .close\";i:2308;s:42:\"body .booked-modal .bm-window .close:hover\";i:2309;s:47:\"body .booked-modal .bm-window p i.fa.fa-clock-o\";i:2310;s:52:\"body .booked-modal .bm-window p.booked-calendar-name\";i:2311;s:48:\"body .booked-modal .bm-window p.booked-title-bar\";i:2312;s:54:\"body .booked-modal .bm-window p.booked-title-bar small\";i:2313;s:52:\"body .booked-modal .bm-window .booked-scrollable > *\";i:2314;s:25:\"body #booked-profile-page\";i:2315;s:48:\"body #booked-profile-page .booked-profile-header\";i:2316;s:70:\"body #booked-profile-page .booked-profile-header .booked-logout-button\";i:2317;s:45:\"body #booked-profile-page .booked-user-avatar\";i:2318;s:49:\"body #booked-profile-page .booked-user-avatar img\";i:2319;s:38:\"body #booked-profile-page .booked-info\";i:2320;s:40:\"body #booked-profile-page .booked-user *\";i:2321;s:41:\"body #booked-profile-page .booked-user h3\";i:2322;s:43:\"body #booked-profile-page .booked-user h3 a\";i:2323;s:49:\"body #booked-profile-page .booked-user h3 a:hover\";i:2324;s:40:\"body #booked-profile-page .booked-counts\";i:2325;s:45:\"body #booked-profile-page .booked-counts span\";i:2326;s:45:\"body #booked-profile-page .booked-counts i.fa\";i:2327;s:38:\"body #booked-profile-page .booked-tabs\";i:2328;s:41:\"body #booked-profile-page .booked-tabs li\";i:2329;s:43:\"body #booked-profile-page .booked-tabs li a\";i:2330;s:48:\"body #booked-profile-page .booked-tabs li a i.fa\";i:2331;s:45:\"body #booked-profile-page .booked-tab-content\";i:2332;s:44:\"body #booked-profile-page .booked-tabs.login\";i:2333;s:49:\"body #booked-profile-page .booked-tabs li a:hover\";i:2334;s:150:\"body #booked-profile-page .booked-counts, body #booked-profile-page .booked-tabs li.active a, body #booked-profile-page .booked-tabs li.active a:hover\";i:2335;s:44:\"body #booked-profile-page p.booked-no-margin\";i:2336;s:41:\"body #booked-profile-page .booked-show-cf\";i:2337;s:58:\"body #booked-profile-page .booked-show-cf.booked-cf-active\";i:2338;s:48:\"body #booked-profile-page .cf-meta-values-hidden\";i:2339;s:50:\"body #booked-profile-page .cf-meta-values-hidden p\";i:2340;s:61:\"body #booked-profile-page .cf-meta-values-hidden p:last-child\";i:2341;s:57:\"body #booked-profile-page .cf-meta-values-hidden p strong\";i:2342;s:65:\"body #booked-profile-page .result-section.table-layout .table-box\";i:2343;s:88:\"body #booked-profile-page .result-section.table-layout .table-box .table-body .table-row\";i:2344;s:89:\"body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title\";i:2345;s:91:\"body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title p\";i:2346;s:95:\"body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title small\";i:2347;s:91:\"body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title a\";i:2348;s:81:\"body #booked-profile-page .result-section.table-layout .table-box .table-head-row\";i:2349;s:77:\"body #booked-profile-page .result-section.table-layout .table-box .table-cell\";i:2350;s:77:\"body #booked-profile-page .result-section.table-layout .table-box .cell-title\";i:2351;s:94:\"body #booked-profile-page .result-section.table-layout .table-box .cell-title .cell-title-wrap\";i:2352;s:78:\"body #booked-profile-page .result-section.table-layout .table-box .cell-rating\";i:2353;s:76:\"body #booked-profile-page .result-section.table-layout .table-box .cell-time\";i:2354;s:85:\"body #booked-profile-page .result-section.table-layout .table-box .cell-title.reviews\";i:2355;s:93:\"body #booked-profile-page .result-section.table-layout .table-box .cell-title.reviews .rating\";i:2356;s:106:\"body #booked-profile-page .result-section.table-layout .table-box .table-body .cell-title .booked-review p\";i:2357;s:40:\"body #booked-page-form .booked-form-wrap\";i:2358;s:41:\"body #booked-page-form input[type=submit]\";i:2359;s:159:\"body #booked-page-form input[type=text], body #booked-page-form input[type=password], body #booked-page-form input[type=email], body #booked-page-form textarea\";i:2360;s:79:\"body #booked-page-form input:disabled, body #booked-page-form textarea:disabled\";i:2361;s:48:\"body #booked-page-form input[type=file]:disabled\";i:2362;s:38:\"body #booked-page-form label .not-bold\";i:2363;s:24:\"body #booked-page-form p\";i:2364;s:38:\"body #booked-page-form .login-remember\";i:2365;s:44:\"body #booked-page-form .login-remember input\";i:2366;s:36:\"body #booked-page-form .login-submit\";i:2367;s:42:\"body #booked-page-form .login-submit input\";i:2368;s:36:\"body #profile-edit #booked-page-form\";i:2369;s:53:\"body #profile-edit #booked-page-form input[type=file]\";i:2370;s:42:\"body #profile-edit #booked-page-form label\";i:2371;s:152:\"body #profile-edit #booked-page-form p.form-nickname, body #profile-edit #booked-page-form p.form-email, body #profile-edit #booked-page-form p.form-url\";i:2372;s:52:\"body #profile-edit #booked-page-form p.form-password\";i:2373;s:57:\"body #profile-edit #booked-page-form p.form-password.last\";i:2374;s:156:\"body #profile-edit #booked-page-form p.form-textarea, body #profile-edit #booked-page-form p.form-avatar, body #profile-edit #booked-page-form p.form-submit\";i:2375;s:50:\"body #profile-edit #booked-page-form p.form-submit\";i:2376;s:44:\"body #profile-edit #booked-page-form .hint-p\";i:2377;s:73:\"body #profile-login label, #profile-register label, #profile-forgot label\";i:2378;s:56:\"body .booked-upload-wrap, body .booked-upload-wrap input\";i:2379;s:24:\"body .booked-upload-wrap\";i:2380;s:51:\"body #booked-submit-recipe-form .booked-upload-wrap\";i:2381;s:30:\"body .booked-upload-wrap:hover\";i:2382;s:29:\"body .booked-upload-wrap span\";i:2383;s:30:\"body .booked-upload-wrap input\";i:2384;s:32:\"body .booked-upload-wrap.hasFile\";i:2385;s:59:\"body #booked-submit-recipe-form .booked-upload-wrap.hasFile\";i:2386;s:37:\"body .booked-upload-wrap.hasFile span\";i:2387;s:25:\"body .booked-custom-error\";i:2388;s:36:\"body .booked-custom-error.not-hidden\";i:2389;s:93:\"body #booked-plugin-page p.booked-form-notice, body #booked-profile-page p.booked-form-notice\";i:2390;s:92:\"body #booked-profile-page .booked-profile-appt-list, body #booked-profile-page #profile-edit\";i:2391;s:28:\"body #booked-profile-page h4\";i:2392;s:53:\"body #booked-profile-page .booked-tabs li.edit-button\";i:2393;s:63:\"body #booked-profile-page .booked-profile-appt-list .appt-block\";i:2394;s:70:\"body #booked-profile-page .booked-profile-appt-list .appt-block > i.fa\";i:2395;s:74:\"body #booked-profile-page .booked-profile-appt-list .appt-block:last-child\";i:2396;s:72:\"body #booked-profile-page .booked-profile-appt-list .appt-block.approved\";i:2397;s:70:\"body #booked-profile-page .booked-profile-appt-list .appt-block button\";i:2398;s:71:\"body #booked-profile-page .booked-profile-appt-list .appt-block .cancel\";i:2399;s:83:\"body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons\";i:2400;s:85:\"body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons a\";i:2401;s:91:\"body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons a:hover\";i:2402;s:106:\"body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons .google-cal-button > a\";i:2403;s:175:\"body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons a, body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons span\";i:2404;s:44:\"body #booked-profile-page .addtocalendar var\";i:2405;s:40:\"body #booked-profile-page .addtocalendar\";i:2406;s:36:\"body #booked-profile-page .atcb-link\";i:2407;s:141:\"body #booked-profile-page .atcb-link:focus ~ ul, body #booked-profile-page .atcb-link:active ~ ul, body #booked-profile-page .atcb-list:hover\";i:2408;s:36:\"body #booked-profile-page .atcb-list\";i:2409;s:74:\"body #booked-profile-page .atcb-list, body #booked-profile-page .atcb-item\";i:2410;s:36:\"body #booked-profile-page .atcb-item\";i:2411;s:100:\"body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons a.atcb-item-link\";i:2412;s:106:\"body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons a.atcb-item-link:hover\";i:2413;s:126:\"body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons .atcb-list li:first-child a.atcb-item-link\";i:2414;s:125:\"body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons .atcb-list li:last-child a.atcb-item-link\";i:2415;s:86:\"body #booked-profile-page .atcb-item.hover, body #booked-profile-page .atcb-item:hover\";i:2416;s:77:\"body #booked-profile-page .booked-profile-appt-list .appt-block .cancel:hover\";i:2417;s:66:\"body #booked-profile-page .booked-profile-appt-list .calendar-name\";i:2418;s:29:\".booked-list-date-picker-wrap\";i:2419;s:44:\"#ui-datepicker-div.booked_custom_date_picker\";i:2420;s:66:\"#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header\";i:2421;s:174:\"#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev, #ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next\";i:2422;s:192:\"#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev .ui-icon, #ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next .ui-icon\";i:2423;s:86:\"#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev\";i:2424;s:86:\"#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next\";i:2425;s:87:\"#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-title\";i:2426;s:186:\"#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev:hover, #ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next:hover\";i:2427;s:93:\"#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-prev:before\";i:2428;s:93:\"#ui-datepicker-div.booked_custom_date_picker .ui-datepicker-header .ui-datepicker-next:before\";i:2429;s:73:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar\";i:2430;s:163:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar thead, #ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar thead th\";i:2431;s:82:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar thead th\";i:2432;s:79:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody\";i:2433;s:163:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody, #ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td\";i:2434;s:82:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td\";i:2435;s:84:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a\";i:2436;s:90:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a:hover\";i:2437;s:87:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td span\";i:2438;s:114:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-unselectable span\";i:2439;s:107:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-week-end a\";i:2440;s:104:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a\";i:2441;s:110:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td.ui-datepicker-today a:hover\";i:2442;s:208:\"#ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a.ui-state-active, #ui-datepicker-div.booked_custom_date_picker table.ui-datepicker-calendar tbody td a.ui-state-active:hover\";i:2443;s:183:\"body #booked-page-form input[type=email], body #booked-page-form input[type=text], body #booked-page-form input[type=password], body #booked-page-form textarea, body #booked-page-form\";i:2444;s:397:\"body table.booked-calendar td .count, body table.booked-calendar thead th a, body .booked-appt-list .timeslot .timeslot-time, body .booked-appt-list .timeslot .timeslot-people, body .booked-appt-list .timeslot, body #booked-profile-page .booked-profile-appt-list .appt-block .booked-cal-buttons a, body #booked-profile-page .booked-show-cf, body .booked-list-view a.booked_list_date_picker_trigger\";i:2445;s:77:\"body table.booked-calendar td .date, body table.booked-calendar td .date span\";i:2446;s:22:\"body .booked-appt-list\";i:2447;s:12:\".booked-tabs\";i:2448;s:29:\".booked-tabs .booked-tabs-nav\";i:2449;s:34:\".booked-tabs .booked-tabs-nav span\";i:2450;s:83:\".booked-tabs .booked-tabs-nav span:hover, .booked-tabs .booked-tabs-nav span.active\";i:2451;s:35:\".booked-tabs .booked-tabs-cnt > div\";i:2452;s:42:\".booked-tabs .booked-tabs-cnt > div.active\";i:2453;s:18:\".apsc-each-profile\";i:2454;s:19:\".apsc-facebook-icon\";i:2455;s:18:\".apsc-twitter-icon\";i:2456;s:18:\".apsc-youtube-icon\";i:2457;s:21:\".apsc-soundcloud-icon\";i:2458;s:18:\".apsc-dribble-icon\";i:2459;s:18:\".apsc-comment-icon\";i:2460;s:15:\".apsc-edit-icon\";i:2461;s:22:\".apsc-google-plus-icon\";i:2462;s:20:\".apsc-instagram-icon\";i:2463;s:20:\".apsc-each-profile a\";i:2464;s:26:\".apsc-each-profile a:hover\";i:2465;s:19:\".apsc-icons-wrapper\";i:2466;s:32:\".apsc-icons-wrapper .social-icon\";i:2467;s:44:\".apsc-icons-wrapper .social-icon .media-name\";i:2468;s:40:\".apsc-icons-wrapper .apsc-each-profile a\";i:2469;s:46:\".apsc-icons-wrapper .apsc-each-profile a:hover\";i:2470;s:44:\".apsc-icons-wrapper .apsc-each-profile a .fa\";i:2471;s:50:\".apsc-icons-wrapper .apsc-each-profile a:hover .fa\";i:2472;s:31:\".apsc-icons-wrapper .media-name\";i:2473;s:31:\".apsc-icons-wrapper .apsc-count\";i:2474;s:36:\".apsc-icons-wrapper .apsc-media-type\";}","no");
INSERT INTO `wp_options` VALUES("2184","chld_thm_cfg_options_dict_query","a:18:{i:1;s:4:\"base\";i:2;s:25:\"@media (max-width: 768px)\";i:3;s:25:\"@media (max-width: 767px)\";i:4;s:25:\"@media (min-width: 768px)\";i:5;s:25:\"@media (min-width: 992px)\";i:6;s:26:\"@media (min-width: 1200px)\";i:7;s:48:\"@media (min-width: 768px) and (max-width: 992px)\";i:8;s:25:\"@media (max-width: 992px)\";i:9;s:25:\"@media (min-width: 767px)\";i:10;s:26:\"@media (min-width: 1400px)\";i:11;s:37:\"@media screen and (max-width: 1200px)\";i:12;s:37:\"@media screen and (max-width: 1100px)\";i:13;s:36:\"@media screen and (max-width: 860px)\";i:14;s:36:\"@media screen and (max-width: 720px)\";i:15;s:36:\"@media screen and (max-width: 600px)\";i:16;s:36:\"@media screen and (max-width: 450px)\";i:17;s:26:\"@media (max-width: 1199px)\";i:18;s:25:\"@media (max-width: 479px)\";}","no");
INSERT INTO `wp_options` VALUES("2185","chld_thm_cfg_options_dict_rule","a:102:{i:1;s:10:\"margin-top\";i:2;s:12:\"margin-right\";i:3;s:13:\"margin-bottom\";i:4;s:11:\"margin-left\";i:5;s:7:\"display\";i:6;s:5:\"float\";i:7;s:16:\"background-color\";i:8;s:6:\"border\";i:9;s:9:\"max-width\";i:10;s:11:\"padding-top\";i:11;s:13:\"padding-right\";i:12;s:14:\"padding-bottom\";i:13;s:12:\"padding-left\";i:14;s:10:\"text-align\";i:15;s:6:\"height\";i:16;s:5:\"width\";i:17;s:9:\"font-size\";i:18;s:11:\"line-height\";i:19;s:4:\"clip\";i:20;s:8:\"position\";i:21;s:11:\"white-space\";i:22;s:8:\"overflow\";i:23;s:11:\"font-weight\";i:24;s:4:\"left\";i:25;s:15:\"text-decoration\";i:26;s:3:\"top\";i:27;s:7:\"z-index\";i:28;s:11:\"font-family\";i:29;s:5:\"speak\";i:30;s:10:\"font-style\";i:31;s:12:\"font-variant\";i:32;s:14:\"text-transform\";i:33;s:14:\"font-smoothing\";i:34;s:23:\"-moz-osx-font-smoothing\";i:35;s:7:\"content\";i:36;s:14:\"text-rendering\";i:37;s:14:\"vertical-align\";i:38;s:15:\"list-style-type\";i:39;s:13:\"border-radius\";i:40;s:17:\"-webkit-animation\";i:41;s:9:\"animation\";i:42;s:10:\"-ms-filter\";i:43;s:9:\"transform\";i:44;s:6:\"filter\";i:45;s:5:\"color\";i:46;s:9:\"min-width\";i:47;s:5:\"clear\";i:48;s:10:\"overflow-x\";i:49;s:7:\"opacity\";i:50;s:6:\"cursor\";i:51;s:10:\"transition\";i:52;s:5:\"right\";i:53;s:6:\"bottom\";i:54;s:13:\"-ms-flex-wrap\";i:55;s:9:\"flex-wrap\";i:56;s:14:\"letter-spacing\";i:57;s:9:\"word-wrap\";i:58;s:13:\"border-bottom\";i:59;s:10:\"border-top\";i:60;s:12:\"border-width\";i:61;s:11:\"text-indent\";i:62;s:10:\"list-style\";i:63;s:12:\"border-color\";i:64;s:11:\"border-left\";i:65;s:16:\"-webkit-box-pack\";i:66;s:13:\"-ms-flex-pack\";i:67;s:15:\"justify-content\";i:68;s:18:\"-webkit-box-orient\";i:69;s:21:\"-webkit-box-direction\";i:70;s:18:\"-ms-flex-direction\";i:71;s:14:\"flex-direction\";i:72;s:7:\"outline\";i:73;s:7:\"Display\";i:74;s:13:\"text-overflow\";i:75;s:16:\"-ms-touch-action\";i:76;s:12:\"touch-action\";i:77;s:19:\"background-position\";i:78;s:14:\"-webkit-filter\";i:79;s:16:\"background-image\";i:80;s:10:\"max-height\";i:81;s:10:\"overflow-y\";i:82;s:12:\"border-right\";i:83;s:10:\"box-sizing\";i:84;s:18:\"-webkit-appearance\";i:85;s:11:\"text-shadow\";i:86;s:10:\"box-shadow\";i:87;s:12:\"border-style\";i:88;s:14:\"border-spacing\";i:89;s:19:\"border-bottom-color\";i:90;s:10:\"min-height\";i:91;s:14:\"-moz-animation\";i:92;s:13:\"-ms-animation\";i:93;s:12:\"-o-animation\";i:94;s:27:\"-webkit-backface-visibility\";i:95;s:26:\"-webkit-overflow-scrolling\";i:96;s:18:\"border-right-width\";i:97;s:18:\"border-right-style\";i:98;s:16:\"border-top-width\";i:99;s:16:\"border-top-style\";i:100;s:10:\"visibility\";i:101;s:15:\"border-collapse\";i:102;s:11:\"align-items\";}","no");
INSERT INTO `wp_options` VALUES("2186","chld_thm_cfg_options_dict_val","a:1735:{i:1;s:3:\"5px\";i:2;s:4:\"20px\";i:3;s:1:\"0\";i:4;s:5:\"block\";i:5;s:4:\"auto\";i:6;s:5:\"right\";i:7;s:4:\"left\";i:8;s:11:\"transparent\";i:9;s:3:\"96%\";i:10;s:3:\"3px\";i:11;s:4:\"10px\";i:12;s:6:\"center\";i:13;s:4:\"none\";i:14;s:6:\"0 none\";i:15;s:5:\"98.5%\";i:16;s:4:\"11px\";i:17;s:4:\"17px\";i:18;s:3:\"4px\";i:19;s:24:\"rect(1px, 1px, 1px, 1px)\";i:20;s:8:\"absolute\";i:21;s:6:\"nowrap\";i:22;s:3:\"1px\";i:23;s:6:\"hidden\";i:24;s:4:\"bold\";i:25;s:6:\"normal\";i:26;s:4:\"15px\";i:27;s:4:\"23px\";i:28;s:4:\"14px\";i:29;s:6:\"100000\";i:30;s:8:\"relative\";i:31;s:12:\"\'rt-icons-2\'\";i:32;s:1:\"1\";i:33;s:11:\"antialiased\";i:34;s:9:\"grayscale\";i:35;s:7:\"\"\\e000\"\";i:36;s:7:\"\"\\e001\"\";i:37;s:7:\"\"\\e002\"\";i:38;s:7:\"\"\\e003\"\";i:39;s:7:\"\"\\e004\"\";i:40;s:7:\"\"\\e005\"\";i:41;s:7:\"\"\\e00d\"\";i:42;s:7:\"\"\\e00f\"\";i:43;s:7:\"\"\\e010\"\";i:44;s:7:\"\"\\e011\"\";i:45;s:7:\"\"\\e012\"\";i:46;s:7:\"\"\\e013\"\";i:47;s:7:\"\"\\e014\"\";i:48;s:7:\"\"\\e016\"\";i:49;s:7:\"\"\\e017\"\";i:50;s:7:\"\"\\e01f\"\";i:51;s:7:\"\"\\e020\"\";i:52;s:7:\"\"\\e021\"\";i:53;s:7:\"\"\\e02a\"\";i:54;s:7:\"\"\\e02b\"\";i:55;s:7:\"\"\\e02c\"\";i:56;s:7:\"\"\\e02e\"\";i:57;s:7:\"\"\\e02f\"\";i:58;s:7:\"\"\\e030\"\";i:59;s:7:\"\"\\e031\"\";i:60;s:7:\"\"\\e032\"\";i:61;s:7:\"\"\\e033\"\";i:62;s:7:\"\"\\e034\"\";i:63;s:7:\"\"\\e036\"\";i:64;s:7:\"\"\\e037\"\";i:65;s:7:\"\"\\e03c\"\";i:66;s:7:\"\"\\e043\"\";i:67;s:7:\"\"\\e045\"\";i:68;s:7:\"\"\\e047\"\";i:69;s:7:\"\"\\e04c\"\";i:70;s:7:\"\"\\e04d\"\";i:71;s:7:\"\"\\e052\"\";i:72;s:7:\"\"\\e053\"\";i:73;s:7:\"\"\\e600\"\";i:74;s:7:\"\"\\e601\"\";i:75;s:7:\"\"\\e602\"\";i:76;s:7:\"\"\\e603\"\";i:77;s:7:\"\"\\e604\"\";i:78;s:7:\"\"\\e605\"\";i:79;s:7:\"\"\\e606\"\";i:80;s:7:\"\"\\e607\"\";i:81;s:7:\"\"\\e608\"\";i:82;s:7:\"\"\\e609\"\";i:83;s:7:\"\"\\e60a\"\";i:84;s:7:\"\"\\e60b\"\";i:85;s:7:\"\"\\e60c\"\";i:86;s:7:\"\"\\e60d\"\";i:87;s:7:\"\"\\e60e\"\";i:88;s:7:\"\"\\e60f\"\";i:89;s:7:\"\"\\e610\"\";i:90;s:7:\"\"\\e611\"\";i:91;s:7:\"\"\\e612\"\";i:92;s:7:\"\"\\e613\"\";i:93;s:7:\"\"\\e614\"\";i:94;s:7:\"\"\\e615\"\";i:95;s:7:\"\"\\e616\"\";i:96;s:7:\"\"\\e617\"\";i:97;s:7:\"\"\\e618\"\";i:98;s:7:\"\"\\e619\"\";i:99;s:7:\"\"\\e61a\"\";i:100;s:7:\"\"\\e61b\"\";i:101;s:7:\"\"\\e61c\"\";i:102;s:7:\"\"\\e61d\"\";i:103;s:7:\"\"\\e61e\"\";i:104;s:7:\"\"\\e61f\"\";i:105;s:7:\"\"\\e620\"\";i:106;s:7:\"\"\\e621\"\";i:107;s:7:\"\"\\e622\"\";i:108;s:7:\"\"\\e623\"\";i:109;s:7:\"\"\\e624\"\";i:110;s:7:\"\"\\e625\"\";i:111;s:7:\"\"\\e626\"\";i:112;s:7:\"\"\\e627\"\";i:113;s:7:\"\"\\e628\"\";i:114;s:7:\"\"\\e629\"\";i:115;s:7:\"\"\\e62a\"\";i:116;s:7:\"\"\\e62b\"\";i:117;s:7:\"\"\\e62c\"\";i:118;s:7:\"\"\\e62d\"\";i:119;s:7:\"\"\\e62e\"\";i:120;s:7:\"\"\\e62f\"\";i:121;s:7:\"\"\\e630\"\";i:122;s:7:\"\"\\e631\"\";i:123;s:7:\"\"\\e632\"\";i:124;s:7:\"\"\\e633\"\";i:125;s:7:\"\"\\e634\"\";i:126;s:7:\"\"\\e635\"\";i:127;s:7:\"\"\\e636\"\";i:128;s:7:\"\"\\e637\"\";i:129;s:7:\"\"\\e638\"\";i:130;s:7:\"\"\\e639\"\";i:131;s:7:\"\"\\e63a\"\";i:132;s:7:\"\"\\e63b\"\";i:133;s:7:\"\"\\e63c\"\";i:134;s:7:\"\"\\e63d\"\";i:135;s:7:\"\"\\e63e\"\";i:136;s:7:\"\"\\e63f\"\";i:137;s:7:\"\"\\e640\"\";i:138;s:7:\"\"\\e641\"\";i:139;s:7:\"\"\\e642\"\";i:140;s:7:\"\"\\e643\"\";i:141;s:7:\"\"\\e644\"\";i:142;s:7:\"\"\\e645\"\";i:143;s:7:\"\"\\e646\"\";i:144;s:7:\"\"\\e647\"\";i:145;s:7:\"\"\\e648\"\";i:146;s:7:\"\"\\e649\"\";i:147;s:7:\"\"\\e64a\"\";i:148;s:7:\"\"\\e64b\"\";i:149;s:7:\"\"\\e64c\"\";i:150;s:7:\"\"\\e64d\"\";i:151;s:7:\"\"\\e64e\"\";i:152;s:7:\"\"\\e64f\"\";i:153;s:7:\"\"\\e650\"\";i:154;s:7:\"\"\\e651\"\";i:155;s:7:\"\"\\e652\"\";i:156;s:7:\"\"\\e653\"\";i:157;s:7:\"\"\\e654\"\";i:158;s:7:\"\"\\e655\"\";i:159;s:7:\"\"\\e656\"\";i:160;s:7:\"\"\\e657\"\";i:161;s:7:\"\"\\e658\"\";i:162;s:7:\"\"\\e659\"\";i:163;s:7:\"\"\\e65a\"\";i:164;s:7:\"\"\\e65b\"\";i:165;s:7:\"\"\\e65c\"\";i:166;s:7:\"\"\\e65d\"\";i:167;s:7:\"\"\\e65e\"\";i:168;s:7:\"\"\\e65f\"\";i:169;s:7:\"\"\\e660\"\";i:170;s:7:\"\"\\e661\"\";i:171;s:7:\"\"\\e662\"\";i:172;s:7:\"\"\\e663\"\";i:173;s:7:\"\"\\e664\"\";i:174;s:7:\"\"\\e665\"\";i:175;s:7:\"\"\\e666\"\";i:176;s:7:\"\"\\e667\"\";i:177;s:7:\"\"\\e668\"\";i:178;s:7:\"\"\\e669\"\";i:179;s:7:\"\"\\e66a\"\";i:180;s:7:\"\"\\e66b\"\";i:181;s:7:\"\"\\e66c\"\";i:182;s:7:\"\"\\e66d\"\";i:183;s:7:\"\"\\e66e\"\";i:184;s:7:\"\"\\e66f\"\";i:185;s:7:\"\"\\e670\"\";i:186;s:7:\"\"\\e671\"\";i:187;s:7:\"\"\\e672\"\";i:188;s:7:\"\"\\e673\"\";i:189;s:7:\"\"\\e674\"\";i:190;s:7:\"\"\\e675\"\";i:191;s:7:\"\"\\e676\"\";i:192;s:7:\"\"\\e677\"\";i:193;s:7:\"\"\\e678\"\";i:194;s:7:\"\"\\e679\"\";i:195;s:7:\"\"\\e67a\"\";i:196;s:7:\"\"\\e67b\"\";i:197;s:7:\"\"\\e67c\"\";i:198;s:7:\"\"\\e67d\"\";i:199;s:7:\"\"\\e67e\"\";i:200;s:7:\"\"\\e67f\"\";i:201;s:7:\"\"\\e680\"\";i:202;s:7:\"\"\\e681\"\";i:203;s:7:\"\"\\e682\"\";i:204;s:7:\"\"\\e683\"\";i:205;s:7:\"\"\\e684\"\";i:206;s:7:\"\"\\e685\"\";i:207;s:7:\"\"\\e686\"\";i:208;s:7:\"\"\\e687\"\";i:209;s:7:\"\"\\e688\"\";i:210;s:7:\"\"\\e689\"\";i:211;s:7:\"\"\\e68a\"\";i:212;s:7:\"\"\\e68b\"\";i:213;s:7:\"\"\\e68c\"\";i:214;s:7:\"\"\\e68d\"\";i:215;s:7:\"\"\\e68e\"\";i:216;s:7:\"\"\\e68f\"\";i:217;s:7:\"\"\\e690\"\";i:218;s:7:\"\"\\e691\"\";i:219;s:7:\"\"\\e692\"\";i:220;s:7:\"\"\\e693\"\";i:221;s:7:\"\"\\e694\"\";i:222;s:7:\"\"\\e695\"\";i:223;s:7:\"\"\\e696\"\";i:224;s:7:\"\"\\e697\"\";i:225;s:7:\"\"\\e698\"\";i:226;s:7:\"\"\\e699\"\";i:227;s:7:\"\"\\e69a\"\";i:228;s:7:\"\"\\e69b\"\";i:229;s:7:\"\"\\e69c\"\";i:230;s:7:\"\"\\e69d\"\";i:231;s:7:\"\"\\e69e\"\";i:232;s:7:\"\"\\e69f\"\";i:233;s:7:\"\"\\e6a0\"\";i:234;s:7:\"\"\\e6a1\"\";i:235;s:7:\"\"\\e6a2\"\";i:236;s:7:\"\"\\e6a3\"\";i:237;s:7:\"\"\\e6a4\"\";i:238;s:7:\"\"\\e6a5\"\";i:239;s:7:\"\"\\e6a6\"\";i:240;s:7:\"\"\\e6a7\"\";i:241;s:7:\"\"\\e6a8\"\";i:242;s:7:\"\"\\e6a9\"\";i:243;s:7:\"\"\\e6aa\"\";i:244;s:7:\"\"\\e6ab\"\";i:245;s:7:\"\"\\e6ac\"\";i:246;s:7:\"\"\\e6ad\"\";i:247;s:7:\"\"\\e6ae\"\";i:248;s:7:\"\"\\e6af\"\";i:249;s:7:\"\"\\e6b0\"\";i:250;s:7:\"\"\\e6b1\"\";i:251;s:7:\"\"\\e6b2\"\";i:252;s:7:\"\"\\e6b3\"\";i:253;s:7:\"\"\\e6b4\"\";i:254;s:7:\"\"\\f0a3\"\";i:255;s:7:\"\"\\f0a4\"\";i:256;s:7:\"\"\\f078\"\";i:257;s:7:\"\"\\f0a2\"\";i:258;s:7:\"\"\\f063\"\";i:259;s:7:\"\"\\f02e\"\";i:260;s:7:\"\"\\f05b\"\";i:261;s:7:\"\"\\f044\"\";i:262;s:7:\"\"\\f05a\"\";i:263;s:7:\"\"\\f0aa\"\";i:264;s:7:\"\"\\e924\"\";i:265;s:7:\"\"\\e925\"\";i:266;s:7:\"\"\\e926\"\";i:267;s:7:\"\"\\e927\"\";i:268;s:7:\"\"\\e928\"\";i:269;s:7:\"\"\\e929\"\";i:270;s:7:\"\"\\e92a\"\";i:271;s:7:\"\"\\e92b\"\";i:272;s:7:\"\"\\e942\"\";i:273;s:7:\"\"\\e977\"\";i:274;s:7:\"\"\\e978\"\";i:275;s:7:\"\"\\e97f\"\";i:276;s:7:\"\"\\e9ab\"\";i:277;s:7:\"\"\\ea87\"\";i:278;s:7:\"\"\\ea88\"\";i:279;s:7:\"\"\\ea89\"\";i:280;s:7:\"\"\\ea8a\"\";i:281;s:7:\"\"\\ea8b\"\";i:282;s:7:\"\"\\ea8c\"\";i:283;s:7:\"\"\\ea8d\"\";i:284;s:7:\"\"\\ea8e\"\";i:285;s:7:\"\"\\ea90\"\";i:286;s:7:\"\"\\ea91\"\";i:287;s:7:\"\"\\ea92\"\";i:288;s:7:\"\"\\ea93\"\";i:289;s:7:\"\"\\ea94\"\";i:290;s:7:\"\"\\ea95\"\";i:291;s:7:\"\"\\ea96\"\";i:292;s:7:\"\"\\ea97\"\";i:293;s:7:\"\"\\ea98\"\";i:294;s:7:\"\"\\ea99\"\";i:295;s:7:\"\"\\ea9a\"\";i:296;s:7:\"\"\\ea9c\"\";i:297;s:7:\"\"\\ea9d\"\";i:298;s:7:\"\"\\ea9e\"\";i:299;s:7:\"\"\\ea9f\"\";i:300;s:7:\"\"\\eaa0\"\";i:301;s:7:\"\"\\eaa1\"\";i:302;s:7:\"\"\\eaa2\"\";i:303;s:7:\"\"\\eaa3\"\";i:304;s:7:\"\"\\eaa4\"\";i:305;s:7:\"\"\\eaa5\"\";i:306;s:7:\"\"\\eaa6\"\";i:307;s:7:\"\"\\eaa7\"\";i:308;s:7:\"\"\\eaa8\"\";i:309;s:7:\"\"\\eaaf\"\";i:310;s:7:\"\"\\eab3\"\";i:311;s:7:\"\"\\eab6\"\";i:312;s:7:\"\"\\eab7\"\";i:313;s:7:\"\"\\eab8\"\";i:314;s:7:\"\"\\eab9\"\";i:315;s:7:\"\"\\eaba\"\";i:316;s:7:\"\"\\eabb\"\";i:317;s:7:\"\"\\eabc\"\";i:318;s:7:\"\"\\eabf\"\";i:319;s:7:\"\"\\eac1\"\";i:320;s:7:\"\"\\eac2\"\";i:321;s:7:\"\"\\eac3\"\";i:322;s:7:\"\"\\eac6\"\";i:323;s:7:\"\"\\eac7\"\";i:324;s:7:\"\"\\eac8\"\";i:325;s:7:\"\"\\eac9\"\";i:326;s:7:\"\"\\eaca\"\";i:327;s:7:\"\"\\eacb\"\";i:328;s:7:\"\"\\eacc\"\";i:329;s:7:\"\"\\eacd\"\";i:330;s:7:\"\"\\eace\"\";i:331;s:7:\"\"\\ead0\"\";i:332;s:7:\"\"\\ead1\"\";i:333;s:7:\"\"\\eadf\"\";i:334;s:7:\"\"\\eae0\"\";i:335;s:7:\"\"\\eae1\"\";i:336;s:7:\"\"\\eae5\"\";i:337;s:7:\"\"\\eae6\"\";i:338;s:7:\"\"\\eae7\"\";i:339;s:7:\"\"\\eae8\"\";i:340;s:7:\"\"\\eae9\"\";i:341;s:7:\"\"\\e6b5\"\";i:342;s:7:\"\"\\e6b6\"\";i:343;s:7:\"\"\\e6b7\"\";i:344;s:7:\"\"\\e6b8\"\";i:345;s:7:\"\"\\e6b9\"\";i:346;s:7:\"\"\\e6ba\"\";i:347;s:7:\"\"\\e6bb\"\";i:348;s:7:\"\"\\e6bc\"\";i:349;s:7:\"\"\\e6bd\"\";i:350;s:7:\"\"\\e6be\"\";i:351;s:7:\"\"\\e6bf\"\";i:352;s:7:\"\"\\e6c0\"\";i:353;s:7:\"\"\\e6c1\"\";i:354;s:7:\"\"\\e6c2\"\";i:355;s:7:\"\"\\e6c3\"\";i:356;s:7:\"\"\\e6c4\"\";i:357;s:7:\"\"\\e6c5\"\";i:358;s:7:\"\"\\e6c6\"\";i:359;s:7:\"\"\\e6c7\"\";i:360;s:7:\"\"\\e6c8\"\";i:361;s:7:\"\"\\e6c9\"\";i:362;s:7:\"\"\\e6ca\"\";i:363;s:7:\"\"\\e6cb\"\";i:364;s:7:\"\"\\e6cc\"\";i:365;s:7:\"\"\\e6cd\"\";i:366;s:7:\"\"\\e6ce\"\";i:367;s:7:\"\"\\e6cf\"\";i:368;s:7:\"\"\\e6d0\"\";i:369;s:7:\"\"\\e6d1\"\";i:370;s:7:\"\"\\e6d2\"\";i:371;s:7:\"\"\\e6d3\"\";i:372;s:7:\"\"\\e6d4\"\";i:373;s:7:\"\"\\e6d5\"\";i:374;s:7:\"\"\\e6d6\"\";i:375;s:7:\"\"\\e6d7\"\";i:376;s:7:\"\"\\e6d8\"\";i:377;s:7:\"\"\\e6d9\"\";i:378;s:7:\"\"\\e6da\"\";i:379;s:7:\"\"\\e6db\"\";i:380;s:7:\"\"\\e6dc\"\";i:381;s:7:\"\"\\e6dd\"\";i:382;s:7:\"\"\\e6de\"\";i:383;s:7:\"\"\\e6df\"\";i:384;s:7:\"\"\\e6e0\"\";i:385;s:7:\"\"\\e6e1\"\";i:386;s:7:\"\"\\e6e2\"\";i:387;s:7:\"\"\\e6e3\"\";i:388;s:7:\"\"\\e6e4\"\";i:389;s:7:\"\"\\e6e5\"\";i:390;s:7:\"\"\\e6e6\"\";i:391;s:7:\"\"\\e6e7\"\";i:392;s:7:\"\"\\e6e8\"\";i:393;s:7:\"\"\\e6e9\"\";i:394;s:7:\"\"\\e6ea\"\";i:395;s:7:\"\"\\e6eb\"\";i:396;s:7:\"\"\\e6ec\"\";i:397;s:7:\"\"\\e6ed\"\";i:398;s:7:\"\"\\e6ee\"\";i:399;s:7:\"\"\\e6ef\"\";i:400;s:7:\"\"\\e6f0\"\";i:401;s:7:\"\"\\e6f1\"\";i:402;s:7:\"\"\\e6f2\"\";i:403;s:7:\"\"\\e6f3\"\";i:404;s:7:\"\"\\e6f4\"\";i:405;s:7:\"\"\\e6f5\"\";i:406;s:7:\"\"\\e6f6\"\";i:407;s:7:\"\"\\e6f7\"\";i:408;s:7:\"\"\\e6f8\"\";i:409;s:7:\"\"\\e6f9\"\";i:410;s:7:\"\"\\e6fa\"\";i:411;s:7:\"\"\\e6fb\"\";i:412;s:7:\"\"\\e6fc\"\";i:413;s:7:\"\"\\e6fd\"\";i:414;s:7:\"\"\\e6fe\"\";i:415;s:7:\"\"\\e6ff\"\";i:416;s:7:\"\"\\e700\"\";i:417;s:7:\"\"\\e701\"\";i:418;s:7:\"\"\\e702\"\";i:419;s:7:\"\"\\e703\"\";i:420;s:7:\"\"\\e704\"\";i:421;s:7:\"\"\\e705\"\";i:422;s:7:\"\"\\e706\"\";i:423;s:7:\"\"\\e707\"\";i:424;s:7:\"\"\\e708\"\";i:425;s:7:\"\"\\e709\"\";i:426;s:7:\"\"\\e70a\"\";i:427;s:7:\"\"\\e70b\"\";i:428;s:7:\"\"\\e70c\"\";i:429;s:7:\"\"\\e70d\"\";i:430;s:7:\"\"\\e70e\"\";i:431;s:7:\"\"\\e70f\"\";i:432;s:7:\"\"\\e710\"\";i:433;s:7:\"\"\\e711\"\";i:434;s:7:\"\"\\e712\"\";i:435;s:7:\"\"\\e713\"\";i:436;s:7:\"\"\\e714\"\";i:437;s:7:\"\"\\e715\"\";i:438;s:7:\"\"\\e716\"\";i:439;s:7:\"\"\\e717\"\";i:440;s:7:\"\"\\e718\"\";i:441;s:7:\"\"\\e719\"\";i:442;s:7:\"\"\\e71a\"\";i:443;s:7:\"\"\\e71b\"\";i:444;s:7:\"\"\\e71c\"\";i:445;s:7:\"\"\\e71d\"\";i:446;s:7:\"\"\\e71e\"\";i:447;s:7:\"\"\\e71f\"\";i:448;s:7:\"\"\\e720\"\";i:449;s:7:\"\"\\e721\"\";i:450;s:7:\"\"\\e722\"\";i:451;s:7:\"\"\\e723\"\";i:452;s:7:\"\"\\e724\"\";i:453;s:7:\"\"\\e725\"\";i:454;s:7:\"\"\\e726\"\";i:455;s:7:\"\"\\e727\"\";i:456;s:7:\"\"\\e728\"\";i:457;s:7:\"\"\\e729\"\";i:458;s:7:\"\"\\e72a\"\";i:459;s:7:\"\"\\e72b\"\";i:460;s:7:\"\"\\e72c\"\";i:461;s:7:\"\"\\e72d\"\";i:462;s:7:\"\"\\e72e\"\";i:463;s:7:\"\"\\e72f\"\";i:464;s:7:\"\"\\e730\"\";i:465;s:7:\"\"\\e731\"\";i:466;s:7:\"\"\\e732\"\";i:467;s:7:\"\"\\e733\"\";i:468;s:7:\"\"\\e734\"\";i:469;s:7:\"\"\\e735\"\";i:470;s:7:\"\"\\e736\"\";i:471;s:7:\"\"\\e737\"\";i:472;s:7:\"\"\\e738\"\";i:473;s:7:\"\"\\e739\"\";i:474;s:7:\"\"\\e73a\"\";i:475;s:7:\"\"\\e73b\"\";i:476;s:7:\"\"\\e73c\"\";i:477;s:7:\"\"\\e73d\"\";i:478;s:7:\"\"\\e73e\"\";i:479;s:7:\"\"\\e73f\"\";i:480;s:7:\"\"\\e740\"\";i:481;s:7:\"\"\\e741\"\";i:482;s:7:\"\"\\e742\"\";i:483;s:7:\"\"\\e743\"\";i:484;s:7:\"\"\\e744\"\";i:485;s:7:\"\"\\e745\"\";i:486;s:7:\"\"\\e746\"\";i:487;s:7:\"\"\\e747\"\";i:488;s:7:\"\"\\e748\"\";i:489;s:7:\"\"\\e749\"\";i:490;s:7:\"\"\\e74a\"\";i:491;s:7:\"\"\\e74b\"\";i:492;s:7:\"\"\\e74c\"\";i:493;s:7:\"\"\\e74d\"\";i:494;s:7:\"\"\\e74e\"\";i:495;s:7:\"\"\\e74f\"\";i:496;s:7:\"\"\\e750\"\";i:497;s:7:\"\"\\e751\"\";i:498;s:7:\"\"\\e752\"\";i:499;s:7:\"\"\\e753\"\";i:500;s:7:\"\"\\e754\"\";i:501;s:7:\"\"\\e755\"\";i:502;s:7:\"\"\\e756\"\";i:503;s:7:\"\"\\e757\"\";i:504;s:7:\"\"\\e758\"\";i:505;s:7:\"\"\\e759\"\";i:506;s:7:\"\"\\e75a\"\";i:507;s:7:\"\"\\e75b\"\";i:508;s:7:\"\"\\e75c\"\";i:509;s:7:\"\"\\e75d\"\";i:510;s:7:\"\"\\e75e\"\";i:511;s:7:\"\"\\e75f\"\";i:512;s:7:\"\"\\e760\"\";i:513;s:7:\"\"\\e761\"\";i:514;s:7:\"\"\\e762\"\";i:515;s:7:\"\"\\e763\"\";i:516;s:7:\"\"\\e764\"\";i:517;s:7:\"\"\\e765\"\";i:518;s:7:\"\"\\e766\"\";i:519;s:7:\"\"\\e767\"\";i:520;s:7:\"\"\\e768\"\";i:521;s:7:\"\"\\e769\"\";i:522;s:7:\"\"\\e76a\"\";i:523;s:7:\"\"\\e76b\"\";i:524;s:7:\"\"\\e76c\"\";i:525;s:7:\"\"\\e76d\"\";i:526;s:7:\"\"\\e76e\"\";i:527;s:7:\"\"\\e76f\"\";i:528;s:7:\"\"\\e770\"\";i:529;s:7:\"\"\\e771\"\";i:530;s:7:\"\"\\e772\"\";i:531;s:7:\"\"\\e773\"\";i:532;s:7:\"\"\\e774\"\";i:533;s:7:\"\"\\e775\"\";i:534;s:7:\"\"\\e776\"\";i:535;s:7:\"\"\\e777\"\";i:536;s:7:\"\"\\e778\"\";i:537;s:7:\"\"\\e779\"\";i:538;s:7:\"\"\\e77a\"\";i:539;s:7:\"\"\\e77b\"\";i:540;s:7:\"\"\\e77c\"\";i:541;s:7:\"\"\\e77d\"\";i:542;s:7:\"\"\\e77e\"\";i:543;s:7:\"\"\\e77f\"\";i:544;s:7:\"\"\\e780\"\";i:545;s:7:\"\"\\e781\"\";i:546;s:7:\"\"\\e782\"\";i:547;s:7:\"\"\\e783\"\";i:548;s:7:\"\"\\e784\"\";i:549;s:7:\"\"\\e785\"\";i:550;s:7:\"\"\\e786\"\";i:551;s:7:\"\"\\e787\"\";i:552;s:7:\"\"\\e788\"\";i:553;s:7:\"\"\\e789\"\";i:554;s:7:\"\"\\e78a\"\";i:555;s:7:\"\"\\e78b\"\";i:556;s:7:\"\"\\e78c\"\";i:557;s:7:\"\"\\e78d\"\";i:558;s:7:\"\"\\e78e\"\";i:559;s:7:\"\"\\e78f\"\";i:560;s:7:\"\"\\e790\"\";i:561;s:7:\"\"\\e791\"\";i:562;s:7:\"\"\\e792\"\";i:563;s:7:\"\"\\e793\"\";i:564;s:7:\"\"\\e794\"\";i:565;s:7:\"\"\\e795\"\";i:566;s:7:\"\"\\e796\"\";i:567;s:7:\"\"\\e797\"\";i:568;s:7:\"\"\\e798\"\";i:569;s:7:\"\"\\e799\"\";i:570;s:7:\"\"\\e79a\"\";i:571;s:7:\"\"\\e79b\"\";i:572;s:7:\"\"\\e79c\"\";i:573;s:7:\"\"\\e79d\"\";i:574;s:7:\"\"\\e79e\"\";i:575;s:7:\"\"\\e79f\"\";i:576;s:7:\"\"\\e7a0\"\";i:577;s:7:\"\"\\e10f\"\";i:578;s:7:\"\"\\e110\"\";i:579;s:7:\"\"\\e111\"\";i:580;s:7:\"\"\\e112\"\";i:581;s:7:\"\"\\e1ca\"\";i:582;s:7:\"\"\\e1cb\"\";i:583;s:7:\"\"\\e1cc\"\";i:584;s:7:\"\"\\e1cd\"\";i:585;s:7:\"\"\\e1ce\"\";i:586;s:7:\"\"\\e1d0\"\";i:587;s:7:\"\"\\e1d1\"\";i:588;s:7:\"\"\\e1f9\"\";i:589;s:7:\"\"\\e242\"\";i:590;s:7:\"\"\\e243\"\";i:591;s:7:\"\"\\e292\"\";i:592;s:7:\"\"\\e2ac\"\";i:593;s:7:\"\"\\e2ad\"\";i:594;s:7:\"\"\\e2ba\"\";i:595;s:7:\"\"\\e2ca\"\";i:596;s:7:\"\"\\e006\"\";i:597;s:7:\"\"\\e007\"\";i:598;s:7:\"\"\\e008\"\";i:599;s:7:\"\"\\e015\"\";i:600;s:7:\"\"\\e018\"\";i:601;s:7:\"\"\\e019\"\";i:602;s:7:\"\"\\e01a\"\";i:603;s:7:\"\"\\e01b\"\";i:604;s:7:\"\"\\e022\"\";i:605;s:7:\"\"\\e023\"\";i:606;s:7:\"\"\\e024\"\";i:607;s:7:\"\"\\e035\"\";i:608;s:7:\"\"\\e038\"\";i:609;s:7:\"\"\\e039\"\";i:610;s:7:\"\"\\e048\"\";i:611;s:7:\"\"\\e060\"\";i:612;s:7:\"\"\\e061\"\";i:613;s:7:\"\"\\e062\"\";i:614;s:7:\"\"\\e063\"\";i:615;s:7:\"\"\\e064\"\";i:616;s:7:\"\"\\e065\"\";i:617;s:7:\"\"\\e072\"\";i:618;s:7:\"\"\\e074\"\";i:619;s:7:\"\"\\e075\"\";i:620;s:7:\"\"\\e076\"\";i:621;s:7:\"\"\\e078\"\";i:622;s:7:\"\"\\e085\"\";i:623;s:7:\"\"\\e093\"\";i:624;s:7:\"\"\\e114\"\";i:625;s:7:\"\"\\e115\"\";i:626;s:7:\"\"\\e116\"\";i:627;s:7:\"\"\\e117\"\";i:628;s:7:\"\"\\e127\"\";i:629;s:7:\"\"\\e7a1\"\";i:630;s:7:\"\"\\e7a2\"\";i:631;s:7:\"\"\\e7a3\"\";i:632;s:7:\"\"\\e7a4\"\";i:633;s:7:\"\"\\e7a5\"\";i:634;s:7:\"\"\\e7a6\"\";i:635;s:7:\"\"\\e7a7\"\";i:636;s:7:\"\"\\e7a8\"\";i:637;s:7:\"\"\\e7a9\"\";i:638;s:7:\"\"\\e7aa\"\";i:639;s:7:\"\"\\e7ab\"\";i:640;s:7:\"\"\\e7ac\"\";i:641;s:7:\"\"\\e7ad\"\";i:642;s:7:\"\"\\e7ae\"\";i:643;s:7:\"\"\\e7af\"\";i:644;s:7:\"\"\\e7b0\"\";i:645;s:7:\"\"\\e7b1\"\";i:646;s:7:\"\"\\e7b2\"\";i:647;s:7:\"\"\\e7b3\"\";i:648;s:7:\"\"\\e7b4\"\";i:649;s:7:\"\"\\e7b5\"\";i:650;s:7:\"\"\\e7b6\"\";i:651;s:7:\"\"\\e7b7\"\";i:652;s:7:\"\"\\e7b8\"\";i:653;s:7:\"\"\\e7b9\"\";i:654;s:7:\"\"\\e7ba\"\";i:655;s:7:\"\"\\e7bb\"\";i:656;s:7:\"\"\\f003\"\";i:657;s:7:\"\"\\f006\"\";i:658;s:7:\"\"\\f008\"\";i:659;s:7:\"\"\\f00c\"\";i:660;s:7:\"\"\\f00d\"\";i:661;s:7:\"\"\\f013\"\";i:662;s:7:\"\"\\f014\"\";i:663;s:7:\"\"\\f016\"\";i:664;s:7:\"\"\\f017\"\";i:665;s:7:\"\"\\f02c\"\";i:666;s:7:\"\"\\f087\"\";i:667;s:7:\"\"\\f088\"\";i:668;s:7:\"\"\\f08a\"\";i:669;s:7:\"\"\\f095\"\";i:670;s:7:\"\"\\f0e9\"\";i:671;s:7:\"\"\\f0eb\"\";i:672;s:7:\"\"\\f0f0\"\";i:673;s:7:\"\"\\f0f1\"\";i:674;s:7:\"\"\\f0f2\"\";i:675;s:7:\"\"\\f0f4\"\";i:676;s:7:\"\"\\f0f5\"\";i:677;s:7:\"\"\\f0f6\"\";i:678;s:7:\"\"\\f0f7\"\";i:679;s:7:\"\"\\f0f8\"\";i:680;s:7:\"\"\\f0f9\"\";i:681;s:7:\"\"\\f0fa\"\";i:682;s:7:\"\"\\f104\"\";i:683;s:7:\"\"\\f105\"\";i:684;s:7:\"\"\\f106\"\";i:685;s:7:\"\"\\f107\"\";i:686;s:7:\"\"\\f108\"\";i:687;s:7:\"\"\\f109\"\";i:688;s:7:\"\"\\f10a\"\";i:689;s:7:\"\"\\f10b\"\";i:690;s:7:\"\"\\f10d\"\";i:691;s:7:\"\"\\f10e\"\";i:692;s:7:\"\"\\f167\"\";i:693;s:7:\"\"\\f1c1\"\";i:694;s:7:\"\"\\f1c2\"\";i:695;s:7:\"\"\\f1c3\"\";i:696;s:7:\"\"\\f1c4\"\";i:697;s:7:\"\"\\f1c5\"\";i:698;s:7:\"\"\\f1c6\"\";i:699;s:7:\"\"\\f1c7\"\";i:700;s:7:\"\"\\f1c8\"\";i:701;s:7:\"\"\\f1c9\"\";i:702;s:7:\"\"\\f1d9\"\";i:703;s:7:\"\"\\f1e3\"\";i:704;s:7:\"\"\\f1fd\"\";i:705;s:7:\"\"\\f219\"\";i:706;s:7:\"\"\\f232\"\";i:707;s:7:\"\"\\e7bc\"\";i:708;s:7:\"\"\\e7bd\"\";i:709;s:7:\"\"\\e7be\"\";i:710;s:7:\"\"\\e7bf\"\";i:711;s:7:\"\"\\e7c0\"\";i:712;s:7:\"\"\\e7c1\"\";i:713;s:7:\"\"\\e7c2\"\";i:714;s:7:\"\"\\e7c3\"\";i:715;s:7:\"\"\\e7c4\"\";i:716;s:7:\"\"\\e7c5\"\";i:717;s:7:\"\"\\e7c6\"\";i:718;s:7:\"\"\\e7c7\"\";i:719;s:7:\"\"\\e7c8\"\";i:720;s:7:\"\"\\e7c9\"\";i:721;s:7:\"\"\\e7ca\"\";i:722;s:7:\"\"\\e7cb\"\";i:723;s:7:\"\"\\e7cc\"\";i:724;s:7:\"\"\\e7cd\"\";i:725;s:7:\"\"\\e7ce\"\";i:726;s:7:\"\"\\e7cf\"\";i:727;s:7:\"\"\\e7d0\"\";i:728;s:7:\"\"\\e7d1\"\";i:729;s:7:\"\"\\e7d2\"\";i:730;s:7:\"\"\\e7d3\"\";i:731;s:7:\"\"\\e7d4\"\";i:732;s:7:\"\"\\e7d5\"\";i:733;s:7:\"\"\\e7d6\"\";i:734;s:7:\"\"\\e7d7\"\";i:735;s:7:\"\"\\e7d8\"\";i:736;s:7:\"\"\\e7d9\"\";i:737;s:7:\"\"\\e7da\"\";i:738;s:7:\"\"\\e7db\"\";i:739;s:7:\"\"\\e7dc\"\";i:740;s:24:\"\"Abril Fatface\", cursive\";i:741;s:3:\"\"?\"\";i:742;s:9:\"\'socicon\'\";i:743;s:7:\"\"\\e009\"\";i:744;s:7:\"\"\\e00a\"\";i:745;s:7:\"\"\\e00b\"\";i:746;s:7:\"\"\\e00c\"\";i:747;s:7:\"\"\\e00e\"\";i:748;s:7:\"\"\\e01c\"\";i:749;s:7:\"\"\\e01d\"\";i:750;s:7:\"\"\\e01e\"\";i:751;s:7:\"\"\\e025\"\";i:752;s:7:\"\"\\e026\"\";i:753;s:7:\"\"\\e027\"\";i:754;s:7:\"\"\\e028\"\";i:755;s:7:\"\"\\e029\"\";i:756;s:7:\"\"\\e02d\"\";i:757;s:7:\"\"\\e03a\"\";i:758;s:7:\"\"\\e03b\"\";i:759;s:7:\"\"\\e03d\"\";i:760;s:7:\"\"\\e03e\"\";i:761;s:7:\"\"\\e03f\"\";i:762;s:7:\"\"\\e040\"\";i:763;s:7:\"\"\\e041\"\";i:764;s:7:\"\"\\e042\"\";i:765;s:7:\"\"\\e044\"\";i:766;s:7:\"\"\\e046\"\";i:767;s:7:\"\"\\e049\"\";i:768;s:7:\"\"\\e04a\"\";i:769;s:7:\"\"\\e04b\"\";i:770;s:7:\"\"\\e04e\"\";i:771;s:7:\"\"\\e04f\"\";i:772;s:7:\"\"\\e050\"\";i:773;s:7:\"\"\\e051\"\";i:774;s:7:\"\"\\e054\"\";i:775;s:7:\"\"\\e055\"\";i:776;s:7:\"\"\\e056\"\";i:777;s:7:\"\"\\e058\"\";i:778;s:7:\"\"\\e059\"\";i:779;s:7:\"\"\\e05a\"\";i:780;s:7:\"\"\\e05b\"\";i:781;s:7:\"\"\\e05c\"\";i:782;s:7:\"\"\\e05d\"\";i:783;s:7:\"\"\\e05e\"\";i:784;s:7:\"\"\\e05f\"\";i:785;s:7:\"\"\\e066\"\";i:786;s:7:\"\"\\e067\"\";i:787;s:7:\"\"\\e068\"\";i:788;s:7:\"\"\\e069\"\";i:789;s:7:\"\"\\e06a\"\";i:790;s:7:\"\"\\e06b\"\";i:791;s:7:\"\"\\e06c\"\";i:792;s:7:\"\"\\e06e\"\";i:793;s:7:\"\"\\e06f\"\";i:794;s:7:\"\"\\e070\"\";i:795;s:7:\"\"\\e071\"\";i:796;s:7:\"\"\\e077\"\";i:797;s:7:\"\"\\e079\"\";i:798;s:7:\"\"\\e07a\"\";i:799;s:7:\"\"\\e07b\"\";i:800;s:7:\"\"\\e07c\"\";i:801;s:7:\"\"\\e07d\"\";i:802;s:7:\"\"\\e07e\"\";i:803;s:7:\"\"\\e06d\"\";i:804;s:7:\"\"\\e07f\"\";i:805;s:7:\"\"\\e080\"\";i:806;s:7:\"\"\\e081\"\";i:807;s:7:\"\"\\e082\"\";i:808;s:7:\"\"\\e057\"\";i:809;s:7:\"\"\\e083\"\";i:810;s:7:\"\"\\e084\"\";i:811;s:7:\"\"\\e086\"\";i:812;s:7:\"\"\\e087\"\";i:813;s:7:\"\"\\e088\"\";i:814;s:7:\"\"\\e089\"\";i:815;s:7:\"\"\\e08d\"\";i:816;s:7:\"\"\\e090\"\";i:817;s:7:\"\"\\e091\"\";i:818;s:7:\"\"\\e092\"\";i:819;s:7:\"\"\\e094\"\";i:820;s:7:\"\"\\e095\"\";i:821;s:7:\"\"\\e096\"\";i:822;s:7:\"\"\\e097\"\";i:823;s:7:\"\"\\e098\"\";i:824;s:7:\"\"\\e099\"\";i:825;s:7:\"\"\\e09a\"\";i:826;s:7:\"\"\\e09b\"\";i:827;s:7:\"\"\\e09c\"\";i:828;s:7:\"\"\\e09d\"\";i:829;s:7:\"\"\\e09e\"\";i:830;s:7:\"\"\\e09f\"\";i:831;s:7:\"\"\\e0a0\"\";i:832;s:7:\"\"\\e073\"\";i:833;s:7:\"\"\\e0a1\"\";i:834;s:7:\"\"\\e08b\"\";i:835;s:7:\"\"\\e08a\"\";i:836;s:7:\"\"\\e08c\"\";i:837;s:7:\"\"\\e08e\"\";i:838;s:7:\"\"\\e08f\"\";i:839;s:7:\"\"\\e0a2\"\";i:840;s:7:\"\"\\e0a3\"\";i:841;s:7:\"\"\\e0a4\"\";i:842;s:7:\"\"\\e0a5\"\";i:843;s:7:\"\"\\e0a6\"\";i:844;s:7:\"\"\\e0a7\"\";i:845;s:12:\"inline-block\";i:846;s:25:\"normal 14px/1 FontAwesome\";i:847;s:7:\"inherit\";i:848;s:12:\"1.33333333em\";i:849;s:6:\"0.75em\";i:850;s:4:\"-15%\";i:851;s:3:\"2em\";i:852;s:3:\"3em\";i:853;s:3:\"4em\";i:854;s:3:\"5em\";i:855;s:12:\"1.28571429em\";i:856;s:12:\"2.14285714em\";i:857;s:13:\"-2.14285714em\";i:858;s:12:\"0.14285714em\";i:859;s:13:\"-1.85714286em\";i:860;s:4:\".2em\";i:861;s:5:\".25em\";i:862;s:5:\".15em\";i:863;s:17:\"solid 0.08em #eee\";i:864;s:4:\".1em\";i:865;s:4:\".3em\";i:866;s:26:\"fa-spin 2s infinite linear\";i:867;s:28:\"fa-spin 1s infinite steps(8)\";i:868;s:58:\"\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\"\";i:869;s:13:\"rotate(90deg)\";i:870;s:58:\"\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\"\";i:871;s:14:\"rotate(180deg)\";i:872;s:58:\"\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\"\";i:873;s:14:\"rotate(270deg)\";i:874;s:68:\"\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\"\";i:875;s:12:\"scale(-1, 1)\";i:876;s:68:\"\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\"\";i:877;s:12:\"scale(1, -1)\";i:878;s:6:\"middle\";i:879;s:4:\"100%\";i:880;s:4:\"#fff\";i:881;s:7:\"\"\\f000\"\";i:882;s:7:\"\"\\f001\"\";i:883;s:7:\"\"\\f002\"\";i:884;s:7:\"\"\\f004\"\";i:885;s:7:\"\"\\f005\"\";i:886;s:7:\"\"\\f007\"\";i:887;s:7:\"\"\\f009\"\";i:888;s:7:\"\"\\f00a\"\";i:889;s:7:\"\"\\f00b\"\";i:890;s:7:\"\"\\f00e\"\";i:891;s:7:\"\"\\f010\"\";i:892;s:7:\"\"\\f011\"\";i:893;s:7:\"\"\\f012\"\";i:894;s:7:\"\"\\f015\"\";i:895;s:7:\"\"\\f018\"\";i:896;s:7:\"\"\\f019\"\";i:897;s:7:\"\"\\f01a\"\";i:898;s:7:\"\"\\f01b\"\";i:899;s:7:\"\"\\f01c\"\";i:900;s:7:\"\"\\f01d\"\";i:901;s:7:\"\"\\f01e\"\";i:902;s:7:\"\"\\f021\"\";i:903;s:7:\"\"\\f022\"\";i:904;s:7:\"\"\\f023\"\";i:905;s:7:\"\"\\f024\"\";i:906;s:7:\"\"\\f025\"\";i:907;s:7:\"\"\\f026\"\";i:908;s:7:\"\"\\f027\"\";i:909;s:7:\"\"\\f028\"\";i:910;s:7:\"\"\\f029\"\";i:911;s:7:\"\"\\f02a\"\";i:912;s:7:\"\"\\f02b\"\";i:913;s:7:\"\"\\f02d\"\";i:914;s:7:\"\"\\f02f\"\";i:915;s:7:\"\"\\f030\"\";i:916;s:7:\"\"\\f031\"\";i:917;s:7:\"\"\\f032\"\";i:918;s:7:\"\"\\f033\"\";i:919;s:7:\"\"\\f034\"\";i:920;s:7:\"\"\\f035\"\";i:921;s:7:\"\"\\f036\"\";i:922;s:7:\"\"\\f037\"\";i:923;s:7:\"\"\\f038\"\";i:924;s:7:\"\"\\f039\"\";i:925;s:7:\"\"\\f03a\"\";i:926;s:7:\"\"\\f03b\"\";i:927;s:7:\"\"\\f03c\"\";i:928;s:7:\"\"\\f03d\"\";i:929;s:7:\"\"\\f03e\"\";i:930;s:7:\"\"\\f040\"\";i:931;s:7:\"\"\\f041\"\";i:932;s:7:\"\"\\f042\"\";i:933;s:7:\"\"\\f043\"\";i:934;s:7:\"\"\\f045\"\";i:935;s:7:\"\"\\f046\"\";i:936;s:7:\"\"\\f047\"\";i:937;s:7:\"\"\\f048\"\";i:938;s:7:\"\"\\f049\"\";i:939;s:7:\"\"\\f04a\"\";i:940;s:7:\"\"\\f04b\"\";i:941;s:7:\"\"\\f04c\"\";i:942;s:7:\"\"\\f04d\"\";i:943;s:7:\"\"\\f04e\"\";i:944;s:7:\"\"\\f050\"\";i:945;s:7:\"\"\\f051\"\";i:946;s:7:\"\"\\f052\"\";i:947;s:7:\"\"\\f053\"\";i:948;s:7:\"\"\\f054\"\";i:949;s:7:\"\"\\f055\"\";i:950;s:7:\"\"\\f056\"\";i:951;s:7:\"\"\\f057\"\";i:952;s:7:\"\"\\f058\"\";i:953;s:7:\"\"\\f059\"\";i:954;s:7:\"\"\\f05c\"\";i:955;s:7:\"\"\\f05d\"\";i:956;s:7:\"\"\\f05e\"\";i:957;s:7:\"\"\\f060\"\";i:958;s:7:\"\"\\f061\"\";i:959;s:7:\"\"\\f062\"\";i:960;s:7:\"\"\\f064\"\";i:961;s:7:\"\"\\f065\"\";i:962;s:7:\"\"\\f066\"\";i:963;s:7:\"\"\\f067\"\";i:964;s:7:\"\"\\f068\"\";i:965;s:7:\"\"\\f069\"\";i:966;s:7:\"\"\\f06a\"\";i:967;s:7:\"\"\\f06b\"\";i:968;s:7:\"\"\\f06c\"\";i:969;s:7:\"\"\\f06d\"\";i:970;s:7:\"\"\\f06e\"\";i:971;s:7:\"\"\\f070\"\";i:972;s:7:\"\"\\f071\"\";i:973;s:7:\"\"\\f072\"\";i:974;s:7:\"\"\\f073\"\";i:975;s:7:\"\"\\f074\"\";i:976;s:7:\"\"\\f075\"\";i:977;s:7:\"\"\\f076\"\";i:978;s:7:\"\"\\f077\"\";i:979;s:7:\"\"\\f079\"\";i:980;s:7:\"\"\\f07a\"\";i:981;s:7:\"\"\\f07b\"\";i:982;s:7:\"\"\\f07c\"\";i:983;s:7:\"\"\\f07d\"\";i:984;s:7:\"\"\\f07e\"\";i:985;s:7:\"\"\\f080\"\";i:986;s:7:\"\"\\f081\"\";i:987;s:7:\"\"\\f082\"\";i:988;s:7:\"\"\\f083\"\";i:989;s:7:\"\"\\f084\"\";i:990;s:7:\"\"\\f085\"\";i:991;s:7:\"\"\\f086\"\";i:992;s:7:\"\"\\f089\"\";i:993;s:7:\"\"\\f08b\"\";i:994;s:7:\"\"\\f08c\"\";i:995;s:7:\"\"\\f08d\"\";i:996;s:7:\"\"\\f08e\"\";i:997;s:7:\"\"\\f090\"\";i:998;s:7:\"\"\\f091\"\";i:999;s:7:\"\"\\f092\"\";i:1000;s:7:\"\"\\f093\"\";i:1001;s:7:\"\"\\f094\"\";i:1002;s:7:\"\"\\f096\"\";i:1003;s:7:\"\"\\f097\"\";i:1004;s:7:\"\"\\f098\"\";i:1005;s:7:\"\"\\f099\"\";i:1006;s:7:\"\"\\f09a\"\";i:1007;s:7:\"\"\\f09b\"\";i:1008;s:7:\"\"\\f09c\"\";i:1009;s:7:\"\"\\f09d\"\";i:1010;s:7:\"\"\\f09e\"\";i:1011;s:7:\"\"\\f0a0\"\";i:1012;s:7:\"\"\\f0a1\"\";i:1013;s:7:\"\"\\f0f3\"\";i:1014;s:7:\"\"\\f0a5\"\";i:1015;s:7:\"\"\\f0a6\"\";i:1016;s:7:\"\"\\f0a7\"\";i:1017;s:7:\"\"\\f0a8\"\";i:1018;s:7:\"\"\\f0a9\"\";i:1019;s:7:\"\"\\f0ab\"\";i:1020;s:7:\"\"\\f0ac\"\";i:1021;s:7:\"\"\\f0ad\"\";i:1022;s:7:\"\"\\f0ae\"\";i:1023;s:7:\"\"\\f0b0\"\";i:1024;s:7:\"\"\\f0b1\"\";i:1025;s:7:\"\"\\f0b2\"\";i:1026;s:7:\"\"\\f0c0\"\";i:1027;s:7:\"\"\\f0c1\"\";i:1028;s:7:\"\"\\f0c2\"\";i:1029;s:7:\"\"\\f0c3\"\";i:1030;s:7:\"\"\\f0c4\"\";i:1031;s:7:\"\"\\f0c5\"\";i:1032;s:7:\"\"\\f0c6\"\";i:1033;s:7:\"\"\\f0c7\"\";i:1034;s:7:\"\"\\f0c8\"\";i:1035;s:7:\"\"\\f0c9\"\";i:1036;s:7:\"\"\\f0ca\"\";i:1037;s:7:\"\"\\f0cb\"\";i:1038;s:7:\"\"\\f0cc\"\";i:1039;s:7:\"\"\\f0cd\"\";i:1040;s:7:\"\"\\f0ce\"\";i:1041;s:7:\"\"\\f0d0\"\";i:1042;s:7:\"\"\\f0d1\"\";i:1043;s:7:\"\"\\f0d2\"\";i:1044;s:7:\"\"\\f0d3\"\";i:1045;s:7:\"\"\\f0d4\"\";i:1046;s:7:\"\"\\f0d5\"\";i:1047;s:7:\"\"\\f0d6\"\";i:1048;s:7:\"\"\\f0d7\"\";i:1049;s:7:\"\"\\f0d8\"\";i:1050;s:7:\"\"\\f0d9\"\";i:1051;s:7:\"\"\\f0da\"\";i:1052;s:7:\"\"\\f0db\"\";i:1053;s:7:\"\"\\f0dc\"\";i:1054;s:7:\"\"\\f0dd\"\";i:1055;s:7:\"\"\\f0de\"\";i:1056;s:7:\"\"\\f0e0\"\";i:1057;s:7:\"\"\\f0e1\"\";i:1058;s:7:\"\"\\f0e2\"\";i:1059;s:7:\"\"\\f0e3\"\";i:1060;s:7:\"\"\\f0e4\"\";i:1061;s:7:\"\"\\f0e5\"\";i:1062;s:7:\"\"\\f0e6\"\";i:1063;s:7:\"\"\\f0e7\"\";i:1064;s:7:\"\"\\f0e8\"\";i:1065;s:7:\"\"\\f0ea\"\";i:1066;s:7:\"\"\\f0ec\"\";i:1067;s:7:\"\"\\f0ed\"\";i:1068;s:7:\"\"\\f0ee\"\";i:1069;s:7:\"\"\\f0fb\"\";i:1070;s:7:\"\"\\f0fc\"\";i:1071;s:7:\"\"\\f0fd\"\";i:1072;s:7:\"\"\\f0fe\"\";i:1073;s:7:\"\"\\f100\"\";i:1074;s:7:\"\"\\f101\"\";i:1075;s:7:\"\"\\f102\"\";i:1076;s:7:\"\"\\f103\"\";i:1077;s:7:\"\"\\f10c\"\";i:1078;s:7:\"\"\\f110\"\";i:1079;s:7:\"\"\\f111\"\";i:1080;s:7:\"\"\\f112\"\";i:1081;s:7:\"\"\\f113\"\";i:1082;s:7:\"\"\\f114\"\";i:1083;s:7:\"\"\\f115\"\";i:1084;s:7:\"\"\\f118\"\";i:1085;s:7:\"\"\\f119\"\";i:1086;s:7:\"\"\\f11a\"\";i:1087;s:7:\"\"\\f11b\"\";i:1088;s:7:\"\"\\f11c\"\";i:1089;s:7:\"\"\\f11d\"\";i:1090;s:7:\"\"\\f11e\"\";i:1091;s:7:\"\"\\f120\"\";i:1092;s:7:\"\"\\f121\"\";i:1093;s:7:\"\"\\f122\"\";i:1094;s:7:\"\"\\f123\"\";i:1095;s:7:\"\"\\f124\"\";i:1096;s:7:\"\"\\f125\"\";i:1097;s:7:\"\"\\f126\"\";i:1098;s:7:\"\"\\f127\"\";i:1099;s:7:\"\"\\f128\"\";i:1100;s:7:\"\"\\f129\"\";i:1101;s:7:\"\"\\f12a\"\";i:1102;s:7:\"\"\\f12b\"\";i:1103;s:7:\"\"\\f12c\"\";i:1104;s:7:\"\"\\f12d\"\";i:1105;s:7:\"\"\\f12e\"\";i:1106;s:7:\"\"\\f130\"\";i:1107;s:7:\"\"\\f131\"\";i:1108;s:7:\"\"\\f132\"\";i:1109;s:7:\"\"\\f133\"\";i:1110;s:7:\"\"\\f134\"\";i:1111;s:7:\"\"\\f135\"\";i:1112;s:7:\"\"\\f136\"\";i:1113;s:7:\"\"\\f137\"\";i:1114;s:7:\"\"\\f138\"\";i:1115;s:7:\"\"\\f139\"\";i:1116;s:7:\"\"\\f13a\"\";i:1117;s:7:\"\"\\f13b\"\";i:1118;s:7:\"\"\\f13c\"\";i:1119;s:7:\"\"\\f13d\"\";i:1120;s:7:\"\"\\f13e\"\";i:1121;s:7:\"\"\\f140\"\";i:1122;s:7:\"\"\\f141\"\";i:1123;s:7:\"\"\\f142\"\";i:1124;s:7:\"\"\\f143\"\";i:1125;s:7:\"\"\\f144\"\";i:1126;s:7:\"\"\\f145\"\";i:1127;s:7:\"\"\\f146\"\";i:1128;s:7:\"\"\\f147\"\";i:1129;s:7:\"\"\\f148\"\";i:1130;s:7:\"\"\\f149\"\";i:1131;s:7:\"\"\\f14a\"\";i:1132;s:7:\"\"\\f14b\"\";i:1133;s:7:\"\"\\f14c\"\";i:1134;s:7:\"\"\\f14d\"\";i:1135;s:7:\"\"\\f14e\"\";i:1136;s:7:\"\"\\f150\"\";i:1137;s:7:\"\"\\f151\"\";i:1138;s:7:\"\"\\f152\"\";i:1139;s:7:\"\"\\f153\"\";i:1140;s:7:\"\"\\f154\"\";i:1141;s:7:\"\"\\f155\"\";i:1142;s:7:\"\"\\f156\"\";i:1143;s:7:\"\"\\f157\"\";i:1144;s:7:\"\"\\f158\"\";i:1145;s:7:\"\"\\f159\"\";i:1146;s:7:\"\"\\f15a\"\";i:1147;s:7:\"\"\\f15b\"\";i:1148;s:7:\"\"\\f15c\"\";i:1149;s:7:\"\"\\f15d\"\";i:1150;s:7:\"\"\\f15e\"\";i:1151;s:7:\"\"\\f160\"\";i:1152;s:7:\"\"\\f161\"\";i:1153;s:7:\"\"\\f162\"\";i:1154;s:7:\"\"\\f163\"\";i:1155;s:7:\"\"\\f164\"\";i:1156;s:7:\"\"\\f165\"\";i:1157;s:7:\"\"\\f166\"\";i:1158;s:7:\"\"\\f168\"\";i:1159;s:7:\"\"\\f169\"\";i:1160;s:7:\"\"\\f16a\"\";i:1161;s:7:\"\"\\f16b\"\";i:1162;s:7:\"\"\\f16c\"\";i:1163;s:7:\"\"\\f16d\"\";i:1164;s:7:\"\"\\f16e\"\";i:1165;s:7:\"\"\\f170\"\";i:1166;s:7:\"\"\\f171\"\";i:1167;s:7:\"\"\\f172\"\";i:1168;s:7:\"\"\\f173\"\";i:1169;s:7:\"\"\\f174\"\";i:1170;s:7:\"\"\\f175\"\";i:1171;s:7:\"\"\\f176\"\";i:1172;s:7:\"\"\\f177\"\";i:1173;s:7:\"\"\\f178\"\";i:1174;s:7:\"\"\\f179\"\";i:1175;s:7:\"\"\\f17a\"\";i:1176;s:7:\"\"\\f17b\"\";i:1177;s:7:\"\"\\f17c\"\";i:1178;s:7:\"\"\\f17d\"\";i:1179;s:7:\"\"\\f17e\"\";i:1180;s:7:\"\"\\f180\"\";i:1181;s:7:\"\"\\f181\"\";i:1182;s:7:\"\"\\f182\"\";i:1183;s:7:\"\"\\f183\"\";i:1184;s:7:\"\"\\f184\"\";i:1185;s:7:\"\"\\f185\"\";i:1186;s:7:\"\"\\f186\"\";i:1187;s:7:\"\"\\f187\"\";i:1188;s:7:\"\"\\f188\"\";i:1189;s:7:\"\"\\f189\"\";i:1190;s:7:\"\"\\f18a\"\";i:1191;s:7:\"\"\\f18b\"\";i:1192;s:7:\"\"\\f18c\"\";i:1193;s:7:\"\"\\f18d\"\";i:1194;s:7:\"\"\\f18e\"\";i:1195;s:7:\"\"\\f190\"\";i:1196;s:7:\"\"\\f191\"\";i:1197;s:7:\"\"\\f192\"\";i:1198;s:7:\"\"\\f193\"\";i:1199;s:7:\"\"\\f194\"\";i:1200;s:7:\"\"\\f195\"\";i:1201;s:7:\"\"\\f196\"\";i:1202;s:7:\"\"\\f197\"\";i:1203;s:7:\"\"\\f198\"\";i:1204;s:7:\"\"\\f199\"\";i:1205;s:7:\"\"\\f19a\"\";i:1206;s:7:\"\"\\f19b\"\";i:1207;s:7:\"\"\\f19c\"\";i:1208;s:7:\"\"\\f19d\"\";i:1209;s:7:\"\"\\f19e\"\";i:1210;s:7:\"\"\\f1a0\"\";i:1211;s:7:\"\"\\f1a1\"\";i:1212;s:7:\"\"\\f1a2\"\";i:1213;s:7:\"\"\\f1a3\"\";i:1214;s:7:\"\"\\f1a4\"\";i:1215;s:7:\"\"\\f1a5\"\";i:1216;s:7:\"\"\\f1a6\"\";i:1217;s:7:\"\"\\f1a7\"\";i:1218;s:7:\"\"\\f1a8\"\";i:1219;s:7:\"\"\\f1a9\"\";i:1220;s:7:\"\"\\f1aa\"\";i:1221;s:7:\"\"\\f1ab\"\";i:1222;s:7:\"\"\\f1ac\"\";i:1223;s:7:\"\"\\f1ad\"\";i:1224;s:7:\"\"\\f1ae\"\";i:1225;s:7:\"\"\\f1b0\"\";i:1226;s:7:\"\"\\f1b1\"\";i:1227;s:7:\"\"\\f1b2\"\";i:1228;s:7:\"\"\\f1b3\"\";i:1229;s:7:\"\"\\f1b4\"\";i:1230;s:7:\"\"\\f1b5\"\";i:1231;s:7:\"\"\\f1b6\"\";i:1232;s:7:\"\"\\f1b7\"\";i:1233;s:7:\"\"\\f1b8\"\";i:1234;s:7:\"\"\\f1b9\"\";i:1235;s:7:\"\"\\f1ba\"\";i:1236;s:7:\"\"\\f1bb\"\";i:1237;s:7:\"\"\\f1bc\"\";i:1238;s:7:\"\"\\f1bd\"\";i:1239;s:7:\"\"\\f1be\"\";i:1240;s:7:\"\"\\f1c0\"\";i:1241;s:7:\"\"\\f1ca\"\";i:1242;s:7:\"\"\\f1cb\"\";i:1243;s:7:\"\"\\f1cc\"\";i:1244;s:7:\"\"\\f1cd\"\";i:1245;s:7:\"\"\\f1ce\"\";i:1246;s:7:\"\"\\f1d0\"\";i:1247;s:7:\"\"\\f1d1\"\";i:1248;s:7:\"\"\\f1d2\"\";i:1249;s:7:\"\"\\f1d3\"\";i:1250;s:7:\"\"\\f1d4\"\";i:1251;s:7:\"\"\\f1d5\"\";i:1252;s:7:\"\"\\f1d6\"\";i:1253;s:7:\"\"\\f1d7\"\";i:1254;s:7:\"\"\\f1d8\"\";i:1255;s:7:\"\"\\f1da\"\";i:1256;s:7:\"\"\\f1db\"\";i:1257;s:7:\"\"\\f1dc\"\";i:1258;s:7:\"\"\\f1dd\"\";i:1259;s:7:\"\"\\f1de\"\";i:1260;s:7:\"\"\\f1e0\"\";i:1261;s:7:\"\"\\f1e1\"\";i:1262;s:7:\"\"\\f1e2\"\";i:1263;s:7:\"\"\\f1e4\"\";i:1264;s:7:\"\"\\f1e5\"\";i:1265;s:7:\"\"\\f1e6\"\";i:1266;s:7:\"\"\\f1e7\"\";i:1267;s:7:\"\"\\f1e8\"\";i:1268;s:7:\"\"\\f1e9\"\";i:1269;s:7:\"\"\\f1ea\"\";i:1270;s:7:\"\"\\f1eb\"\";i:1271;s:7:\"\"\\f1ec\"\";i:1272;s:7:\"\"\\f1ed\"\";i:1273;s:7:\"\"\\f1ee\"\";i:1274;s:7:\"\"\\f1f0\"\";i:1275;s:7:\"\"\\f1f1\"\";i:1276;s:7:\"\"\\f1f2\"\";i:1277;s:7:\"\"\\f1f3\"\";i:1278;s:7:\"\"\\f1f4\"\";i:1279;s:7:\"\"\\f1f5\"\";i:1280;s:7:\"\"\\f1f6\"\";i:1281;s:7:\"\"\\f1f7\"\";i:1282;s:7:\"\"\\f1f8\"\";i:1283;s:7:\"\"\\f1f9\"\";i:1284;s:7:\"\"\\f1fa\"\";i:1285;s:7:\"\"\\f1fb\"\";i:1286;s:7:\"\"\\f1fc\"\";i:1287;s:7:\"\"\\f1fe\"\";i:1288;s:7:\"\"\\f200\"\";i:1289;s:7:\"\"\\f201\"\";i:1290;s:7:\"\"\\f202\"\";i:1291;s:7:\"\"\\f203\"\";i:1292;s:7:\"\"\\f204\"\";i:1293;s:7:\"\"\\f205\"\";i:1294;s:7:\"\"\\f206\"\";i:1295;s:7:\"\"\\f207\"\";i:1296;s:7:\"\"\\f208\"\";i:1297;s:7:\"\"\\f209\"\";i:1298;s:7:\"\"\\f20a\"\";i:1299;s:7:\"\"\\f20b\"\";i:1300;s:7:\"\"\\f20c\"\";i:1301;s:7:\"\"\\f20d\"\";i:1302;s:7:\"\"\\f20e\"\";i:1303;s:7:\"\"\\f210\"\";i:1304;s:7:\"\"\\f211\"\";i:1305;s:7:\"\"\\f212\"\";i:1306;s:7:\"\"\\f213\"\";i:1307;s:7:\"\"\\f214\"\";i:1308;s:7:\"\"\\f215\"\";i:1309;s:7:\"\"\\f216\"\";i:1310;s:7:\"\"\\f217\"\";i:1311;s:7:\"\"\\f218\"\";i:1312;s:7:\"\"\\f21a\"\";i:1313;s:7:\"\"\\f21b\"\";i:1314;s:7:\"\"\\f21c\"\";i:1315;s:7:\"\"\\f21d\"\";i:1316;s:7:\"\"\\f21e\"\";i:1317;s:7:\"\"\\f221\"\";i:1318;s:7:\"\"\\f222\"\";i:1319;s:7:\"\"\\f223\"\";i:1320;s:7:\"\"\\f224\"\";i:1321;s:7:\"\"\\f225\"\";i:1322;s:7:\"\"\\f226\"\";i:1323;s:7:\"\"\\f227\"\";i:1324;s:7:\"\"\\f228\"\";i:1325;s:7:\"\"\\f229\"\";i:1326;s:7:\"\"\\f22a\"\";i:1327;s:7:\"\"\\f22b\"\";i:1328;s:7:\"\"\\f22c\"\";i:1329;s:7:\"\"\\f22d\"\";i:1330;s:7:\"\"\\f230\"\";i:1331;s:7:\"\"\\f231\"\";i:1332;s:7:\"\"\\f233\"\";i:1333;s:7:\"\"\\f234\"\";i:1334;s:7:\"\"\\f235\"\";i:1335;s:7:\"\"\\f236\"\";i:1336;s:7:\"\"\\f237\"\";i:1337;s:7:\"\"\\f238\"\";i:1338;s:7:\"\"\\f239\"\";i:1339;s:7:\"\"\\f23a\"\";i:1340;s:7:\"\"\\f23b\"\";i:1341;s:7:\"\"\\f23c\"\";i:1342;s:7:\"\"\\f23d\"\";i:1343;s:7:\"\"\\f23e\"\";i:1344;s:7:\"\"\\f240\"\";i:1345;s:7:\"\"\\f241\"\";i:1346;s:7:\"\"\\f242\"\";i:1347;s:7:\"\"\\f243\"\";i:1348;s:7:\"\"\\f244\"\";i:1349;s:7:\"\"\\f245\"\";i:1350;s:7:\"\"\\f246\"\";i:1351;s:7:\"\"\\f247\"\";i:1352;s:7:\"\"\\f248\"\";i:1353;s:7:\"\"\\f249\"\";i:1354;s:7:\"\"\\f24a\"\";i:1355;s:7:\"\"\\f24b\"\";i:1356;s:7:\"\"\\f24c\"\";i:1357;s:7:\"\"\\f24d\"\";i:1358;s:7:\"\"\\f24e\"\";i:1359;s:7:\"\"\\f250\"\";i:1360;s:7:\"\"\\f251\"\";i:1361;s:7:\"\"\\f252\"\";i:1362;s:7:\"\"\\f253\"\";i:1363;s:7:\"\"\\f254\"\";i:1364;s:7:\"\"\\f255\"\";i:1365;s:7:\"\"\\f256\"\";i:1366;s:7:\"\"\\f257\"\";i:1367;s:7:\"\"\\f258\"\";i:1368;s:7:\"\"\\f259\"\";i:1369;s:7:\"\"\\f25a\"\";i:1370;s:7:\"\"\\f25b\"\";i:1371;s:7:\"\"\\f25c\"\";i:1372;s:7:\"\"\\f25d\"\";i:1373;s:7:\"\"\\f25e\"\";i:1374;s:7:\"\"\\f260\"\";i:1375;s:7:\"\"\\f261\"\";i:1376;s:7:\"\"\\f262\"\";i:1377;s:7:\"\"\\f263\"\";i:1378;s:7:\"\"\\f264\"\";i:1379;s:7:\"\"\\f265\"\";i:1380;s:7:\"\"\\f266\"\";i:1381;s:7:\"\"\\f267\"\";i:1382;s:7:\"\"\\f268\"\";i:1383;s:7:\"\"\\f269\"\";i:1384;s:7:\"\"\\f26a\"\";i:1385;s:7:\"\"\\f26b\"\";i:1386;s:7:\"\"\\f26c\"\";i:1387;s:7:\"\"\\f26d\"\";i:1388;s:7:\"\"\\f26e\"\";i:1389;s:7:\"\"\\f270\"\";i:1390;s:7:\"\"\\f271\"\";i:1391;s:7:\"\"\\f272\"\";i:1392;s:7:\"\"\\f273\"\";i:1393;s:7:\"\"\\f274\"\";i:1394;s:7:\"\"\\f275\"\";i:1395;s:7:\"\"\\f276\"\";i:1396;s:7:\"\"\\f277\"\";i:1397;s:7:\"\"\\f278\"\";i:1398;s:7:\"\"\\f279\"\";i:1399;s:7:\"\"\\f27a\"\";i:1400;s:7:\"\"\\f27b\"\";i:1401;s:7:\"\"\\f27c\"\";i:1402;s:7:\"\"\\f27d\"\";i:1403;s:7:\"\"\\f27e\"\";i:1404;s:7:\"\"\\f280\"\";i:1405;s:7:\"\"\\f281\"\";i:1406;s:7:\"\"\\f282\"\";i:1407;s:7:\"\"\\f283\"\";i:1408;s:7:\"\"\\f284\"\";i:1409;s:7:\"\"\\f285\"\";i:1410;s:7:\"\"\\f286\"\";i:1411;s:7:\"\"\\f287\"\";i:1412;s:7:\"\"\\f288\"\";i:1413;s:7:\"\"\\f289\"\";i:1414;s:7:\"\"\\f28a\"\";i:1415;s:7:\"\"\\f28b\"\";i:1416;s:7:\"\"\\f28c\"\";i:1417;s:7:\"\"\\f28d\"\";i:1418;s:7:\"\"\\f28e\"\";i:1419;s:7:\"\"\\f290\"\";i:1420;s:7:\"\"\\f291\"\";i:1421;s:7:\"\"\\f292\"\";i:1422;s:7:\"\"\\f293\"\";i:1423;s:7:\"\"\\f294\"\";i:1424;s:7:\"\"\\f295\"\";i:1425;s:7:\"\"\\f296\"\";i:1426;s:7:\"\"\\f297\"\";i:1427;s:7:\"\"\\f298\"\";i:1428;s:7:\"\"\\f299\"\";i:1429;s:7:\"\"\\f29a\"\";i:1430;s:7:\"\"\\f29b\"\";i:1431;s:7:\"\"\\f29c\"\";i:1432;s:7:\"\"\\f29d\"\";i:1433;s:7:\"\"\\f29e\"\";i:1434;s:7:\"\"\\f2a0\"\";i:1435;s:7:\"\"\\f2a1\"\";i:1436;s:7:\"\"\\f2a2\"\";i:1437;s:7:\"\"\\f2a3\"\";i:1438;s:7:\"\"\\f2a4\"\";i:1439;s:7:\"\"\\f2a5\"\";i:1440;s:7:\"\"\\f2a6\"\";i:1441;s:7:\"\"\\f2a7\"\";i:1442;s:7:\"\"\\f2a8\"\";i:1443;s:7:\"\"\\f2a9\"\";i:1444;s:7:\"\"\\f2aa\"\";i:1445;s:7:\"\"\\f2ab\"\";i:1446;s:7:\"\"\\f2ac\"\";i:1447;s:7:\"\"\\f2ad\"\";i:1448;s:7:\"\"\\f2ae\"\";i:1449;s:7:\"\"\\f2b0\"\";i:1450;s:7:\"\"\\f2b1\"\";i:1451;s:7:\"\"\\f2b2\"\";i:1452;s:7:\"\"\\f2b3\"\";i:1453;s:7:\"\"\\f2b4\"\";i:1454;s:4:\"-1px\";i:1455;s:16:\"rect(0, 0, 0, 0)\";i:1456;s:6:\"static\";i:1457;s:7:\"visible\";i:1458;s:4:\"22px\";i:1459;s:4:\"25px\";i:1460;s:5:\"150px\";i:1461;s:4:\"30px\";i:1462;s:5:\"503px\";i:1463;s:5:\"200px\";i:1464;s:3:\"50%\";i:1465;s:3:\"70%\";i:1466;s:4:\"50px\";i:1467;s:5:\"-15px\";i:1468;s:2:\"\'\'\";i:1469;s:4:\"both\";i:1470;s:3:\"30%\";i:1471;s:5:\"422px\";i:1472;s:12:\"33.33333333%\";i:1473;s:3:\"25%\";i:1474;s:5:\"522px\";i:1475;s:5:\"100px\";i:1476;s:3:\"500\";i:1477;s:5:\"465px\";i:1478;s:2:\".4\";i:1479;s:11:\"not-allowed\";i:1480;s:4:\"55px\";i:1481;s:4:\"40px\";i:1482;s:4:\"60px\";i:1483;s:3:\"300\";i:1484;s:4:\"16px\";i:1485;s:7:\"#7f7f7f\";i:1486;s:7:\"#a4a9b9\";i:1487;s:13:\"\'FontAwesome\'\";i:1488;s:7:\"#1f2732\";i:1489;s:4:\"12px\";i:1490;s:4:\"13px\";i:1491;s:23:\"all 0.2s ease-in-out 0s\";i:1492;s:7:\"#ff497c\";i:1493;s:3:\"0.8\";i:1494;s:10:\"scale(1.1)\";i:1495;s:55:\"\"progid: DXImageTransform.Microsoft.Alpha(Opacity=100)\"\";i:1496;s:18:\"alpha(opacity=100)\";i:1497;s:7:\"#f4f4f5\";i:1498;s:4:\"45px\";i:1499;s:5:\"1.2em\";i:1500;s:3:\"700\";i:1501;s:4:\"18px\";i:1502;s:4:\"24px\";i:1503;s:3:\"8px\";i:1504;s:9:\"uppercase\";i:1505;s:4:\"28px\";i:1506;s:5:\"-55px\";i:1507;s:23:\"spin 2s infinite linear\";i:1508;s:4:\"26px\";i:1509;s:11:\"-webkit-box\";i:1510;s:11:\"-ms-flexbox\";i:1511;s:4:\"flex\";i:1512;s:4:\"wrap\";i:1513;s:4:\"72px\";i:1514;s:19:\"all 0.15s linear 0s\";i:1515;s:3:\"7px\";i:1516;s:4:\"70px\";i:1517;s:5:\"0.2em\";i:1518;s:18:\"all 0.4s linear 0s\";i:1519;s:11:\"FontAwesome\";i:1520;s:10:\"break-word\";i:1521;s:3:\"6px\";i:1522;s:17:\"1px solid #dedfe1\";i:1523;s:10:\"capitalize\";i:1524;s:5:\"-18px\";i:1525;s:3:\"400\";i:1526;s:3:\"1em\";i:1527;s:27:\"\"\\f005\\f005\\f005\\f005\\f005\"\";i:1528;s:7:\"#e3e1e1\";i:1529;s:2:\".5\";i:1530;s:5:\"0.1em\";i:1531;s:5:\"1.5em\";i:1532;s:6:\"-999em\";i:1533;s:3:\".75\";i:1534;s:17:\"1px solid #e1e1e1\";i:1535;s:4:\"93px\";i:1536;s:17:\"4px solid #a0ce4e\";i:1537;s:5:\"105px\";i:1538;s:3:\"1.4\";i:1539;s:4:\"80px\";i:1540;s:4:\"90px\";i:1541;s:5:\"1.4em\";i:1542;s:5:\"140px\";i:1543;s:4:\"35px\";i:1544;s:3:\"2px\";i:1545;s:4:\"-5px\";i:1546;s:5:\"-10px\";i:1547;s:4:\"56px\";i:1548;s:3:\"9px\";i:1549;s:3:\"800\";i:1550;s:7:\"#dedfe1\";i:1551;s:4:\"89px\";i:1552;s:5:\"start\";i:1553;s:10:\"flex-start\";i:1554;s:8:\"vertical\";i:1555;s:7:\"reverse\";i:1556;s:14:\"column-reverse\";i:1557;s:4:\"-6px\";i:1558;s:4:\"-4px\";i:1559;s:2:\"\"\"\";i:1560;s:8:\"ellipsis\";i:1561;s:5:\"fixed\";i:1562;s:7:\"#fafafa\";i:1563;s:1:\"2\";i:1564;s:7:\"pointer\";i:1565;s:4:\".7em\";i:1566;s:3:\"0 0\";i:1567;s:4:\"-3px\";i:1568;s:5:\"-.2em\";i:1569;s:4:\".8em\";i:1570;s:5:\"-.3em\";i:1571;s:5:\"-.6em\";i:1572;s:4:\"29px\";i:1573;s:4:\"#ccc\";i:1574;s:34:\"1px solid rgba(164, 169, 185, 0.3)\";i:1575;s:4:\"-2px\";i:1576;s:5:\"170px\";i:1577;s:5:\"240px\";i:1578;s:5:\"220px\";i:1579;s:5:\"101px\";i:1580;s:4:\"38px\";i:1581;s:8:\"scale(1)\";i:1582;s:7:\"default\";i:1583;s:4:\"#eee\";i:1584;s:7:\"#ffe4df\";i:1585;s:7:\"#f15934\";i:1586;s:7:\"#e3f2f9\";i:1587;s:4:\"#555\";i:1588;s:7:\"#eff7fb\";i:1589;s:7:\"#f9f9f9\";i:1590;s:4:\"#000\";i:1591;s:10:\"scale(1.5)\";i:1592;s:6:\"scroll\";i:1593;s:3:\"1.5\";i:1594;s:3:\"600\";i:1595;s:4:\"#bbb\";i:1596;s:4:\"#ddd\";i:1597;s:7:\"#ffeae7\";i:1598;s:7:\"#f0b1a1\";i:1599;s:4:\"46px\";i:1600;s:4:\"43px\";i:1601;s:10:\"border-box\";i:1602;s:18:\"rgba(0, 0, 0, 0.8)\";i:1603;s:7:\"#c4f2d4\";i:1604;s:21:\"2px solid transparent\";i:1605;s:17:\"2px solid #a0ce4e\";i:1606;s:7:\"#56c477\";i:1607;s:7:\"\"\\f508\"\";i:1608;s:5:\"table\";i:1609;s:34:\"1px solid rgba(128, 128, 128, 0.2)\";i:1610;s:4:\"#333\";i:1611;s:14:\"1px solid #ccc\";i:1612;s:5:\"solid\";i:1613;s:9:\"1px solid\";i:1614;s:4:\"-8px\";i:1615;s:7:\"14.285%\";i:1616;s:24:\"rgba(255, 255, 255, 0.5)\";i:1617;s:34:\"1px solid rgba(255, 255, 255, 0.1)\";i:1618;s:7:\"#f1f1f1\";i:1619;s:7:\"#222739\";i:1620;s:4:\"48px\";i:1621;s:7:\"#a0ce4e\";i:1622;s:24:\"rgba(128, 128, 128, 0.2)\";i:1623;s:5:\"132px\";i:1624;s:7:\"#f5f5f5\";i:1625;s:7:\"#fff9f8\";i:1626;s:7:\"#ffa790\";i:1627;s:7:\"#e35656\";i:1628;s:7:\"#f2f2f2\";i:1629;s:11:\"scale(0.95)\";i:1630;s:28:\"0 1px 5px rgba(0, 0, 0, 0.2)\";i:1631;s:3:\"1.7\";i:1632;s:4:\"#888\";i:1633;s:3:\"1.8\";i:1634;s:4:\"96px\";i:1635;s:31:\"1px solid rgba(31, 39, 50, 0.1)\";i:1636;s:4:\"0.25\";i:1637;s:4:\"71px\";i:1638;s:3:\"60%\";i:1639;s:3:\"2.7\";i:1640;s:3:\"40%\";i:1641;s:4:\"#aaa\";i:1642;s:3:\"80%\";i:1643;s:3:\"1.3\";i:1644;s:7:\"#f59e9e\";i:1645;s:5:\"-40px\";i:1646;s:11:\"5px 5px 0 0\";i:1647;s:13:\"\"FontAwesome\"\";i:1648;s:14:\"1px solid #ddd\";i:1649;s:2:\"5%\";i:1650;s:4:\"0.15\";i:1651;s:11:\"content-box\";i:1652;s:11:\"scale(1.23)\";i:1653;s:4:\"1.5%\";i:1654;s:5:\"49.2%\";i:1655;s:5:\"99.8%\";i:1656;s:3:\"1.6\";i:1657;s:4:\"33px\";i:1658;s:29:\"0 1px 3px rgba(0, 0, 0, 0.15)\";i:1659;s:5:\"-26px\";i:1660;s:5:\"-36px\";i:1661;s:5:\"-84px\";i:1662;s:5:\"168px\";i:1663;s:7:\"9999999\";i:1664;s:18:\"booked-fadein 0.2s\";i:1665;s:19:\"rgba(0, 0, 0, 0.65)\";i:1666;s:17:\"booked-flyin 0.2s\";i:1667;s:5:\"450px\";i:1668;s:31:\"1px 1px 60px rgba(0, 0, 0, 0.5)\";i:1669;s:19:\"booked-fadeout 0.2s\";i:1670;s:18:\"booked-flyout 0.2s\";i:1671;s:10:\"2000000000\";i:1672;s:11:\"4px 4px 0 0\";i:1673;s:5:\"touch\";i:1674;s:13:\"translateZ(0)\";i:1675;s:20:\"translate3d(0, 0, 0)\";i:1676;s:11:\"3px 3px 0 0\";i:1677;s:3:\"2.1\";i:1678;s:11:\"0 0 3px 3px\";i:1679;s:19:\"rgba(0, 0, 0, 0.15)\";i:1680;s:19:\"rgba(0, 0, 0, 0.25)\";i:1681;s:19:\"booked-popdown 0.2s\";i:1682;s:14:\"3px solid #ddd\";i:1683;s:5:\"115px\";i:1684;s:3:\"55%\";i:1685;s:4:\"65px\";i:1686;s:4:\"85px\";i:1687;s:3:\"20%\";i:1688;s:15:\"1px dotted #ccc\";i:1689;s:3:\"48%\";i:1690;s:2:\"4%\";i:1691;s:6:\"italic\";i:1692;s:5:\"-12px\";i:1693;s:4:\"#666\";i:1694;s:7:\"#fff0f0\";i:1695;s:17:\"1px solid #e3c3c3\";i:1696;s:17:\"1px solid #e6db55\";i:1697;s:7:\"#fffbcc\";i:1698;s:4:\"19px\";i:1699;s:29:\"0 1px 25px rgba(0, 0, 0, 0.2)\";i:1700;s:3:\"900\";i:1701;s:21:\"booked-popflyin 0.15s\";i:1702;s:4:\"37px\";i:1703;s:6:\"-107px\";i:1704;s:17:\"1px solid #d5d5d5\";i:1705;s:29:\"0 1px 4px rgba(0, 0, 0, 0.15)\";i:1706;s:4:\"9999\";i:1707;s:15:\"translate(0, 0)\";i:1708;s:3:\"0.7\";i:1709;s:8:\"collapse\";i:1710;s:14:\"8px solid #fff\";i:1711;s:20:\"height .15s ease-out\";i:1712;s:16:\"all .1s ease-out\";i:1713;s:45:\"background .15s ease-out, color .15s ease-out\";i:1714;s:20:\"opacity .2s ease-out\";i:1715;s:25:\"transform .4s ease-in-out\";i:1716;s:33:\"-webkit-transform .4s ease-in-out\";i:1717;s:60:\"transform .4s ease-in-out, -webkit-transform .4s ease-in-out\";i:1718;s:5:\"16.6%\";i:1719;s:5:\"33.3%\";i:1720;s:7:\"#3b5998\";i:1721;s:7:\"#1dcaff\";i:1722;s:7:\"#e52d27\";i:1723;s:4:\"#f80\";i:1724;s:7:\"#ea4c89\";i:1725;s:7:\"#464646\";i:1726;s:7:\"#837d7d\";i:1727;s:7:\"#dd4b39\";i:1728;s:7:\"#3f729b\";i:1729;s:5:\"white\";i:1730;s:3:\"row\";i:1731;s:20:\"all 0.5s ease-in-out\";i:1732;s:5:\"110px\";i:1733;s:6:\"column\";i:1734;s:5:\"snone\";i:1735;s:23:\"\"Open sans\", sans-serif\";}","no");
INSERT INTO `wp_options` VALUES("2187","chld_thm_cfg_options_dict_seq","a:0:{}","no");
INSERT INTO `wp_options` VALUES("2188","chld_thm_cfg_options_dict_token","a:0:{}","no");
INSERT INTO `wp_options` VALUES("2189","chld_thm_cfg_options_val_ndx","a:2508:{i:1;s:45:\"YE=hT?GUZA$ACSOYMifBt:C_Q3nE3sAgA\";i:9;s:90:\"RV=hT?GUuBlB3L.4Fxs@AAeZ=hT?GU!BlB#L.4FxrjAA|e=hT?GU>BlB,L.4Fxs@CA1k=hT?GU>BlB?L.4Fx}MDABA\";i:10;s:13:\"sP=hT?GUjClBA\";i:11;s:45:\"YE=hT?GUZA$AhT?GUHGlBA\";i:21;s:13:\">J>hT?GUXGlBA\";i:22;s:13:\">J>hT?GUnGlBA\";i:23;s:13:\">J>hT?GU3GlBA\";i:24;s:13:\">J>hT?GU,GlBA\";i:25;s:13:\">J>hT?GU|GlBA\";i:26;s:13:\">J>hT?GUMHlBA\";i:27;s:13:\">J>hT?GUcHlBA\";i:28;s:13:\">J>hT?GUsHlBA\";i:29;s:13:\">J>hT?GU8HlBA\";i:30;s:13:\">J>hT?GUJ>hT?GUBIlBA\";i:32;s:13:\">J>hT?GURIlBA\";i:33;s:13:\">J>hT?GUhIlBA\";i:34;s:13:\">J>hT?GUxIlBA\";i:35;s:13:\">J>hT?GU%IlBA\";i:36;s:13:\">J>hT?GU[IlBA\";i:37;s:13:\">J>hT?GUGJlBA\";i:38;s:13:\">J>hT?GUWJlBA\";i:39;s:13:\">J>hT?GUmJlBA\";i:40;s:13:\">J>hT?GU2JlBA\";i:41;s:13:\">J>hT?GU+JlBA\";i:42;s:13:\">J>hT?GU{JlBA\";i:43;s:13:\">J>hT?GULKlBA\";i:44;s:13:\">J>hT?GUbKlBA\";i:45;s:13:\">J>hT?GUrKlBA\";i:46;s:13:\">J>hT?GU7KlBA\";i:47;s:13:\">J>hT?GU;KlBA\";i:48;s:13:\">J>hT?GUALlBA\";i:49;s:13:\">J>hT?GUQLlBA\";i:50;s:13:\">J>hT?GUgLlBA\";i:51;s:13:\">J>hT?GUwLlBA\";i:52;s:13:\">J>hT?GU$LlBA\";i:53;s:13:\">J>hT?GU@LlBA\";i:54;s:13:\">J>hT?GUFMlBA\";i:55;s:13:\">J>hT?GUVMlBA\";i:56;s:13:\">J>hT?GUlMlBA\";i:57;s:13:\">J>hT?GU1MlBA\";i:58;s:13:\">J>hT?GU*MlBA\";i:59;s:13:\">J>hT?GU`MlBA\";i:60;s:13:\">J>hT?GUKNlBA\";i:61;s:13:\">J>hT?GUaNlBA\";i:62;s:13:\">J>hT?GUqNlBA\";i:63;s:13:\">J>hT?GU6NlBA\";i:64;s:13:\">J>hT?GU:NlBA\";i:65;s:13:\">J>hT?GU\"NlBA\";i:66;s:13:\">J>hT?GUPOlBA\";i:67;s:13:\">J>hT?GUfOlBA\";i:68;s:13:\">J>hT?GUvOlBA\";i:69;s:13:\">J>hT?GU#OlBA\";i:70;s:13:\">J>hT?GU?OlBA\";i:71;s:13:\">J>hT?GUEPlBA\";i:72;s:13:\">J>hT?GUUPlBA\";i:73;s:13:\">J>hT?GUkPlBA\";i:74;s:13:\">J>hT?GU0PlBA\";i:75;s:13:\">J>hT?GU)PlBA\";i:76;s:13:\">J>hT?GU_PlBA\";i:77;s:13:\">J>hT?GUJQlBA\";i:78;s:13:\">J>hT?GUZQlBA\";i:79;s:13:\">J>hT?GUpQlBA\";i:80;s:13:\">J>hT?GU5QlBA\";i:81;s:13:\">J>hT?GU/QlBA\";i:82;s:13:\">J>hT?GU~QlBA\";i:83;s:13:\">J>hT?GUORlBA\";i:84;s:13:\">J>hT?GUeRlBA\";i:85;s:13:\">J>hT?GUuRlBA\";i:86;s:13:\">J>hT?GU!RlBA\";i:87;s:13:\">J>hT?GU>RlBA\";i:88;s:13:\">J>hT?GUDSlBA\";i:89;s:13:\">J>hT?GUTSlBA\";i:90;s:13:\">J>hT?GUjSlBA\";i:91;s:13:\">J>hT?GUzSlBA\";i:92;s:13:\">J>hT?GU(SlBA\";i:93;s:13:\">J>hT?GU^SlBA\";i:94;s:13:\">J>hT?GUITlBA\";i:95;s:13:\">J>hT?GUYTlBA\";i:96;s:13:\">J>hT?GUoTlBA\";i:97;s:13:\">J>hT?GU4TlBA\";i:98;s:13:\">J>hT?GU.TlBA\";i:99;s:13:\">J>hT?GU}TlBA\";i:100;s:13:\">J>hT?GUNUlBA\";i:101;s:13:\">J>hT?GUdUlBA\";i:102;s:13:\">J>hT?GUtUlBA\";i:103;s:13:\">J>hT?GU9UlBA\";i:104;s:13:\">J>hT?GU=UlBA\";i:105;s:13:\">J>hT?GUCVlBA\";i:106;s:13:\">J>hT?GUSVlBA\";i:107;s:13:\">J>hT?GUiVlBA\";i:108;s:13:\">J>hT?GUyVlBA\";i:109;s:13:\">J>hT?GU&VlBA\";i:110;s:13:\">J>hT?GU]VlBA\";i:111;s:13:\">J>hT?GUHWlBA\";i:112;s:13:\">J>hT?GUXWlBA\";i:113;s:13:\">J>hT?GUnWlBA\";i:114;s:14:\">J>hT?GU}j$ACA\";i:115;s:14:\">J>hT?GU~@$ACA\";i:116;s:14:\">J>hT?GU}j%ACA\";i:117;s:14:\">J>hT?GU~@%ACA\";i:118;s:14:\">J>hT?GU}j&ACA\";i:119;s:14:\">J>hT?GU~@&ACA\";i:120;s:14:\">J>hT?GU}j(ACA\";i:121;s:14:\">J>hT?GU~@(ACA\";i:122;s:14:\">J>hT?GU}j)ACA\";i:123;s:14:\">J>hT?GU~@)ACA\";i:124;s:14:\">J>hT?GU}j*ACA\";i:125;s:14:\">J>hT?GU~@*ACA\";i:126;s:14:\">J>hT?GU}j+ACA\";i:127;s:14:\">J>hT?GU~@+ACA\";i:128;s:14:\">J>hT?GU}j,ACA\";i:129;s:14:\">J>hT?GU~@,ACA\";i:130;s:14:\">J>hT?GU}j.ACA\";i:131;s:14:\">J>hT?GU~@.ACA\";i:132;s:14:\">J>hT?GU}j/ACA\";i:133;s:14:\">J>hT?GU~@/ACA\";i:134;s:14:\">J>hT?GU}j:ACA\";i:135;s:14:\">J>hT?GU~@:ACA\";i:136;s:14:\">J>hT?GU}j;ACA\";i:137;s:14:\">J>hT?GU~@;ACA\";i:138;s:14:\">J>hT?GU}jJ>hT?GU~@J>hT?GU}j=ACA\";i:141;s:14:\">J>hT?GU~@=ACA\";i:142;s:14:\">J>hT?GU}j>ACA\";i:143;s:14:\">J>hT?GU~@>ACA\";i:144;s:14:\">J>hT?GU}j?ACA\";i:145;s:14:\">J>hT?GU~@?ACA\";i:146;s:14:\">J>hT?GU}j@ACA\";i:147;s:14:\">J>hT?GU~@@ACA\";i:148;s:14:\">J>hT?GU}j[ACA\";i:149;s:14:\">J>hT?GU~@[ACA\";i:150;s:14:\">J>hT?GU}j]ACA\";i:151;s:14:\">J>hT?GU~@]ACA\";i:152;s:14:\">J>hT?GU}j^ACA\";i:153;s:14:\">J>hT?GU~@^ACA\";i:154;s:14:\">J>hT?GU}j_ACA\";i:155;s:14:\">J>hT?GU~@_ACA\";i:156;s:14:\">J>hT?GU}j`ACA\";i:157;s:14:\">J>hT?GU~@`ACA\";i:158;s:14:\">J>hT?GU}j{ACA\";i:159;s:14:\">J>hT?GU~@{ACA\";i:160;s:14:\">J>hT?GU}j|ACA\";i:161;s:14:\">J>hT?GU~@|ACA\";i:162;s:14:\">J>hT?GU}j}ACA\";i:163;s:14:\">J>hT?GU~@}ACA\";i:164;s:14:\">J>hT?GU}j~AEA\";i:165;s:14:\">J>hT?GU~@~AEA\";i:166;s:14:\">J>hT?GU}j\"AEA\";i:167;s:14:\">J>hT?GU~@\"AEA\";i:168;s:14:\">J>hT?GU}jABEA\";i:169;s:14:\">J>hT?GU~@ABEA\";i:170;s:14:\">J>hT?GU}jBBEA\";i:171;s:14:\">J>hT?GU~@BBEA\";i:172;s:14:\">J>hT?GU}jCBEA\";i:173;s:14:\">J>hT?GU~@CBEA\";i:174;s:14:\">J>hT?GU}jDBEA\";i:175;s:14:\">J>hT?GU~@DBEA\";i:176;s:14:\">J>hT?GU}jEBEA\";i:177;s:14:\">J>hT?GU~@EBEA\";i:178;s:14:\">J>hT?GU}jFBEA\";i:179;s:14:\">J>hT?GU~@FBEA\";i:180;s:14:\">J>hT?GU}jGBEA\";i:181;s:14:\">J>hT?GU~@GBEA\";i:182;s:14:\">J>hT?GU}jHBEA\";i:183;s:14:\">J>hT?GU~@HBEA\";i:184;s:14:\">J>hT?GU}jIBEA\";i:185;s:14:\">J>hT?GU~@IBEA\";i:186;s:14:\">J>hT?GU}jJBEA\";i:187;s:14:\">J>hT?GU~@JBEA\";i:188;s:14:\">J>hT?GU}jKBEA\";i:189;s:14:\">J>hT?GU~@KBEA\";i:190;s:14:\">J>hT?GU}jLBEA\";i:191;s:14:\">J>hT?GU~@LBEA\";i:192;s:14:\">J>hT?GU}jMBEA\";i:193;s:14:\">J>hT?GU~@MBEA\";i:194;s:14:\">J>hT?GU}jNBEA\";i:195;s:14:\">J>hT?GU~@NBEA\";i:196;s:14:\">J>hT?GU}jOBEA\";i:197;s:14:\">J>hT?GU~@OBEA\";i:198;s:14:\">J>hT?GU}jPBEA\";i:199;s:14:\">J>hT?GU~@PBEA\";i:200;s:14:\">J>hT?GU}jQBEA\";i:201;s:14:\">J>hT?GU~@QBEA\";i:202;s:14:\">J>hT?GU}jRBEA\";i:203;s:14:\">J>hT?GU~@RBEA\";i:204;s:14:\">J>hT?GU}jSBEA\";i:205;s:14:\">J>hT?GU~@SBEA\";i:206;s:14:\">J>hT?GU}jTBEA\";i:207;s:14:\">J>hT?GU~@TBEA\";i:208;s:14:\">J>hT?GU}jUBEA\";i:209;s:14:\">J>hT?GU~@UBEA\";i:210;s:14:\">J>hT?GU}jVBEA\";i:211;s:14:\">J>hT?GU~@VBEA\";i:212;s:14:\">J>hT?GU}jWBEA\";i:213;s:14:\">J>hT?GU~@WBEA\";i:214;s:14:\">J>hT?GU}jXBEA\";i:215;s:14:\">J>hT?GU~@XBEA\";i:216;s:14:\">J>hT?GU}jYBEA\";i:217;s:14:\">J>hT?GU~@YBEA\";i:218;s:14:\">J>hT?GU}jZBEA\";i:219;s:14:\">J>hT?GU~@ZBEA\";i:220;s:14:\">J>hT?GU}jaBEA\";i:221;s:14:\">J>hT?GU~@aBEA\";i:222;s:14:\">J>hT?GU}jbBEA\";i:223;s:14:\">J>hT?GU~@bBEA\";i:224;s:14:\">J>hT?GU}jcBEA\";i:225;s:14:\">J>hT?GU~@cBEA\";i:226;s:14:\">J>hT?GU}jdBEA\";i:227;s:14:\">J>hT?GU~@dBEA\";i:228;s:14:\">J>hT?GU}jeBEA\";i:229;s:14:\">J>hT?GU~@eBEA\";i:230;s:14:\">J>hT?GU}jfBEA\";i:231;s:14:\">J>hT?GU~@fBEA\";i:232;s:14:\">J>hT?GU}jgBEA\";i:233;s:14:\">J>hT?GU~@gBEA\";i:234;s:14:\">J>hT?GU}jhBEA\";i:235;s:14:\">J>hT?GU~@hBEA\";i:236;s:14:\">J>hT?GU}jiBEA\";i:237;s:14:\">J>hT?GU~@iBEA\";i:238;s:14:\">J>hT?GU}jjBEA\";i:239;s:14:\">J>hT?GU~@jBEA\";i:240;s:14:\">J>hT?GU}jkBEA\";i:241;s:14:\">J>hT?GU~@kBEA\";i:242;s:15:\">J>hT?GUO[AA5FA\";i:243;s:15:\">J>hT?GUO[lBXLA\";i:244;s:15:\">J>hT?GUO[:CXLA\";i:245;s:15:\">J>hT?GUO[UEXLA\";i:246;s:15:\">J>hT?GUO[5FXLA\";i:247;s:15:\">J>hT?GUO[DHXLA\";i:248;s:15:\">J>hT?GUO[oIXLA\";i:249;s:15:\">J>hT?GUO[=JXLA\";i:250;s:15:\">J>hT?GUO[XLXLA\";i:251;s:15:\">J>hT?GUO[8MXLA\";i:252;s:15:\">J>hT?GUO[GOXLA\";i:253;s:15:\">J>hT?GUO[rPXLA\";i:254;s:15:\">J>hT?GUO[@QXLA\";i:255;s:15:\">J>hT?GUO[aSXLA\";i:256;s:15:\">J>hT?GUO[#TXLA\";i:257;s:15:\">J>hT?GUO[JVXLA\";i:258;s:15:\">J>hT?GUO[uWXLA\";i:259;s:15:\">J>hT?GUO[^XXLA\";i:260;s:15:\">J>hT?GUO[dZXLA\";i:261;s:15:\">J>hT?GUO[&aXLA\";i:262;s:15:\">J>hT?GUO[McXLA\";i:263;s:15:\">J>hT?GUO[xdXLA\";i:264;s:15:\">J>hT?GUO[{eXLA\";i:265;s:15:\">J>hT?GUO[ggXLA\";i:266;s:15:\">J>hT?GUO[*hXLA\";i:267;s:15:\">J>hT?GUO[PjXLA\";i:268;s:15:\">J>hT?GUO[0kXLA\";i:269;s:15:\">J>hT?GUO[~lXLA\";i:270;s:15:\">J>hT?GUO[jnXLA\";i:271;s:15:\">J>hT?GUO[.oXLA\";i:272;s:15:\">J>hT?GUO[SqXLA\";i:273;s:15:\">J>hT?GUO[3rXLA\";i:274;s:15:\">J>hT?GUO[BtXLA\";i:275;s:15:\">J>hT?GUO[muXLA\";i:276;s:15:\">J>hT?GUO[;vXLA\";i:277;s:15:\">J>hT?GUO[VxXLA\";i:278;s:15:\">J>hT?GUO[6yXLA\";i:279;s:15:\">J>hT?GUO[E0XLA\";i:280;s:15:\">J>hT?GUO[p1XLA\";i:281;s:15:\">J>hT?GUO[>2XLA\";i:282;s:15:\">J>hT?GUO[Y4XLA\";i:283;s:15:\">J>hT?GUO[95XLA\";i:284;s:15:\">J>hT?GUO[H7XLA\";i:285;s:15:\">J>hT?GUO[s8XLA\";i:286;s:15:\">J>hT?GUO[[9XLA\";i:287;s:15:\">J>hT?GUO[b#XLA\";i:288;s:15:\">J>hT?GUO[$$XLA\";i:289;s:15:\">J>hT?GUO[K&XLA\";i:290;s:15:\">J>hT?GUO[v(XLA\";i:291;s:15:\">J>hT?GUO[_)XLA\";i:292;s:15:\">J>hT?GUO[e+XLA\";i:293;s:15:\">J>hT?GUO[(,XLA\";i:294;s:15:\">J>hT?GUO[N/XLA\";i:295;s:15:\">J>hT?GUO[y:XLA\";i:296;s:15:\">J>hT?GUO[|;XLA\";i:297;s:15:\">J>hT?GUO[h=XLA\";i:298;s:15:\">J>hT?GUO[+>XLA\";i:299;s:15:\">J>hT?GUO[Q@XLA\";i:300;s:15:\">J>hT?GUO[1[XLA\";i:301;s:15:\">J>hT?GUO[\"]XLA\";i:302;s:15:\">J>hT?GUO[k_XLA\";i:303;s:15:\">J>hT?GUO[/`XLA\";i:304;s:15:\">J>hT?GUO[T|XLA\";i:305;s:15:\">J>hT?GUO[4}XLA\";i:306;s:15:\">J>hT?GUO[C\"5FA\";i:307;s:15:\">J>hT?GUO[lBYLA\";i:308;s:15:\">J>hT?GUO[:CYLA\";i:309;s:15:\">J>hT?GUO[UEYLA\";i:310;s:15:\">J>hT?GUO[5FYLA\";i:311;s:15:\">J>hT?GUO[DHYLA\";i:312;s:15:\">J>hT?GUO[oIYLA\";i:313;s:15:\">J>hT?GUO[=JYLA\";i:314;s:15:\">J>hT?GUO[XLYLA\";i:315;s:15:\">J>hT?GUO[8MYLA\";i:316;s:15:\">J>hT?GUO[GOYLA\";i:317;s:15:\">J>hT?GUO[rPYLA\";i:318;s:15:\">J>hT?GUO[@QYLA\";i:319;s:15:\">J>hT?GUO[aSYLA\";i:320;s:15:\">J>hT?GUO[#TYLA\";i:321;s:15:\">J>hT?GUO[JVYLA\";i:322;s:15:\">J>hT?GUO[uWYLA\";i:323;s:15:\">J>hT?GUO[^XYLA\";i:324;s:15:\">J>hT?GUO[dZYLA\";i:325;s:15:\">J>hT?GUO[&aYLA\";i:326;s:15:\">J>hT?GUO[McYLA\";i:327;s:15:\">J>hT?GUO[xdYLA\";i:328;s:15:\">J>hT?GUO[{eYLA\";i:329;s:15:\">J>hT?GUO[ggYLA\";i:330;s:15:\">J>hT?GUO[*hYLA\";i:331;s:15:\">J>hT?GUO[PjYLA\";i:332;s:15:\">J>hT?GUO[0kYLA\";i:333;s:15:\">J>hT?GUO[~lYLA\";i:334;s:15:\">J>hT?GUO[jnYLA\";i:335;s:15:\">J>hT?GUO[.oYLA\";i:336;s:15:\">J>hT?GUO[SqYLA\";i:337;s:15:\">J>hT?GUO[3rYLA\";i:338;s:15:\">J>hT?GUO[BtYLA\";i:339;s:15:\">J>hT?GUO[muYLA\";i:340;s:15:\">J>hT?GUO[;vYLA\";i:341;s:15:\">J>hT?GUO[VxYLA\";i:342;s:15:\">J>hT?GUO[6yYLA\";i:343;s:15:\">J>hT?GUO[E0YLA\";i:344;s:15:\">J>hT?GUO[p1YLA\";i:345;s:15:\">J>hT?GUO[>2YLA\";i:346;s:15:\">J>hT?GUO[Y4YLA\";i:347;s:15:\">J>hT?GUO[95YLA\";i:348;s:15:\">J>hT?GUO[H7YLA\";i:349;s:15:\">J>hT?GUO[s8YLA\";i:350;s:15:\">J>hT?GUO[[9YLA\";i:351;s:15:\">J>hT?GUO[b#YLA\";i:352;s:15:\">J>hT?GUO[$$YLA\";i:353;s:15:\">J>hT?GUO[K&YLA\";i:354;s:15:\">J>hT?GUO[v(YLA\";i:355;s:15:\">J>hT?GUO[_)YLA\";i:356;s:15:\">J>hT?GUO[e+YLA\";i:357;s:15:\">J>hT?GUO[(,YLA\";i:358;s:15:\">J>hT?GUO[N/YLA\";i:359;s:15:\">J>hT?GUO[y:YLA\";i:360;s:15:\">J>hT?GUO[|;YLA\";i:361;s:15:\">J>hT?GUO[h=YLA\";i:362;s:15:\">J>hT?GUO[+>YLA\";i:363;s:15:\">J>hT?GUO[Q@YLA\";i:364;s:15:\">J>hT?GUO[1[YLA\";i:365;s:15:\">J>hT?GUO[\"]YLA\";i:366;s:15:\">J>hT?GUO[k_YLA\";i:367;s:15:\">J>hT?GUO[/`YLA\";i:368;s:15:\">J>hT?GUO[T|YLA\";i:369;s:15:\">J>hT?GUO[4}YLA\";i:370;s:15:\">J>hT?GUO[AA6FA\";i:371;s:15:\">J>hT?GUO[lBZLA\";i:372;s:15:\">J>hT?GUO[:CZLA\";i:373;s:15:\">J>hT?GUO[UEZLA\";i:374;s:15:\">J>hT?GUO[5FZLA\";i:375;s:15:\">J>hT?GUO[DHZLA\";i:376;s:15:\">J>hT?GUO[oIZLA\";i:377;s:15:\">J>hT?GUO[=JZLA\";i:378;s:15:\">J>hT?GUO[XLZLA\";i:379;s:15:\">J>hT?GUO[8MZLA\";i:380;s:15:\">J>hT?GUO[GOZLA\";i:381;s:15:\">J>hT?GUO[rPZLA\";i:382;s:15:\">J>hT?GUO[@QZLA\";i:383;s:15:\">J>hT?GUO[aSZLA\";i:384;s:15:\">J>hT?GUO[#TZLA\";i:385;s:15:\">J>hT?GUO[JVZLA\";i:386;s:15:\">J>hT?GUO[uWZLA\";i:387;s:15:\">J>hT?GUO[^XZLA\";i:388;s:15:\">J>hT?GUO[dZZLA\";i:389;s:15:\">J>hT?GUO[&aZLA\";i:390;s:15:\">J>hT?GUO[McZLA\";i:391;s:15:\">J>hT?GUO[xdZLA\";i:392;s:15:\">J>hT?GUO[{eZLA\";i:393;s:15:\">J>hT?GUO[ggZLA\";i:394;s:15:\">J>hT?GUO[*hZLA\";i:395;s:15:\">J>hT?GUO[PjZLA\";i:396;s:15:\">J>hT?GUO[0kZLA\";i:397;s:15:\">J>hT?GUO[~lZLA\";i:398;s:15:\">J>hT?GUO[jnZLA\";i:399;s:15:\">J>hT?GUO[.oZLA\";i:400;s:15:\">J>hT?GUO[SqZLA\";i:401;s:15:\">J>hT?GUO[3rZLA\";i:402;s:15:\">J>hT?GUO[BtZLA\";i:403;s:15:\">J>hT?GUO[muZLA\";i:404;s:15:\">J>hT?GUO[;vZLA\";i:405;s:15:\">J>hT?GUO[VxZLA\";i:406;s:15:\">J>hT?GUO[6yZLA\";i:407;s:15:\">J>hT?GUO[E0ZLA\";i:408;s:15:\">J>hT?GUO[p1ZLA\";i:409;s:15:\">J>hT?GUO[>2ZLA\";i:410;s:15:\">J>hT?GUO[Y4ZLA\";i:411;s:15:\">J>hT?GUO[95ZLA\";i:412;s:15:\">J>hT?GUO[H7ZLA\";i:413;s:15:\">J>hT?GUO[s8ZLA\";i:414;s:15:\">J>hT?GUO[[9ZLA\";i:415;s:15:\">J>hT?GUO[b#ZLA\";i:416;s:15:\">J>hT?GUO[$$ZLA\";i:417;s:15:\">J>hT?GUO[K&ZLA\";i:418;s:15:\">J>hT?GUO[v(ZLA\";i:419;s:15:\">J>hT?GUO[_)ZLA\";i:420;s:15:\">J>hT?GUO[e+ZLA\";i:421;s:15:\">J>hT?GUO[(,ZLA\";i:422;s:15:\">J>hT?GUO[N/ZLA\";i:423;s:15:\">J>hT?GUO[y:ZLA\";i:424;s:15:\">J>hT?GUO[|;ZLA\";i:425;s:15:\">J>hT?GUO[h=ZLA\";i:426;s:15:\">J>hT?GUO[+>ZLA\";i:427;s:15:\">J>hT?GUO[Q@ZLA\";i:428;s:15:\">J>hT?GUO[1[ZLA\";i:429;s:15:\">J>hT?GUO[\"]ZLA\";i:430;s:15:\">J>hT?GUO[k_ZLA\";i:431;s:15:\">J>hT?GUO[/`ZLA\";i:432;s:15:\">J>hT?GUO[T|ZLA\";i:433;s:15:\">J>hT?GUO[4}ZLA\";i:434;s:15:\">J>hT?GUO[C\"6FA\";i:435;s:15:\">J>hT?GUO[lBaLA\";i:436;s:15:\">J>hT?GUO[:CaLA\";i:437;s:15:\">J>hT?GUO[UEaLA\";i:438;s:15:\">J>hT?GUO[5FaLA\";i:439;s:15:\">J>hT?GUO[DHaLA\";i:440;s:15:\">J>hT?GUO[oIaLA\";i:441;s:15:\">J>hT?GUO[=JaLA\";i:442;s:15:\">J>hT?GUO[XLaLA\";i:443;s:15:\">J>hT?GUO[8MaLA\";i:444;s:15:\">J>hT?GUO[GOaLA\";i:445;s:15:\">J>hT?GUO[rPaLA\";i:446;s:15:\">J>hT?GUO[@QaLA\";i:447;s:15:\">J>hT?GUO[aSaLA\";i:448;s:15:\">J>hT?GUO[#TaLA\";i:449;s:15:\">J>hT?GUO[JVaLA\";i:450;s:15:\">J>hT?GUO[uWaLA\";i:451;s:15:\">J>hT?GUO[^XaLA\";i:452;s:15:\">J>hT?GUO[dZaLA\";i:453;s:15:\">J>hT?GUO[&aaLA\";i:454;s:15:\">J>hT?GUO[McaLA\";i:455;s:15:\">J>hT?GUO[xdaLA\";i:456;s:15:\">J>hT?GUO[{eaLA\";i:457;s:15:\">J>hT?GUO[ggaLA\";i:458;s:15:\">J>hT?GUO[*haLA\";i:459;s:15:\">J>hT?GUO[PjaLA\";i:460;s:15:\">J>hT?GUO[0kaLA\";i:461;s:15:\">J>hT?GUO[~laLA\";i:462;s:15:\">J>hT?GUO[jnaLA\";i:463;s:15:\">J>hT?GUO[.oaLA\";i:464;s:15:\">J>hT?GUO[SqaLA\";i:465;s:15:\">J>hT?GUO[3raLA\";i:466;s:15:\">J>hT?GUO[BtaLA\";i:467;s:15:\">J>hT?GUO[muaLA\";i:468;s:15:\">J>hT?GUO[;vaLA\";i:469;s:15:\">J>hT?GUO[VxaLA\";i:470;s:15:\">J>hT?GUO[6yaLA\";i:471;s:15:\">J>hT?GUO[E0aLA\";i:472;s:15:\">J>hT?GUO[p1aLA\";i:473;s:15:\">J>hT?GUO[>2aLA\";i:474;s:15:\">J>hT?GUO[Y4aLA\";i:475;s:15:\">J>hT?GUO[95aLA\";i:476;s:15:\">J>hT?GUO[H7aLA\";i:477;s:15:\">J>hT?GUO[s8aLA\";i:478;s:15:\">J>hT?GUO[[9aLA\";i:479;s:15:\">J>hT?GUO[b#aLA\";i:480;s:15:\">J>hT?GUO[$$aLA\";i:481;s:15:\">J>hT?GUO[K&aLA\";i:482;s:15:\">J>hT?GUO[v(aLA\";i:483;s:15:\">J>hT?GUO[_)aLA\";i:484;s:15:\">J>hT?GUO[e+aLA\";i:485;s:15:\">J>hT?GUO[(,aLA\";i:486;s:15:\">J>hT?GUO[N/aLA\";i:487;s:15:\">J>hT?GUO[y:aLA\";i:488;s:15:\">J>hT?GUO[|;aLA\";i:489;s:15:\">J>hT?GUO[h=aLA\";i:490;s:15:\">J>hT?GUO[+>aLA\";i:491;s:15:\">J>hT?GUO[Q@aLA\";i:492;s:15:\">J>hT?GUO[1[aLA\";i:493;s:15:\">J>hT?GUO[\"]aLA\";i:494;s:15:\">J>hT?GUO[k_aLA\";i:495;s:15:\">J>hT?GUO[/`aLA\";i:496;s:15:\">J>hT?GUO[T|aLA\";i:497;s:15:\">J>hT?GUO[4}aLA\";i:498;s:15:\">J>hT?GUNkBA5FA\";i:499;s:15:\">J>hT?GUNkmBXLA\";i:500;s:15:\">J>hT?GUNk;CXLA\";i:501;s:15:\">J>hT?GUNkVEXLA\";i:502;s:15:\">J>hT?GUNk6FXLA\";i:503;s:15:\">J>hT?GUNkEHXLA\";i:504;s:15:\">J>hT?GUNkpIXLA\";i:505;s:15:\">J>hT?GUNk>JXLA\";i:506;s:15:\">J>hT?GUNkYLXLA\";i:507;s:15:\">J>hT?GUNk9MXLA\";i:508;s:15:\">J>hT?GUNkHOXLA\";i:509;s:15:\">J>hT?GUNksPXLA\";i:510;s:15:\">J>hT?GUNk[QXLA\";i:511;s:15:\">J>hT?GUNkbSXLA\";i:512;s:15:\">J>hT?GUNk$TXLA\";i:513;s:15:\">J>hT?GUNkKVXLA\";i:514;s:15:\">J>hT?GUNkvWXLA\";i:515;s:15:\">J>hT?GUNk_XXLA\";i:516;s:15:\">J>hT?GUNkeZXLA\";i:517;s:15:\">J>hT?GUNk(aXLA\";i:518;s:15:\">J>hT?GUNkNcXLA\";i:519;s:15:\">J>hT?GUNkydXLA\";i:520;s:15:\">J>hT?GUNk|eXLA\";i:521;s:15:\">J>hT?GUNkhgXLA\";i:522;s:15:\">J>hT?GUNk+hXLA\";i:523;s:15:\">J>hT?GUNkQjXLA\";i:524;s:15:\">J>hT?GUNk1kXLA\";i:525;s:15:\">J>hT?GUNk\"lXLA\";i:526;s:15:\">J>hT?GUNkknXLA\";i:527;s:15:\">J>hT?GUNk/oXLA\";i:528;s:15:\">J>hT?GUNkTqXLA\";i:529;s:15:\">J>hT?GUNk4rXLA\";i:530;s:15:\">J>hT?GUNkCtXLA\";i:531;s:15:\">J>hT?GUNknuXLA\";i:532;s:15:\">J>hT?GUNkJ>hT?GUNkWxXLA\";i:534;s:15:\">J>hT?GUNk7yXLA\";i:535;s:15:\">J>hT?GUNkF0XLA\";i:536;s:15:\">J>hT?GUNkq1XLA\";i:537;s:15:\">J>hT?GUNk?2XLA\";i:538;s:15:\">J>hT?GUNkZ4XLA\";i:539;s:15:\">J>hT?GUNk!5XLA\";i:540;s:15:\">J>hT?GUNkI7XLA\";i:541;s:15:\">J>hT?GUNkt8XLA\";i:542;s:15:\">J>hT?GUNk]9XLA\";i:543;s:15:\">J>hT?GUNkc#XLA\";i:544;s:15:\">J>hT?GUNk%$XLA\";i:545;s:15:\">J>hT?GUNkL&XLA\";i:546;s:15:\">J>hT?GUNkw(XLA\";i:547;s:15:\">J>hT?GUNk`)XLA\";i:548;s:15:\">J>hT?GUNkf+XLA\";i:549;s:15:\">J>hT?GUNk),XLA\";i:550;s:15:\">J>hT?GUNkO/XLA\";i:551;s:15:\">J>hT?GUNkz:XLA\";i:552;s:15:\">J>hT?GUNk};XLA\";i:553;s:15:\">J>hT?GUNki=XLA\";i:554;s:15:\">J>hT?GUNk,>XLA\";i:555;s:15:\">J>hT?GUNkR@XLA\";i:556;s:15:\">J>hT?GUNk2[XLA\";i:557;s:15:\">J>hT?GUNkA^XLA\";i:558;s:15:\">J>hT?GUNkl_XLA\";i:559;s:15:\">J>hT?GUNk:`XLA\";i:560;s:15:\">J>hT?GUNkU|XLA\";i:561;s:15:\">J>hT?GUNk5}XLA\";i:562;s:15:\">J>hT?GUNkD\"5FA\";i:563;s:15:\">J>hT?GUNkmBYLA\";i:564;s:15:\">J>hT?GUNk;CYLA\";i:565;s:15:\">J>hT?GUNkVEYLA\";i:566;s:15:\">J>hT?GUNk6FYLA\";i:567;s:15:\">J>hT?GUNkEHYLA\";i:568;s:15:\">J>hT?GUNkpIYLA\";i:569;s:15:\">J>hT?GUNk>JYLA\";i:570;s:15:\">J>hT?GUNkYLYLA\";i:571;s:15:\">J>hT?GUNk9MYLA\";i:572;s:15:\">J>hT?GUNkHOYLA\";i:573;s:15:\">J>hT?GUNksPYLA\";i:574;s:15:\">J>hT?GUNk[QYLA\";i:575;s:15:\">J>hT?GUNkbSYLA\";i:576;s:15:\">J>hT?GUNk$TYLA\";i:577;s:15:\">J>hT?GUNkKVYLA\";i:578;s:15:\">J>hT?GUNkvWYLA\";i:579;s:15:\">J>hT?GUNk_XYLA\";i:580;s:15:\">J>hT?GUNkeZYLA\";i:581;s:15:\">J>hT?GUNk(aYLA\";i:582;s:15:\">J>hT?GUNkNcYLA\";i:583;s:15:\">J>hT?GUNkydYLA\";i:584;s:15:\">J>hT?GUNk|eYLA\";i:585;s:15:\">J>hT?GUNkhgYLA\";i:586;s:15:\">J>hT?GUNk+hYLA\";i:587;s:15:\">J>hT?GUNkQjYLA\";i:588;s:15:\">J>hT?GUNk1kYLA\";i:589;s:15:\">J>hT?GUNk\"lYLA\";i:590;s:15:\">J>hT?GUNkknYLA\";i:591;s:15:\">J>hT?GUNk/oYLA\";i:592;s:15:\">J>hT?GUNkTqYLA\";i:593;s:15:\">J>hT?GUNk4rYLA\";i:594;s:15:\">J>hT?GUNkCtYLA\";i:595;s:15:\">J>hT?GUNknuYLA\";i:596;s:15:\">J>hT?GUNkJ>hT?GUNkWxYLA\";i:598;s:15:\">J>hT?GUNk7yYLA\";i:599;s:15:\">J>hT?GUNkF0YLA\";i:600;s:15:\">J>hT?GUNkq1YLA\";i:601;s:15:\">J>hT?GUNk?2YLA\";i:602;s:15:\">J>hT?GUNkZ4YLA\";i:603;s:15:\">J>hT?GUNk!5YLA\";i:604;s:15:\">J>hT?GUNkI7YLA\";i:605;s:15:\">J>hT?GUNkt8YLA\";i:606;s:15:\">J>hT?GUNk]9YLA\";i:607;s:15:\">J>hT?GUNkc#YLA\";i:608;s:15:\">J>hT?GUNk%$YLA\";i:609;s:15:\">J>hT?GUNkL&YLA\";i:610;s:15:\">J>hT?GUNkw(YLA\";i:611;s:15:\">J>hT?GUNk`)YLA\";i:612;s:15:\">J>hT?GUNkf+YLA\";i:613;s:15:\">J>hT?GUNk),YLA\";i:614;s:15:\">J>hT?GUNkO/YLA\";i:615;s:15:\">J>hT?GUNkz:YLA\";i:616;s:15:\">J>hT?GUNk};YLA\";i:617;s:15:\">J>hT?GUNki=YLA\";i:618;s:15:\">J>hT?GUNk,>YLA\";i:619;s:15:\">J>hT?GUNkR@YLA\";i:620;s:15:\">J>hT?GUNk2[YLA\";i:621;s:15:\">J>hT?GUNkA^YLA\";i:622;s:15:\">J>hT?GUNkl_YLA\";i:623;s:15:\">J>hT?GUNk:`YLA\";i:624;s:15:\">J>hT?GUNkU|YLA\";i:625;s:15:\">J>hT?GUNk5}YLA\";i:626;s:15:\">J>hT?GUNkBA6FA\";i:627;s:15:\">J>hT?GUNkmBZLA\";i:628;s:15:\">J>hT?GUNk;CZLA\";i:629;s:15:\">J>hT?GUNkVEZLA\";i:630;s:15:\">J>hT?GUNk6FZLA\";i:631;s:15:\">J>hT?GUNkEHZLA\";i:632;s:15:\">J>hT?GUNkpIZLA\";i:633;s:15:\">J>hT?GUNk>JZLA\";i:634;s:15:\">J>hT?GUNkYLZLA\";i:635;s:15:\">J>hT?GUNk9MZLA\";i:636;s:15:\">J>hT?GUNkHOZLA\";i:637;s:15:\">J>hT?GUNksPZLA\";i:638;s:15:\">J>hT?GUNk[QZLA\";i:639;s:15:\">J>hT?GUNkbSZLA\";i:640;s:15:\">J>hT?GUNk$TZLA\";i:641;s:15:\">J>hT?GUNkKVZLA\";i:642;s:15:\">J>hT?GUNkvWZLA\";i:643;s:15:\">J>hT?GUNk_XZLA\";i:644;s:15:\">J>hT?GUNkeZZLA\";i:645;s:15:\">J>hT?GUNk(aZLA\";i:646;s:15:\">J>hT?GUNkNcZLA\";i:647;s:15:\">J>hT?GUNkNcZLA\";i:648;s:15:\">J>hT?GUNkNcZLA\";i:649;s:15:\">J>hT?GUNkydZLA\";i:650;s:15:\">J>hT?GUNkydZLA\";i:651;s:15:\">J>hT?GUNk|eZLA\";i:652;s:15:\">J>hT?GUNkhgZLA\";i:653;s:15:\">J>hT?GUNk+hZLA\";i:654;s:15:\">J>hT?GUNkQjZLA\";i:655;s:15:\">J>hT?GUNk1kZLA\";i:656;s:15:\">J>hT?GUNk\"lZLA\";i:657;s:15:\">J>hT?GUNkknZLA\";i:658;s:15:\">J>hT?GUNk/oZLA\";i:659;s:15:\">J>hT?GUNkTqZLA\";i:660;s:15:\">J>hT?GUNk4rZLA\";i:661;s:15:\">J>hT?GUNkCtZLA\";i:662;s:15:\">J>hT?GUNknuZLA\";i:663;s:15:\">J>hT?GUNkJ>hT?GUNkWxZLA\";i:665;s:15:\">J>hT?GUNk7yZLA\";i:666;s:15:\">J>hT?GUNkF0ZLA\";i:667;s:15:\">J>hT?GUNkq1ZLA\";i:668;s:15:\">J>hT?GUNk?2ZLA\";i:669;s:15:\">J>hT?GUNkZ4ZLA\";i:670;s:15:\">J>hT?GUNk!5ZLA\";i:671;s:15:\">J>hT?GUNkI7ZLA\";i:672;s:15:\">J>hT?GUNkt8ZLA\";i:673;s:15:\">J>hT?GUNk]9ZLA\";i:674;s:15:\">J>hT?GUNkc#ZLA\";i:675;s:15:\">J>hT?GUNk%$ZLA\";i:676;s:15:\">J>hT?GUNkL&ZLA\";i:677;s:15:\">J>hT?GUNkw(ZLA\";i:678;s:15:\">J>hT?GUNk`)ZLA\";i:679;s:15:\">J>hT?GUNk`)ZLA\";i:680;s:15:\">J>hT?GUNkf+ZLA\";i:681;s:15:\">J>hT?GUNk),ZLA\";i:682;s:15:\">J>hT?GUNkO/ZLA\";i:683;s:15:\">J>hT?GUNkz:ZLA\";i:684;s:15:\">J>hT?GUNk};ZLA\";i:685;s:15:\">J>hT?GUNki=ZLA\";i:686;s:15:\">J>hT?GUNk,>ZLA\";i:687;s:15:\">J>hT?GUNkR@ZLA\";i:688;s:15:\">J>hT?GUNkR@ZLA\";i:689;s:15:\">J>hT?GUNkR@ZLA\";i:690;s:15:\">J>hT?GUNk2[ZLA\";i:691;s:15:\">J>hT?GUNk2[ZLA\";i:692;s:15:\">J>hT?GUNkA^ZLA\";i:693;s:15:\">J>hT?GUNkA^ZLA\";i:694;s:15:\">J>hT?GUNkl_ZLA\";i:695;s:15:\">J>hT?GUNkl_ZLA\";i:696;s:15:\">J>hT?GUNk:`ZLA\";i:697;s:15:\">J>hT?GUNkU|ZLA\";i:698;s:15:\">J>hT?GUNkU|ZLA\";i:699;s:15:\">J>hT?GUNk5}ZLA\";i:700;s:15:\">J>hT?GUNk5}ZLA\";i:701;s:15:\">J>hT?GUNkD\"6FA\";i:702;s:15:\">J>hT?GUNkmBaLA\";i:703;s:15:\">J>hT?GUNk;CaLA\";i:704;s:15:\">J>hT?GUNkVEaLA\";i:705;s:15:\">J>hT?GUNk6FaLA\";i:706;s:15:\">J>hT?GUNkEHaLA\";i:707;s:15:\">J>hT?GUNkpIaLA\";i:708;s:15:\">J>hT?GUNk>JaLA\";i:709;s:15:\">J>hT?GUNkYLaLA\";i:710;s:15:\">J>hT?GUNk9MaLA\";i:711;s:15:\">J>hT?GUNkHOaLA\";i:712;s:15:\">J>hT?GUNksPaLA\";i:713;s:15:\">J>hT?GUNk[QaLA\";i:714;s:15:\">J>hT?GUNkbSaLA\";i:715;s:15:\">J>hT?GUNk$TaLA\";i:716;s:15:\">J>hT?GUNkKVaLA\";i:717;s:15:\">J>hT?GUNkvWaLA\";i:718;s:15:\">J>hT?GUNk_XaLA\";i:719;s:15:\">J>hT?GUNkeZaLA\";i:720;s:15:\">J>hT?GUNk(aaLA\";i:721;s:15:\">J>hT?GUNkNcaLA\";i:722;s:15:\">J>hT?GUNkydaLA\";i:723;s:15:\">J>hT?GUNk|eaLA\";i:724;s:15:\">J>hT?GUNkhgaLA\";i:725;s:15:\">J>hT?GUNk+haLA\";i:726;s:15:\">J>hT?GUNkQjaLA\";i:727;s:15:\">J>hT?GUNk1kaLA\";i:728;s:15:\">J>hT?GUNk\"laLA\";i:729;s:15:\">J>hT?GUNkknaLA\";i:730;s:15:\">J>hT?GUNk/oaLA\";i:731;s:15:\">J>hT?GUNkTqaLA\";i:732;s:15:\">J>hT?GUNk4raLA\";i:733;s:15:\">J>hT?GUNkCtaLA\";i:734;s:15:\">J>hT?GUNknuaLA\";i:735;s:15:\">J>hT?GUNkJ>hT?GUNkWxaLA\";i:737;s:15:\"R@=hT?GUNk7yeLA\";i:738;s:15:\">J>hT?GUNkF0aLA\";i:739;s:26:\"S@=hT?GUNkq1aLyKVElg*NzAIA\";i:740;s:13:\">J>hT?GUXGlBA\";i:741;s:13:\">J>hT?GUnGlBA\";i:742;s:13:\">J>hT?GU3GlBA\";i:743;s:13:\">J>hT?GU,GlBA\";i:744;s:13:\">J>hT?GU|GlBA\";i:745;s:13:\">J>hT?GUMHlBA\";i:746;s:15:\">J>hT?GUNkNcYLA\";i:747;s:15:\">J>hT?GUNkydYLA\";i:748;s:15:\">J>hT?GUNk|eYLA\";i:749;s:15:\">J>hT?GUNk?2aLA\";i:750;s:15:\">J>hT?GUNkZ4aLA\";i:751;s:15:\">J>hT?GUNk!5aLA\";i:752;s:15:\">J>hT?GUNkI7aLA\";i:753;s:13:\">J>hT?GUcHlBA\";i:754;s:15:\">J>hT?GUNkt8aLA\";i:755;s:13:\">J>hT?GUsHlBA\";i:756;s:13:\">J>hT?GU8HlBA\";i:757;s:13:\">J>hT?GUJ>hT?GUBIlBA\";i:759;s:13:\">J>hT?GURIlBA\";i:760;s:13:\">J>hT?GUhIlBA\";i:761;s:15:\">J>hT?GUNkhgYLA\";i:762;s:13:\">J>hT?GUxIlBA\";i:763;s:13:\">J>hT?GU%IlBA\";i:764;s:15:\">J>hT?GUNk+hYLA\";i:765;s:15:\">J>hT?GUNkQjYLA\";i:766;s:15:\">J>hT?GUNk1kYLA\";i:767;s:15:\">J>hT?GUNk\"lYLA\";i:768;s:15:\">J>hT?GUNk]9aLA\";i:769;s:15:\">J>hT?GUNkc#aLA\";i:770;s:15:\">J>hT?GUNk%$aLA\";i:771;s:13:\">J>hT?GU[IlBA\";i:772;s:13:\">J>hT?GUGJlBA\";i:773;s:13:\">J>hT?GUWJlBA\";i:774;s:15:\">J>hT?GUNkknYLA\";i:775;s:15:\">J>hT?GUNk/oYLA\";i:776;s:15:\">J>hT?GUNkTqYLA\";i:777;s:15:\">J>hT?GUNkL&aLA\";i:778;s:15:\">J>hT?GUNkw(aLA\";i:779;s:15:\">J>hT?GUNk`)aLA\";i:780;s:15:\">J>hT?GUNkf+aLA\";i:781;s:15:\">J>hT?GUNk),aLA\";i:782;s:13:\">J>hT?GUmJlBA\";i:783;s:13:\">J>hT?GU2JlBA\";i:784;s:13:\">J>hT?GU+JlBA\";i:785;s:15:\">J>hT?GUNkO/aLA\";i:786;s:13:\">J>hT?GU{JlBA\";i:787;s:13:\">J>hT?GULKlBA\";i:788;s:13:\">J>hT?GUbKlBA\";i:789;s:13:\">J>hT?GUrKlBA\";i:790;s:13:\">J>hT?GU7KlBA\";i:791;s:13:\">J>hT?GU;KlBA\";i:792;s:13:\">J>hT?GUALlBA\";i:793;s:15:\">J>hT?GUNk4rYLA\";i:794;s:13:\">J>hT?GUQLlBA\";i:795;s:13:\">J>hT?GUgLlBA\";i:796;s:15:\">J>hT?GUNkCtYLA\";i:797;s:15:\">J>hT?GUNknuYLA\";i:798;s:15:\">J>hT?GUNkz:aLA\";i:799;s:15:\">J>hT?GUNk};aLA\";i:800;s:13:\">J>hT?GUwLlBA\";i:801;s:15:\">J>hT?GUNki=aLA\";i:802;s:15:\">J>hT?GUNk,>aLA\";i:803;s:15:\">J>hT?GUNkR@aLA\";i:804;s:15:\">J>hT?GUNk2[aLA\";i:805;s:15:\">J>hT?GUNkA^aLA\";i:806;s:15:\">J>hT?GUNkl_aLA\";i:807;s:13:\">J>hT?GU$LlBA\";i:808;s:15:\">J>hT?GUNk:`aLA\";i:809;s:13:\">J>hT?GU@LlBA\";i:810;s:15:\">J>hT?GUNkU|aLA\";i:811;s:13:\">J>hT?GUFMlBA\";i:812;s:15:\">J>hT?GUNkJ>hT?GUNk5}aLA\";i:814;s:15:\">J>hT?GUO[BA5FA\";i:815;s:15:\">J>hT?GUO[mBXLA\";i:816;s:13:\">J>hT?GUVMlBA\";i:817;s:13:\">J>hT?GUlMlBA\";i:818;s:15:\">J>hT?GUO[;CXLA\";i:819;s:15:\">J>hT?GUO[VEXLA\";i:820;s:15:\">J>hT?GUO[6FXLA\";i:821;s:15:\">J>hT?GUO[EHXLA\";i:822;s:13:\">J>hT?GU1MlBA\";i:823;s:13:\">J>hT?GU*MlBA\";i:824;s:15:\">J>hT?GUO[pIXLA\";i:825;s:15:\">J>hT?GUO[>JXLA\";i:826;s:15:\">J>hT?GUO[YLXLA\";i:827;s:15:\">J>hT?GUO[9MXLA\";i:828;s:15:\">J>hT?GUO[HOXLA\";i:829;s:15:\">J>hT?GUO[sPXLA\";i:830;s:15:\">J>hT?GUO[[QXLA\";i:831;s:15:\">J>hT?GUO[bSXLA\";i:832;s:15:\">J>hT?GUO[$TXLA\";i:833;s:15:\">J>hT?GUO[KVXLA\";i:834;s:15:\">J>hT?GUO[vWXLA\";i:835;s:15:\">J>hT?GUNkWxYLA\";i:836;s:15:\">J>hT?GUNk7yYLA\";i:837;s:15:\">J>hT?GUNkF0YLA\";i:838;s:15:\">J>hT?GUNkq1YLA\";i:839;s:15:\">J>hT?GUNk?2YLA\";i:840;s:15:\">J>hT?GUNkZ4YLA\";i:841;s:15:\">J>hT?GUO[_XXLA\";i:842;s:15:\">J>hT?GUO[eZXLA\";i:843;s:15:\">J>hT?GUO[(aXLA\";i:844;s:15:\">J>hT?GUO[NcXLA\";i:845;s:15:\">J>hT?GUO[ydXLA\";i:846;s:15:\">J>hT?GUO[|eXLA\";i:847;s:15:\">J>hT?GUO[hgXLA\";i:848;s:15:\">J>hT?GUO[+hXLA\";i:849;s:15:\">J>hT?GUO[QjXLA\";i:850;s:15:\">J>hT?GUO[1kXLA\";i:851;s:15:\">J>hT?GUO[\"lXLA\";i:852;s:15:\">J>hT?GUNk!5YLA\";i:853;s:15:\">J>hT?GUNkI7YLA\";i:854;s:15:\">J>hT?GUNkt8YLA\";i:855;s:15:\">J>hT?GUNk]9YLA\";i:856;s:15:\">J>hT?GUO[knXLA\";i:857;s:15:\">J>hT?GUNkc#YLA\";i:858;s:15:\">J>hT?GUO[/oXLA\";i:859;s:15:\">J>hT?GUO[TqXLA\";i:860;s:15:\">J>hT?GUO[4rXLA\";i:861;s:15:\">J>hT?GUO[CtXLA\";i:862;s:15:\">J>hT?GUO[nuXLA\";i:863;s:15:\">J>hT?GUO[J>hT?GUO[WxXLA\";i:865;s:15:\">J>hT?GUO[7yXLA\";i:866;s:15:\">J>hT?GUO[F0XLA\";i:867;s:15:\">J>hT?GUO[q1XLA\";i:868;s:15:\">J>hT?GUO[?2XLA\";i:869;s:15:\">J>hT?GUO[Z4XLA\";i:870;s:15:\">J>hT?GUO[!5XLA\";i:871;s:15:\">J>hT?GUO[I7XLA\";i:872;s:15:\">J>hT?GUO[t8XLA\";i:873;s:15:\">J>hT?GUO[]9XLA\";i:874;s:15:\">J>hT?GUO[c#XLA\";i:875;s:15:\">J>hT?GUO[%$XLA\";i:876;s:15:\">J>hT?GUO[L&XLA\";i:877;s:15:\">J>hT?GUO[w(XLA\";i:878;s:15:\">J>hT?GUO[`)XLA\";i:879;s:15:\">J>hT?GUO[f+XLA\";i:880;s:15:\">J>hT?GUNkL&YLA\";i:881;s:15:\">J>hT?GUO[),XLA\";i:882;s:15:\">J>hT?GUO[O/XLA\";i:883;s:15:\">J>hT?GUO[z:XLA\";i:884;s:15:\">J>hT?GUO[};XLA\";i:885;s:15:\">J>hT?GUO[i=XLA\";i:886;s:15:\">J>hT?GUO[,>XLA\";i:887;s:15:\">J>hT?GUO[R@XLA\";i:888;s:15:\">J>hT?GUO[2[XLA\";i:889;s:15:\">J>hT?GUO[A^XLA\";i:890;s:15:\">J>hT?GUO[l_XLA\";i:891;s:15:\">J>hT?GUO[:`XLA\";i:892;s:15:\">J>hT?GUO[U|XLA\";i:893;s:15:\">J>hT?GUO[5}XLA\";i:894;s:15:\">J>hT?GUO[D\"5FA\";i:895;s:15:\">J>hT?GUNk%$YLA\";i:896;s:15:\">J>hT?GUO[mBYLA\";i:897;s:15:\">J>hT?GUO[;CYLA\";i:898;s:15:\">J>hT?GUO[VEYLA\";i:899;s:15:\">J>hT?GUO[6FYLA\";i:900;s:15:\">J>hT?GUO[EHYLA\";i:901;s:15:\">J>hT?GUO[pIYLA\";i:902;s:15:\">J>hT?GUO[>JYLA\";i:903;s:15:\">J>hT?GUO[YLYLA\";i:904;s:15:\">J>hT?GUO[9MYLA\";i:905;s:15:\">J>hT?GUO[HOYLA\";i:906;s:15:\">J>hT?GUO[sPYLA\";i:907;s:15:\">J>hT?GUO[[QYLA\";i:908;s:97:\"zP=hT?GUO[bSYLIIVElg*NzAJt/\",ub@~R5F`xLvSQ[z#K>G$AADSOYMj<9tnAwW%(k)No|B:ClZzXJI|+QAZL%(k)NoOM:CA\";i:909;s:42:\"Yx=hT?GUO[vWYLeGVElg*NkVWOlB@M.4Fxrj9C/BQA\";i:910;s:15:\"Wx=hT?GUO[(aYLA\";i:911;s:15:\"Wx=hT?GUO[NcYLA\";i:912;s:15:\"Wx=hT?GUO[ydYLA\";i:913;s:15:\"Wx=hT?GUO[|eYLA\";i:914;s:26:\"ou=hT?GUO[hgYL_EVElg*NZAIA\";i:915;s:37:\"Bm=hT?GU5A$A>CSOYMj<8AWA[Q>hT?GUjClBA\";i:916;s:13:\"!5=hT?GUiFlBA\";i:917;s:64:\"&5=hT?GU4DlBcM.4Fxrj9C|BQA+\",ub@y2ItGt0k_Q3nE31`b#5FrvLvSQ[zMAEA\";i:918;s:15:\"`)=hT?GUO[\"lYLA\";i:919;s:83:\"3d=hT?GUO[knYL?DVElg*NkVgQlB,L.4Fxrj9CGCRtrBJHNzRmhT?GUO[hT?GUO[WxYLmOVElg*NkVlRlBA\";i:930;s:29:\"zd>hT?GUO[7yYLLPVElg*NkV*RlBA\";i:931;s:29:\"zd>hT?GUO[q1YLLPVElg*NkVKSlBA\";i:932;s:29:\"zd>hT?GUO[Z4YLLPVElg*NkVqSlBA\";i:933;s:29:\"zd>hT?GUO[I7YLLPVElg*NkV:SlBA\";i:934;s:29:\"zd>hT?GUO[]9YLLPVElg*NkVPTlBA\";i:935;s:13:\"Qj>hT?GUjClBA\";i:936;s:80:\"(5=hT?GUiFlBrL.4Fxrj9C#BQA+\",ub@y2|QGtJV_Q3nE31`i65FQwLvSQ[z#KbH$AUDSOYMjhT?GUO[w(YLA\";i:941;s:15:\">J>hT?GUO[`)YLA\";i:942;s:15:\">J>hT?GUO[f+YLA\";i:943;s:15:\">J>hT?GUO[),YLA\";i:944;s:15:\">J>hT?GUNkvWZLA\";i:945;s:15:\">J>hT?GUO[O/YLA\";i:946;s:15:\">J>hT?GUO[z:YLA\";i:947;s:15:\">J>hT?GUNk_XZLA\";i:948;s:15:\">J>hT?GUO[};YLA\";i:949;s:15:\">J>hT?GUNkeZZLA\";i:950;s:15:\">J>hT?GUO[i=YLA\";i:951;s:15:\">J>hT?GUO[,>YLA\";i:952;s:15:\">J>hT?GUO[R@YLA\";i:953;s:15:\">J>hT?GUNk(aZLA\";i:954;s:15:\">J>hT?GUNkNcZLA\";i:955;s:15:\">J>hT?GUO[2[YLA\";i:956;s:15:\">J>hT?GUO[A^YLA\";i:957;s:15:\">J>hT?GUO[l_YLA\";i:958;s:15:\">J>hT?GUO[:`YLA\";i:959;s:15:\">J>hT?GUNkydZLA\";i:960;s:15:\">J>hT?GUNk|eZLA\";i:961;s:15:\">J>hT?GUO[U|YLA\";i:962;s:15:\">J>hT?GUNkhgZLA\";i:963;s:15:\">J>hT?GUNk+hZLA\";i:964;s:15:\">J>hT?GUO[5}YLA\";i:965;s:15:\">J>hT?GUO[BA6FA\";i:966;s:15:\">J>hT?GUO[mBZLA\";i:967;s:15:\">J>hT?GUO[;CZLA\";i:968;s:15:\">J>hT?GUO[VEZLA\";i:969;s:15:\">J>hT?GUO[6FZLA\";i:970;s:15:\">J>hT?GUO[EHZLA\";i:971;s:15:\">J>hT?GUO[pIZLA\";i:972;s:15:\">J>hT?GUO[>JZLA\";i:973;s:15:\">J>hT?GUO[YLZLA\";i:974;s:15:\">J>hT?GUO[9MZLA\";i:975;s:15:\">J>hT?GUO[HOZLA\";i:976;s:15:\">J>hT?GUO[sPZLA\";i:977;s:15:\">J>hT?GUO[[QZLA\";i:978;s:15:\">J>hT?GUO[bSZLA\";i:979;s:15:\">J>hT?GUO[$TZLA\";i:980;s:15:\">J>hT?GUO[KVZLA\";i:981;s:15:\">J>hT?GUO[vWZLA\";i:982;s:15:\">J>hT?GUNkQjZLA\";i:983;s:15:\">J>hT?GUO[_XZLA\";i:984;s:15:\">J>hT?GUO[UEXLA\";i:985;s:15:\">J>hT?GUO[eZZLA\";i:986;s:15:\">J>hT?GUO[(aZLA\";i:987;s:15:\">J>hT?GUO[NcZLA\";i:988;s:15:\">J>hT?GUO[ydZLA\";i:989;s:15:\">J>hT?GUO[|eZLA\";i:990;s:15:\">J>hT?GUO[hgZLA\";i:991;s:15:\">J>hT?GUO[+hZLA\";i:992;s:15:\">J>hT?GUO[QjZLA\";i:993;s:15:\">J>hT?GUO[1kZLA\";i:994;s:15:\">J>hT?GUO[\"lZLA\";i:995;s:15:\">J>hT?GUO[knZLA\";i:996;s:15:\">J>hT?GUO[/oZLA\";i:997;s:15:\">J>hT?GUO[TqZLA\";i:998;s:15:\">J>hT?GUO[4rZLA\";i:999;s:15:\">J>hT?GUO[CtZLA\";i:1000;s:15:\">J>hT?GUO[nuZLA\";i:1001;s:15:\">J>hT?GUO[J>hT?GUO[WxZLA\";i:1003;s:15:\">J>hT?GUO[7yZLA\";i:1004;s:15:\">J>hT?GUO[F0ZLA\";i:1005;s:15:\">J>hT?GUO[DHXLA\";i:1006;s:15:\">J>hT?GUO[q1ZLA\";i:1007;s:15:\">J>hT?GUO[?2ZLA\";i:1008;s:15:\">J>hT?GUO[Z4ZLA\";i:1009;s:15:\">J>hT?GUO[!5ZLA\";i:1010;s:15:\">J>hT?GUO[I7ZLA\";i:1011;s:15:\">J>hT?GUO[t8ZLA\";i:1012;s:15:\">J>hT?GUO[]9ZLA\";i:1013;s:15:\">J>hT?GUO[c#ZLA\";i:1014;s:15:\">J>hT?GUO[%$ZLA\";i:1015;s:15:\">J>hT?GUO[L&ZLA\";i:1016;s:15:\">J>hT?GUO[w(ZLA\";i:1017;s:15:\">J>hT?GUO[`)ZLA\";i:1018;s:15:\">J>hT?GUO[f+ZLA\";i:1019;s:15:\">J>hT?GUO[),ZLA\";i:1020;s:15:\">J>hT?GUO[O/ZLA\";i:1021;s:15:\">J>hT?GUO[z:ZLA\";i:1022;s:15:\">J>hT?GUO[};ZLA\";i:1023;s:15:\">J>hT?GUO[i=ZLA\";i:1024;s:15:\">J>hT?GUO[,>ZLA\";i:1025;s:15:\">J>hT?GUO[R@ZLA\";i:1026;s:15:\">J>hT?GUO[oIXLA\";i:1027;s:15:\">J>hT?GUO[5FXLA\";i:1028;s:15:\">J>hT?GUO[2[ZLA\";i:1029;s:15:\">J>hT?GUO[A^ZLA\";i:1030;s:15:\">J>hT?GUO[l_ZLA\";i:1031;s:15:\">J>hT?GUO[:`ZLA\";i:1032;s:15:\">J>hT?GUO[U|ZLA\";i:1033;s:15:\">J>hT?GUO[5}ZLA\";i:1034;s:15:\">J>hT?GUO[:CXLA\";i:1035;s:15:\">J>hT?GUO[D\"6FA\";i:1036;s:15:\">J>hT?GUO[mBaLA\";i:1037;s:15:\">J>hT?GUO[;CaLA\";i:1038;s:15:\">J>hT?GUO[VEaLA\";i:1039;s:15:\">J>hT?GUO[6FaLA\";i:1040;s:15:\">J>hT?GUO[EHaLA\";i:1041;s:15:\">J>hT?GUO[pIaLA\";i:1042;s:15:\">J>hT?GUO[>JaLA\";i:1043;s:15:\">J>hT?GUO[YLaLA\";i:1044;s:15:\">J>hT?GUO[9MaLA\";i:1045;s:15:\">J>hT?GUO[HOaLA\";i:1046;s:15:\">J>hT?GUO[sPaLA\";i:1047;s:15:\">J>hT?GUO[[QaLA\";i:1048;s:15:\">J>hT?GUO[bSaLA\";i:1049;s:15:\">J>hT?GUO[$TaLA\";i:1050;s:15:\">J>hT?GUO[KVaLA\";i:1051;s:15:\">J>hT?GUO[vWaLA\";i:1052;s:15:\">J>hT?GUO[_XaLA\";i:1053;s:15:\">J>hT?GUO[eZaLA\";i:1054;s:15:\">J>hT?GUO[AA5FA\";i:1055;s:15:\">J>hT?GUO[(aaLA\";i:1056;s:15:\">J>hT?GUO[NcaLA\";i:1057;s:15:\">J>hT?GUO[ydaLA\";i:1058;s:15:\">J>hT?GUO[|eaLA\";i:1059;s:15:\">J>hT?GUO[hgaLA\";i:1060;s:15:\">J>hT?GUO[+haLA\";i:1061;s:15:\">J>hT?GUO[QjaLA\";i:1062;s:15:\">J>hT?GUO[1kaLA\";i:1063;s:15:\">J>hT?GUO[\"laLA\";i:1064;s:15:\">J>hT?GUO[knaLA\";i:1065;s:15:\">J>hT?GUO[/oaLA\";i:1066;s:15:\">J>hT?GUO[TqaLA\";i:1067;s:15:\">J>hT?GUO[4raLA\";i:1068;s:15:\">J>hT?GUNk1kZLA\";i:1069;s:15:\">J>hT?GUNk\"lZLA\";i:1070;s:15:\">J>hT?GUO[CtaLA\";i:1071;s:15:\">J>hT?GUNkknZLA\";i:1072;s:15:\">J>hT?GUO[nuaLA\";i:1073;s:15:\">J>hT?GUO[J>hT?GUO[WxaLA\";i:1075;s:15:\">J>hT?GUO[7yaLA\";i:1076;s:15:\">J>hT?GUO[F0aLA\";i:1077;s:15:\">J>hT?GUO[q1aLA\";i:1078;s:15:\">J>hT?GUO[?2aLA\";i:1079;s:15:\">J>hT?GUO[Z4aLA\";i:1080;s:15:\">J>hT?GUO[!5aLA\";i:1081;s:15:\">J>hT?GUNk/oZLA\";i:1082;s:15:\">J>hT?GUO[I7aLA\";i:1083;s:15:\">J>hT?GUO[t8aLA\";i:1084;s:15:\">J>hT?GUO[]9aLA\";i:1085;s:15:\">J>hT?GUO[c#aLA\";i:1086;s:15:\">J>hT?GUO[%$aLA\";i:1087;s:15:\">J>hT?GUO[L&aLA\";i:1088;s:15:\">J>hT?GUO[w(aLA\";i:1089;s:15:\">J>hT?GUO[`)aLA\";i:1090;s:15:\">J>hT?GUO[f+aLA\";i:1091;s:15:\">J>hT?GUO[),aLA\";i:1092;s:15:\">J>hT?GUO[O/aLA\";i:1093;s:15:\">J>hT?GUO[z:aLA\";i:1094;s:14:\">J>hT?GU}jkBEA\";i:1095;s:14:\">J>hT?GU~@kBEA\";i:1096;s:15:\">J>hT?GUO[};aLA\";i:1097;s:15:\">J>hT?GUO[i=aLA\";i:1098;s:15:\">J>hT?GUO[,>aLA\";i:1099;s:15:\">J>hT?GUO[R@aLA\";i:1100;s:15:\">J>hT?GUO[2[aLA\";i:1101;s:15:\">J>hT?GUO[=JXLA\";i:1102;s:15:\">J>hT?GUO[A^aLA\";i:1103;s:15:\">J>hT?GUO[l_aLA\";i:1104;s:15:\">J>hT?GUO[:`aLA\";i:1105;s:15:\">J>hT?GUO[U|aLA\";i:1106;s:15:\">J>hT?GUO[5}aLA\";i:1107;s:15:\">J>hT?GUNkCA5FA\";i:1108;s:15:\">J>hT?GUNknBXLA\";i:1109;s:15:\">J>hT?GUNkJ>hT?GUNkWEXLA\";i:1111;s:15:\">J>hT?GUNk7FXLA\";i:1112;s:15:\">J>hT?GUNkFHXLA\";i:1113;s:15:\">J>hT?GUNkqIXLA\";i:1114;s:15:\">J>hT?GUNk?JXLA\";i:1115;s:15:\">J>hT?GUNkZLXLA\";i:1116;s:15:\">J>hT?GUNk!MXLA\";i:1117;s:15:\">J>hT?GUNkIOXLA\";i:1118;s:15:\">J>hT?GUNktPXLA\";i:1119;s:15:\">J>hT?GUNk]QXLA\";i:1120;s:15:\">J>hT?GUNkcSXLA\";i:1121;s:15:\">J>hT?GUNk%TXLA\";i:1122;s:15:\">J>hT?GUNkLVXLA\";i:1123;s:15:\">J>hT?GUNkwWXLA\";i:1124;s:15:\">J>hT?GUNk`XXLA\";i:1125;s:15:\">J>hT?GUNkfZXLA\";i:1126;s:15:\">J>hT?GUNk)aXLA\";i:1127;s:15:\">J>hT?GUNkOcXLA\";i:1128;s:15:\">J>hT?GUNkzdXLA\";i:1129;s:15:\">J>hT?GUNk}eXLA\";i:1130;s:15:\">J>hT?GUNkigXLA\";i:1131;s:15:\">J>hT?GUNk,hXLA\";i:1132;s:15:\">J>hT?GUNkRjXLA\";i:1133;s:15:\">J>hT?GUNk2kXLA\";i:1134;s:15:\">J>hT?GUNkAmXLA\";i:1135;s:15:\">J>hT?GUNklnXLA\";i:1136;s:15:\">J>hT?GUNk:oXLA\";i:1137;s:15:\">J>hT?GUNkUqXLA\";i:1138;s:15:\">J>hT?GUNk5rXLA\";i:1139;s:15:\">J>hT?GUNkDtXLA\";i:1140;s:15:\">J>hT?GUNkouXLA\";i:1141;s:15:\">J>hT?GUNk=vXLA\";i:1142;s:15:\">J>hT?GUNkXxXLA\";i:1143;s:15:\">J>hT?GUNk8yXLA\";i:1144;s:15:\">J>hT?GUNkG0XLA\";i:1145;s:15:\">J>hT?GUNkr1XLA\";i:1146;s:15:\">J>hT?GUNk@2XLA\";i:1147;s:15:\">J>hT?GUNka4XLA\";i:1148;s:15:\">J>hT?GUNkTqZLA\";i:1149;s:15:\">J>hT?GUNk#5XLA\";i:1150;s:15:\">J>hT?GUNk4rZLA\";i:1151;s:15:\">J>hT?GUNkJ7XLA\";i:1152;s:15:\">J>hT?GUNku8XLA\";i:1153;s:15:\">J>hT?GUNk^9XLA\";i:1154;s:15:\">J>hT?GUNkCtZLA\";i:1155;s:15:\">J>hT?GUNknuZLA\";i:1156;s:15:\">J>hT?GUNkJ>hT?GUO[lBXLA\";i:1158;s:15:\">J>hT?GUNkWxZLA\";i:1159;s:15:\">J>hT?GUNk7yZLA\";i:1160;s:15:\">J>hT?GUNkF0ZLA\";i:1161;s:15:\">J>hT?GUNkq1ZLA\";i:1162;s:15:\">J>hT?GUNk?2ZLA\";i:1163;s:15:\">J>hT?GUNkZ4ZLA\";i:1164;s:15:\">J>hT?GUNk!5ZLA\";i:1165;s:15:\">J>hT?GUNkd#XLA\";i:1166;s:15:\">J>hT?GUNk&$XLA\";i:1167;s:15:\">J>hT?GUNkM&XLA\";i:1168;s:15:\">J>hT?GUNkx(XLA\";i:1169;s:15:\">J>hT?GUNk{)XLA\";i:1170;s:15:\">J>hT?GUNkg+XLA\";i:1171;s:15:\">J>hT?GUNk*,XLA\";i:1172;s:15:\">J>hT?GUNkP/XLA\";i:1173;s:15:\">J>hT?GUNkI7ZLA\";i:1174;s:15:\">J>hT?GUNkt8ZLA\";i:1175;s:15:\">J>hT?GUNk]9ZLA\";i:1176;s:15:\">J>hT?GUNkc#ZLA\";i:1177;s:15:\">J>hT?GUNk%$ZLA\";i:1178;s:15:\">J>hT?GUNkL&ZLA\";i:1179;s:15:\">J>hT?GUNkw(ZLA\";i:1180;s:15:\">J>hT?GUNk`)ZLA\";i:1181;s:15:\">J>hT?GUNk0:XLA\";i:1182;s:15:\">J>hT?GUNkf+ZLA\";i:1183;s:15:\">J>hT?GUNk),ZLA\";i:1184;s:15:\">J>hT?GUNk~;XLA\";i:1185;s:15:\">J>hT?GUNkj=XLA\";i:1186;s:15:\">J>hT?GUNk.>XLA\";i:1187;s:15:\">J>hT?GUNkS@XLA\";i:1188;s:15:\">J>hT?GUNk3[XLA\";i:1189;s:15:\">J>hT?GUNkB^XLA\";i:1190;s:15:\">J>hT?GUNkm_XLA\";i:1191;s:15:\">J>hT?GUNk;`XLA\";i:1192;s:15:\">J>hT?GUNkV|XLA\";i:1193;s:15:\">J>hT?GUNk6}XLA\";i:1194;s:15:\">J>hT?GUNkE\"5FA\";i:1195;s:15:\">J>hT?GUNknBYLA\";i:1196;s:15:\">J>hT?GUNkJ>hT?GUNkWEYLA\";i:1198;s:15:\">J>hT?GUNk7FYLA\";i:1199;s:15:\">J>hT?GUNkFHYLA\";i:1200;s:15:\">J>hT?GUNkqIYLA\";i:1201;s:15:\">J>hT?GUNk?JYLA\";i:1202;s:15:\">J>hT?GUNkZLYLA\";i:1203;s:15:\">J>hT?GUNk!MYLA\";i:1204;s:15:\">J>hT?GUNkIOYLA\";i:1205;s:15:\">J>hT?GUNktPYLA\";i:1206;s:15:\">J>hT?GUNk]QYLA\";i:1207;s:15:\">J>hT?GUNkcSYLA\";i:1208;s:15:\">J>hT?GUNk%TYLA\";i:1209;s:15:\">J>hT?GUNkLVYLA\";i:1210;s:15:\">J>hT?GUNkwWYLA\";i:1211;s:15:\">J>hT?GUNk`XYLA\";i:1212;s:15:\">J>hT?GUNkfZYLA\";i:1213;s:15:\">J>hT?GUNk)aYLA\";i:1214;s:15:\">J>hT?GUNkOcYLA\";i:1215;s:15:\">J>hT?GUNkzdYLA\";i:1216;s:15:\">J>hT?GUNk}eYLA\";i:1217;s:15:\">J>hT?GUNkigYLA\";i:1218;s:15:\">J>hT?GUNk,hYLA\";i:1219;s:15:\">J>hT?GUNkRjYLA\";i:1220;s:15:\">J>hT?GUNk2kYLA\";i:1221;s:15:\">J>hT?GUNkAmYLA\";i:1222;s:15:\">J>hT?GUNklnYLA\";i:1223;s:15:\">J>hT?GUNk:oYLA\";i:1224;s:15:\">J>hT?GUNkUqYLA\";i:1225;s:15:\">J>hT?GUNk5rYLA\";i:1226;s:15:\">J>hT?GUNkDtYLA\";i:1227;s:15:\">J>hT?GUNkouYLA\";i:1228;s:15:\">J>hT?GUNk=vYLA\";i:1229;s:15:\">J>hT?GUNkXxYLA\";i:1230;s:15:\">J>hT?GUNk8yYLA\";i:1231;s:15:\">J>hT?GUNkG0YLA\";i:1232;s:15:\">J>hT?GUNkr1YLA\";i:1233;s:15:\">J>hT?GUNk@2YLA\";i:1234;s:15:\">J>hT?GUNka4YLA\";i:1235;s:15:\">J>hT?GUNk#5YLA\";i:1236;s:15:\">J>hT?GUNkJ7YLA\";i:1237;s:15:\">J>hT?GUNku8YLA\";i:1238;s:15:\">J>hT?GUNk^9YLA\";i:1239;s:15:\">J>hT?GUNkd#YLA\";i:1240;s:15:\">J>hT?GUNk&$YLA\";i:1241;s:15:\">J>hT?GUNkM&YLA\";i:1242;s:15:\">J>hT?GUNkx(YLA\";i:1243;s:15:\">J>hT?GUNk{)YLA\";i:1244;s:15:\">J>hT?GUNkg+YLA\";i:1245;s:15:\">J>hT?GUNk*,YLA\";i:1246;s:15:\">J>hT?GUNkP/YLA\";i:1247;s:15:\">J>hT?GUNk0:YLA\";i:1248;s:15:\">J>hT?GUNk~;YLA\";i:1249;s:15:\">J>hT?GUNkj=YLA\";i:1250;s:15:\">J>hT?GUNk.>YLA\";i:1251;s:15:\">J>hT?GUNkS@YLA\";i:1252;s:15:\">J>hT?GUNk3[YLA\";i:1253;s:15:\">J>hT?GUNkB^YLA\";i:1254;s:15:\">J>hT?GUNkm_YLA\";i:1255;s:15:\">J>hT?GUNk;`YLA\";i:1256;s:15:\">J>hT?GUNkV|YLA\";i:1257;s:15:\">J>hT?GUNk6}YLA\";i:1258;s:15:\">J>hT?GUNkCA6FA\";i:1259;s:15:\">J>hT?GUNknBZLA\";i:1260;s:15:\">J>hT?GUNkJ>hT?GUNkWEZLA\";i:1262;s:15:\">J>hT?GUNk7FZLA\";i:1263;s:15:\">J>hT?GUNkFHZLA\";i:1264;s:15:\">J>hT?GUNkO/ZLA\";i:1265;s:15:\">J>hT?GUNkqIZLA\";i:1266;s:15:\">J>hT?GUNk?JZLA\";i:1267;s:15:\">J>hT?GUNkZLZLA\";i:1268;s:15:\">J>hT?GUNk!MZLA\";i:1269;s:15:\">J>hT?GUNkIOZLA\";i:1270;s:15:\">J>hT?GUNktPZLA\";i:1271;s:15:\">J>hT?GUNk]QZLA\";i:1272;s:15:\">J>hT?GUNkcSZLA\";i:1273;s:15:\">J>hT?GUNk%TZLA\";i:1274;s:15:\">J>hT?GUNkLVZLA\";i:1275;s:15:\">J>hT?GUNkwWZLA\";i:1276;s:15:\">J>hT?GUNk`XZLA\";i:1277;s:15:\">J>hT?GUNkfZZLA\";i:1278;s:15:\">J>hT?GUNk)aZLA\";i:1279;s:15:\">J>hT?GUNkOcZLA\";i:1280;s:15:\">J>hT?GUNkzdZLA\";i:1281;s:15:\">J>hT?GUNk}eZLA\";i:1282;s:15:\">J>hT?GUNkigZLA\";i:1283;s:15:\">J>hT?GUNk,hZLA\";i:1284;s:15:\">J>hT?GUNkRjZLA\";i:1285;s:15:\">J>hT?GUNk2kZLA\";i:1286;s:15:\">J>hT?GUNkAmZLA\";i:1287;s:15:\">J>hT?GUNklnZLA\";i:1288;s:15:\">J>hT?GUNk:oZLA\";i:1289;s:15:\">J>hT?GUNkUqZLA\";i:1290;s:15:\">J>hT?GUNk5rZLA\";i:1291;s:15:\">J>hT?GUNkDtZLA\";i:1292;s:15:\">J>hT?GUNkouZLA\";i:1293;s:15:\">J>hT?GUNk=vZLA\";i:1294;s:15:\">J>hT?GUNkXxZLA\";i:1295;s:15:\">J>hT?GUNk8yZLA\";i:1296;s:15:\">J>hT?GUNkG0ZLA\";i:1297;s:15:\">J>hT?GUNkr1ZLA\";i:1298;s:15:\">J>hT?GUNk@2ZLA\";i:1299;s:15:\">J>hT?GUNka4ZLA\";i:1300;s:15:\">J>hT?GUNk#5ZLA\";i:1301;s:15:\">J>hT?GUNkJ7ZLA\";i:1302;s:15:\">J>hT?GUNku8ZLA\";i:1303;s:15:\">J>hT?GUNk^9ZLA\";i:1304;s:15:\">J>hT?GUNkd#ZLA\";i:1305;s:15:\">J>hT?GUNk&$ZLA\";i:1306;s:15:\">J>hT?GUNkM&ZLA\";i:1307;s:15:\">J>hT?GUNkx(ZLA\";i:1308;s:15:\">J>hT?GUNk{)ZLA\";i:1309;s:15:\">J>hT?GUNkg+ZLA\";i:1310;s:15:\">J>hT?GUNk*,ZLA\";i:1311;s:15:\">J>hT?GUNkP/ZLA\";i:1312;s:15:\">J>hT?GUNk0:ZLA\";i:1313;s:15:\">J>hT?GUNk~;ZLA\";i:1314;s:15:\">J>hT?GUNkj=ZLA\";i:1315;s:15:\">J>hT?GUNk.>ZLA\";i:1316;s:15:\">J>hT?GUNkS@ZLA\";i:1317;s:15:\">J>hT?GUNk3[ZLA\";i:1318;s:15:\">J>hT?GUNkB^ZLA\";i:1319;s:15:\">J>hT?GUNkm_ZLA\";i:1320;s:15:\">J>hT?GUNk;`ZLA\";i:1321;s:15:\">J>hT?GUNkV|ZLA\";i:1322;s:15:\">J>hT?GUNk6}ZLA\";i:1323;s:15:\">J>hT?GUNkE\"6FA\";i:1324;s:15:\">J>hT?GUNknBaLA\";i:1325;s:15:\">J>hT?GUNkJ>hT?GUNkWEaLA\";i:1327;s:15:\">J>hT?GUNk7FaLA\";i:1328;s:15:\">J>hT?GUNkFHaLA\";i:1329;s:15:\">J>hT?GUNkqIaLA\";i:1330;s:15:\">J>hT?GUNk?JaLA\";i:1331;s:15:\">J>hT?GUNkZLaLA\";i:1332;s:15:\">J>hT?GUNk!MaLA\";i:1333;s:15:\">J>hT?GUNkIOaLA\";i:1334;s:15:\">J>hT?GUNktPaLA\";i:1335;s:15:\">J>hT?GUNk]QaLA\";i:1336;s:15:\">J>hT?GUNkcSaLA\";i:1337;s:15:\">J>hT?GUNk%TaLA\";i:1338;s:15:\">J>hT?GUNkLVaLA\";i:1339;s:15:\">J>hT?GUNkwWaLA\";i:1340;s:15:\">J>hT?GUNk`XaLA\";i:1341;s:15:\">J>hT?GUNkfZaLA\";i:1342;s:15:\">J>hT?GUNk)aaLA\";i:1343;s:15:\">J>hT?GUNkOcaLA\";i:1344;s:15:\">J>hT?GUNkzdaLA\";i:1345;s:15:\">J>hT?GUNk}eaLA\";i:1346;s:15:\">J>hT?GUNkigaLA\";i:1347;s:15:\">J>hT?GUNk,haLA\";i:1348;s:15:\">J>hT?GUNkz:ZLA\";i:1349;s:15:\">J>hT?GUNk};ZLA\";i:1350;s:15:\">J>hT?GUNki=ZLA\";i:1351;s:15:\">J>hT?GUNk,>ZLA\";i:1352;s:15:\">J>hT?GUNkR@ZLA\";i:1353;s:15:\">J>hT?GUNk2[ZLA\";i:1354;s:15:\">J>hT?GUNkA^ZLA\";i:1355;s:15:\">J>hT?GUNkl_ZLA\";i:1356;s:15:\">J>hT?GUNk:`ZLA\";i:1357;s:15:\">J>hT?GUNkRjaLA\";i:1358;s:15:\">J>hT?GUNk2kaLA\";i:1359;s:15:\">J>hT?GUNkAmaLA\";i:1360;s:15:\">J>hT?GUNklnaLA\";i:1361;s:15:\">J>hT?GUNk:oaLA\";i:1362;s:15:\">J>hT?GUNkUqaLA\";i:1363;s:15:\">J>hT?GUNk5raLA\";i:1364;s:15:\">J>hT?GUNkDtaLA\";i:1365;s:15:\">J>hT?GUNkouaLA\";i:1366;s:15:\">J>hT?GUNk=vaLA\";i:1367;s:15:\">J>hT?GUNkXxaLA\";i:1368;s:15:\">J>hT?GUNk8yaLA\";i:1369;s:15:\">J>hT?GUNkG0aLA\";i:1370;s:15:\">J>hT?GUNkr1aLA\";i:1371;s:15:\">J>hT?GUNkU|ZLA\";i:1372;s:15:\">J>hT?GUNk@2aLA\";i:1373;s:15:\">J>hT?GUNka4aLA\";i:1374;s:15:\">J>hT?GUNk#5aLA\";i:1375;s:15:\">J>hT?GUNkJ7aLA\";i:1376;s:15:\">J>hT?GUNku8aLA\";i:1377;s:15:\">J>hT?GUNk^9aLA\";i:1378;s:15:\">J>hT?GUNkd#aLA\";i:1379;s:15:\">J>hT?GUNk&$aLA\";i:1380;s:15:\">J>hT?GUNk5}ZLA\";i:1381;s:15:\">J>hT?GUNkM&aLA\";i:1382;s:15:\">J>hT?GUNkx(aLA\";i:1383;s:15:\">J>hT?GUNk{)aLA\";i:1384;s:15:\">J>hT?GUNkg+aLA\";i:1385;s:15:\">J>hT?GUNk*,aLA\";i:1386;s:15:\">J>hT?GUNkP/aLA\";i:1387;s:15:\">J>hT?GUNk0:aLA\";i:1388;s:15:\">J>hT?GUNk~;aLA\";i:1389;s:15:\">J>hT?GUNkj=aLA\";i:1390;s:15:\">J>hT?GUNk.>aLA\";i:1391;s:15:\">J>hT?GUNkS@aLA\";i:1392;s:15:\">J>hT?GUNk3[aLA\";i:1393;s:15:\">J>hT?GUNkB^aLA\";i:1394;s:15:\">J>hT?GUNkm_aLA\";i:1395;s:15:\">J>hT?GUNk;`aLA\";i:1396;s:15:\">J>hT?GUNkV|aLA\";i:1397;s:15:\">J>hT?GUNk6}aLA\";i:1398;s:15:\">J>hT?GUO[CA5FA\";i:1399;s:15:\">J>hT?GUO[nBXLA\";i:1400;s:15:\">J>hT?GUO[J>hT?GUO[WEXLA\";i:1402;s:15:\">J>hT?GUO[7FXLA\";i:1403;s:15:\">J>hT?GUO[FHXLA\";i:1404;s:15:\">J>hT?GUO[qIXLA\";i:1405;s:15:\">J>hT?GUNkD\"6FA\";i:1406;s:15:\">J>hT?GUO[?JXLA\";i:1407;s:15:\">J>hT?GUO[ZLXLA\";i:1408;s:15:\">J>hT?GUO[!MXLA\";i:1409;s:15:\">J>hT?GUO[IOXLA\";i:1410;s:15:\">J>hT?GUO[tPXLA\";i:1411;s:15:\">J>hT?GUO[]QXLA\";i:1412;s:15:\">J>hT?GUO[cSXLA\";i:1413;s:15:\">J>hT?GUO[%TXLA\";i:1414;s:15:\">J>hT?GUO[LVXLA\";i:1415;s:15:\">J>hT?GUO[wWXLA\";i:1416;s:15:\">J>hT?GUO[`XXLA\";i:1417;s:15:\">J>hT?GUO[fZXLA\";i:1418;s:15:\">J>hT?GUO[)aXLA\";i:1419;s:15:\">J>hT?GUO[OcXLA\";i:1420;s:15:\">J>hT?GUO[zdXLA\";i:1421;s:15:\">J>hT?GUO[}eXLA\";i:1422;s:15:\">J>hT?GUO[igXLA\";i:1423;s:15:\">J>hT?GUO[,hXLA\";i:1424;s:15:\">J>hT?GUO[RjXLA\";i:1425;s:15:\">J>hT?GUO[2kXLA\";i:1426;s:15:\">J>hT?GUO[AmXLA\";i:1427;s:15:\">J>hT?GUO[lnXLA\";i:1428;s:15:\">J>hT?GUO[:oXLA\";i:1429;s:15:\">J>hT?GUO[UqXLA\";i:1430;s:15:\">J>hT?GUO[5rXLA\";i:1431;s:15:\">J>hT?GUNkmBaLA\";i:1432;s:15:\">J>hT?GUO[DtXLA\";i:1433;s:15:\">J>hT?GUO[ouXLA\";i:1434;s:15:\">J>hT?GUO[=vXLA\";i:1435;s:15:\">J>hT?GUO[XxXLA\";i:1436;s:15:\">J>hT?GUO[8yXLA\";i:1437;s:15:\">J>hT?GUO[G0XLA\";i:1438;s:15:\">J>hT?GUO[r1XLA\";i:1439;s:15:\">J>hT?GUO[@2XLA\";i:1440;s:15:\">J>hT?GUO[a4XLA\";i:1441;s:15:\">J>hT?GUO[#5XLA\";i:1442;s:15:\">J>hT?GUO[J7XLA\";i:1443;s:15:\">J>hT?GUO[u8XLA\";i:1444;s:15:\">J>hT?GUO[^9XLA\";i:1445;s:15:\">J>hT?GUO[d#XLA\";i:1446;s:15:\">J>hT?GUO[&$XLA\";i:1447;s:15:\">J>hT?GUO[M&XLA\";i:1448;s:15:\">J>hT?GUO[x(XLA\";i:1449;s:15:\">J>hT?GUO[{)XLA\";i:1450;s:15:\">J>hT?GUO[g+XLA\";i:1451;s:15:\">J>hT?GUO[*,XLA\";i:1452;s:15:\">J>hT?GUNk;CaLA\";i:1453;s:15:\">J>hT?GUO[P/XLA\";i:1454;s:15:\">J>hT?GUO[0:XLA\";i:1455;s:15:\">J>hT?GUO[~;XLA\";i:1456;s:15:\">J>hT?GUO[j=XLA\";i:1457;s:15:\">J>hT?GUO[.>XLA\";i:1458;s:15:\">J>hT?GUO[S@XLA\";i:1459;s:15:\">J>hT?GUO[3[XLA\";i:1460;s:15:\">J>hT?GUO[B^XLA\";i:1461;s:15:\">J>hT?GUO[m_XLA\";i:1462;s:15:\">J>hT?GUO[;`XLA\";i:1463;s:15:\">J>hT?GUO[V|XLA\";i:1464;s:15:\">J>hT?GUO[6}XLA\";i:1465;s:15:\">J>hT?GUO[E\"5FA\";i:1466;s:15:\">J>hT?GUO[nBYLA\";i:1467;s:15:\">J>hT?GUO[J>hT?GUO[WEYLA\";i:1469;s:15:\">J>hT?GUO[7FYLA\";i:1470;s:15:\">J>hT?GUO[FHYLA\";i:1471;s:15:\">J>hT?GUO[qIYLA\";i:1472;s:15:\">J>hT?GUO[?JYLA\";i:1473;s:15:\">J>hT?GUO[ZLYLA\";i:1474;s:15:\">J>hT?GUO[!MYLA\";i:1475;s:15:\">J>hT?GUO[IOYLA\";i:1476;s:15:\">J>hT?GUO[tPYLA\";i:1477;s:15:\">J>hT?GUO[]QYLA\";i:1478;s:15:\">J>hT?GUO[cSYLA\";i:1479;s:15:\">J>hT?GUO[%TYLA\";i:1480;s:15:\">J>hT?GUO[LVYLA\";i:1481;s:15:\">J>hT?GUO[wWYLA\";i:1482;s:15:\">J>hT?GUO[`XYLA\";i:1483;s:15:\">J>hT?GUO[fZYLA\";i:1484;s:15:\">J>hT?GUO[)aYLA\";i:1485;s:15:\">J>hT?GUO[OcYLA\";i:1486;s:15:\">J>hT?GUO[zdYLA\";i:1487;s:15:\">J>hT?GUO[}eYLA\";i:1488;s:15:\">J>hT?GUO[igYLA\";i:1489;s:15:\">J>hT?GUO[,hYLA\";i:1490;s:15:\">J>hT?GUO[RjYLA\";i:1491;s:15:\">J>hT?GUO[2kYLA\";i:1492;s:15:\">J>hT?GUO[AmYLA\";i:1493;s:15:\">J>hT?GUO[lnYLA\";i:1494;s:15:\">J>hT?GUO[:oYLA\";i:1495;s:15:\">J>hT?GUO[UqYLA\";i:1496;s:15:\">J>hT?GUO[5rYLA\";i:1497;s:15:\">J>hT?GUO[DtYLA\";i:1498;s:15:\">J>hT?GUO[ouYLA\";i:1499;s:15:\">J>hT?GUO[=vYLA\";i:1500;s:15:\">J>hT?GUO[XxYLA\";i:1501;s:15:\">J>hT?GUO[8yYLA\";i:1502;s:15:\">J>hT?GUO[G0YLA\";i:1503;s:15:\">J>hT?GUO[r1YLA\";i:1504;s:15:\">J>hT?GUO[@2YLA\";i:1505;s:15:\">J>hT?GUO[a4YLA\";i:1506;s:15:\">J>hT?GUO[#5YLA\";i:1507;s:15:\">J>hT?GUO[J7YLA\";i:1508;s:15:\">J>hT?GUO[u8YLA\";i:1509;s:15:\">J>hT?GUO[^9YLA\";i:1510;s:15:\">J>hT?GUO[d#YLA\";i:1511;s:15:\">J>hT?GUO[&$YLA\";i:1512;s:15:\">J>hT?GUO[M&YLA\";i:1513;s:15:\">J>hT?GUO[x(YLA\";i:1514;s:15:\">J>hT?GUO[{)YLA\";i:1515;s:15:\">J>hT?GUO[g+YLA\";i:1516;s:15:\">J>hT?GUO[*,YLA\";i:1517;s:15:\">J>hT?GUO[P/YLA\";i:1518;s:15:\">J>hT?GUO[0:YLA\";i:1519;s:15:\">J>hT?GUO[~;YLA\";i:1520;s:15:\">J>hT?GUO[j=YLA\";i:1521;s:15:\">J>hT?GUO[.>YLA\";i:1522;s:15:\">J>hT?GUO[S@YLA\";i:1523;s:15:\">J>hT?GUO[3[YLA\";i:1524;s:15:\">J>hT?GUO[B^YLA\";i:1525;s:15:\">J>hT?GUO[m_YLA\";i:1526;s:15:\">J>hT?GUO[;`YLA\";i:1527;s:15:\">J>hT?GUO[V|YLA\";i:1528;s:15:\">J>hT?GUO[6}YLA\";i:1529;s:15:\">J>hT?GUO[CA6FA\";i:1530;s:15:\">J>hT?GUO[nBZLA\";i:1531;s:15:\">J>hT?GUO[J>hT?GUO[WEZLA\";i:1533;s:15:\">J>hT?GUO[7FZLA\";i:1534;s:15:\">J>hT?GUO[FHZLA\";i:1535;s:15:\">J>hT?GUO[qIZLA\";i:1536;s:15:\">J>hT?GUO[?JZLA\";i:1537;s:15:\">J>hT?GUO[ZLZLA\";i:1538;s:15:\">J>hT?GUO[!MZLA\";i:1539;s:15:\">J>hT?GUO[IOZLA\";i:1540;s:15:\">J>hT?GUO[tPZLA\";i:1541;s:15:\">J>hT?GUO[]QZLA\";i:1542;s:15:\">J>hT?GUO[cSZLA\";i:1543;s:15:\">J>hT?GUO[%TZLA\";i:1544;s:15:\">J>hT?GUO[LVZLA\";i:1545;s:15:\">J>hT?GUO[wWZLA\";i:1546;s:15:\">J>hT?GUO[`XZLA\";i:1547;s:15:\">J>hT?GUO[fZZLA\";i:1548;s:15:\">J>hT?GUO[)aZLA\";i:1549;s:15:\">J>hT?GUO[OcZLA\";i:1550;s:15:\">J>hT?GUO[zdZLA\";i:1551;s:15:\">J>hT?GUO[}eZLA\";i:1552;s:15:\">J>hT?GUO[igZLA\";i:1553;s:15:\">J>hT?GUO[,hZLA\";i:1554;s:15:\">J>hT?GUO[RjZLA\";i:1555;s:15:\">J>hT?GUO[2kZLA\";i:1556;s:15:\">J>hT?GUO[AmZLA\";i:1557;s:15:\">J>hT?GUO[lnZLA\";i:1558;s:15:\">J>hT?GUO[:oZLA\";i:1559;s:15:\">J>hT?GUO[UqZLA\";i:1560;s:15:\">J>hT?GUO[5rZLA\";i:1561;s:15:\">J>hT?GUO[DtZLA\";i:1562;s:15:\">J>hT?GUO[ouZLA\";i:1563;s:15:\">J>hT?GUO[=vZLA\";i:1564;s:15:\">J>hT?GUO[XxZLA\";i:1565;s:15:\">J>hT?GUO[8yZLA\";i:1566;s:15:\">J>hT?GUO[G0ZLA\";i:1567;s:15:\">J>hT?GUO[r1ZLA\";i:1568;s:15:\">J>hT?GUO[@2ZLA\";i:1569;s:15:\">J>hT?GUO[a4ZLA\";i:1570;s:15:\">J>hT?GUO[#5ZLA\";i:1571;s:15:\">J>hT?GUO[J7ZLA\";i:1572;s:15:\">J>hT?GUO[u8ZLA\";i:1573;s:15:\">J>hT?GUO[^9ZLA\";i:1574;s:15:\">J>hT?GUO[d#ZLA\";i:1575;s:167:\";5=hT?GU4DlB|L.4Fx~5FATq=hT?GU}DlB#L.4Fxs@AA|e=hT?GU5A$A{CSOYMLUBtaS_Q3nE3cAi\"lBJHNzRmvtrA6F=hT?GUO[&$ZLFBVElg*N7g2elBnL.4FxrjHE;DS\",\",ub@0Q5FgwLvSQ[zdQjP$A]CSOYMLUBtA\";i:1576;s:105:\"+5=hT?GUO[x(ZL5FVElg*NLA3(*\",ub@^D5FRtLvSQ[zDAyWht,ub@uC5FxtLvSQ[zDAFtht,ub@uC5F@wLvSQ[zdQzP$ACDSOYMifBtA\";i:1577;s:69:\"2d=hT?GUO[g+ZL?DVElg*N7grflB,L.4FxrjHE^DRtrBJHNzRmC)sAkn>hT?GUO[P/ZLA\";i:1578;s:50:\"1d=hT?GUO[0:ZL?DVElg*N1AK\"it,ub@y2XcMtaS_Q3nE3eC$A\";i:1579;s:37:\"dS=hT?GUjClBrL.4Fxrj9C#BS\"*\",ub@dF5FA\";i:1580;s:50:\"eS=hT?GUjClBrL.4Fxrj9C#BS\"*\",ub@dF5F;vLvSQ[z#K*J$A\";i:1581;s:26:\"ou=hT?GU~AlBZN.4FxrjHEAEQA\";i:1582;s:15:\"/o>hT?GUO[j=ZLA\";i:1583;s:26:\"ou=hT?GUO[.>ZLKCVElg*NPAIA\";i:1584;s:39:\"pu=hT?GUO[S@ZLKCVElg*NPA3()\",ub@y2j4MtA\";i:1585;s:119:\"wu=hT?GUO[L&YLKCVElg*NbAJt)\",ub@uC5F{uLvSQ[zDAFtit,ub@uC5FbvLvSQ[zDAbLht,ub@uC5FhtLvSQ[zdQoQ$A=CSOYMLUBt5F_Q3nE30oup6FA\";i:1586;s:39:\"uP=hT?GU/A$ASDSOYMjmt,ub@y2Y/MtA\";i:1587;s:70:\"gS=hT?GUeBlB|L.4FxrjHEEES\")\",ub@uC5F{uLvSQ[zaAFtit,ub@uC5FbvLvSQ[zaAEA\";i:1588;s:37:\"pu=hT?GUO[V|ZLKCVElg*NPA2W&\",ub@uC5FA\";i:1589;s:29:\"ou=hT?GUO[.>ZL*BVElg*NkVxNlBA\";i:1590;s:13:\"hg=hT?GUDClBA\";i:1591;s:13:\"\"l=hT?GUDClBA\";i:1592;s:15:\"/o>hT?GUO[6}ZLA\";i:1593;s:37:\"dS=hT?GUeBlB|L.4FxrjHEEERtqBJHNznEuWA\";i:1594;s:37:\"dS=hT?GUeBlB|L.4FxrjHEEERtrBJHNznEuWA\";i:1595;s:15:\"4r>hT?GUO[;`ZLA\";i:1596;s:26:\"ou=hT?GUO[.>ZLKCVElg*NPAIA\";i:1597;s:26:\"ou=hT?GUO[E\"6FGuLvSQ[zHAEA\";i:1598;s:26:\"ou=hT?GUO[nBaLKCVElg*NPAIA\";i:1599;s:15:\"/o>hT?GUO[hT?GUO[WEaL*BVElg*NkVxNlBYM.4FxrjHEcEQA\";i:1601;s:13:\"bS=hT?GUeBlBA\";i:1602;s:23:\"tP=hT?GU/A$AfDSOYMifBtA\";i:1603;s:15:\"(a=hT?GUO[FHaLA\";i:1604;s:29:\"Xx>hT?GUO[qIaL1RVElg*N7g\"ilBA\";i:1605;s:81:\"L0=hT?GU&FlBrL.4FxrjDANc=hT?GU5A$A`CSOYMLUBt@Q_Q3nE3cAi\"rBJHNzFKuWKCqI:$vbb%e+:CA\";i:1606;s:13:\">J=hT?GU9ElBA\";i:1607;s:13:\"hg=hT?GUDClBA\";i:1608;s:26:\"tP=hT?GUO[bSYLKCVElg*NNAIA\";i:1609;s:37:\"#M=hT?GUDClBjL.4FxrjHEmERtnBJHNz?MuWA\";i:1610;s:67:\"fS=hT?GUeBlBEM.4FxrjHEoERtwBJHNzRmC)yAhT?GUO[%TaLA\";i:1612;s:13:\"9M=hT?GUCFlBA\";i:1613;s:134:\"a@=hT?GUO[LVaL*BVElg*NkVxNlBzL.4FxrjHE0ERt7BJHNzRmeAQ\"GO_Q3nE30o~46F{uLvSQ[zdQiS$A{CSOYMjhT?GUO[,>YL&\"LvSQ[zBAEA\";i:1615;s:29:\"?J>hT?GUO[/oZLqCVElg*N7gZllBA\";i:1616;s:15:\"KV=hT?GUO[OcaLA\";i:1617;s:15:\"KV=hT?GUO[wWaLA\";i:1618;s:107:\"Gm>hT?GUO[wWaL*BVElg*NkVxNlB#L.4FxrjHE2ERtqBJHNzRmw\"b\"@Q_Q3nE30o!56FbvLvSQ[zdQ`R$AADSOYM*+Ct=J_Q3nE31`+>5FA\";i:1619;s:37:\"pu=hT?GUO[L&YL&\"LvSQ[zDAz(ht,ub@xJ5FA\";i:1620;s:24:\"d#=hT?GUNElBrL.4Fx}MBABA\";i:1621;s:15:\"?2>hT?GUO[)aaLA\";i:1622;s:55:\"Zx>hT?GUO[zdaLLPVElg*N7g5llBJN.4FxrjHE&EQA=\",ub@y2MtOtA\";i:1623;s:13:\"VE=hT?GUDClBA\";i:1624;s:15:\"KV=hT?GUO[RjaLA\";i:1625;s:15:\"yd=hT?GUO[0:ZLA\";i:1626;s:28:\"!M=hT?GUO[B^ZL&\"LvSQ[zdQoQ$A\";i:1627;s:40:\"@J>hT?GUO[m_ZLwQVElg*N7gVhlBrL.4Fx}MBABA\";i:1628;s:23:\"!M=hT?GU5A$AJ=hT?GUpA$A\";i:1634;s:15:\"Wx=hT?GUO[AmaLA\";i:1635;s:97:\"@o=hT?GUTClBAM.4Fx~5AA%$=hT?GUO[lnaLi\"LvSQ[zdQnT$AhT?GUpA$A\";i:1652;s:86:\"hS=hT?GUeBlB|L.4FxrjHEmERtsBJHNzRmBXyAJ>hT?GU!RlBA\";i:1655;s:13:\">J>hT?GU!RlBA\";i:1656;s:42:\"H0=hT?GUO[!MaL~FVElg*N7g?jlBVN.4Fxrj9CqCQA\";i:1657;s:24:\"S@=hT?GUyFlB.M.4Fxs@bABA\";i:1658;s:29:\"LV=hT?GUO[w(YL;PVElg*N7g0klBA\";i:1659;s:29:\"LV=hT?GUO[wWaL;PVElg*NkV#TlBA\";i:1660;s:48:\"NV=hT?GUO[w(YL~FVElg*NHA2W(\",ub@xJ5F_0LvSQ[zIAEA\";i:1661;s:15:\"KV=hT?GUO[OcaLA\";i:1662;s:66:\"]J>hT?GUO[BtYLeGVElg*N7gfjlBVN.4FxrjHE0EQA/\",ub@SW5FAwLvSQ[zdQEU$A\";i:1663;s:25:\"Xx=hT?GUpA$ASDSOYM*+EYlBA\";i:1664;s:67:\"hT?GUO[KVYLA\";i:1673;s:91:\"cx=hT?GUO[UqaLXLVElg*NbA2W&\",ub@uC5FFxLvSQ[zdQVR$A=CSOYMjhT?GUO[OcaLA\";i:1675;s:56:\"Cm>hT?GUO[OcaLIIVElg*N7gqilBAM.4FxrjHEsERtmBJHNzRmC)6ABA\";i:1676;s:121:\"Im>hT?GUO[wWaLvDVElg*NHA3()\",ub@uC5FLvLvSQ[zDAc4it,ub@uC5F;vLvSQ[z#K*J$A?CSOYM)ZBtgg_Q3nE30ohT?GUO[%TaLA\";i:1678;s:26:\"FH=hT?GUDClBVN.4FxrjHEuEQA\";i:1679;s:26:\"*,=hT?GUjClBVN.4FxrjHE8EQA\";i:1680;s:61:\"&5=hT?GU4DlBxN.4FxrjHE~DRt#BJHNzRmw\"f\"^X_Q3nE3cAi\"7BJHNzLYuWA\";i:1681;s:80:\"^J>hT?GUO[BtYLeGVElg*N7gfjlBVN.4FxrjHE0EQA/\",ub@SW5FAwLvSQ[zdQEU$AiDSOYMjhT?GUO[w(YLA\";i:1683;s:15:\"\"l>hT?GUO[OcaLA\";i:1684;s:247:\"oCQY+\",ub@y2)FOtBt_Q3nE30ow(6FFxLvSQ[zdQVR$AnDSOYMjhT?GUO[!MaLDHVElg*N9A3(>\",ub@y2[>PtA\";i:1685;s:29:\"Am>hT?GUO[w(YLqCVElg*N7gZllBA\";i:1686;s:77:\"^J>hT?GUO[]QZL=JVElg*N7gCqlBAM.4Fx}MHA6F=hT?GUZA$AcDSOYMjPtA\";i:1687;s:15:\"\"l>hT?GUO[w(YLA\";i:1688;s:13:\"sP=hT?GUjClBA\";i:1689;s:13:\">J=hT?GU>BlBA\";i:1690;s:91:\"sB>hT?GUO[DtaL~FVElg*N7g)klB%N.4FxrjHETFS\"+\",ub@]W5FFxLvSQ[zdQVR$A|CSOYMtOBtrP_Q3nE30oal6FA\";i:1691;s:13:\">J=hT?GUDClBA\";i:1692;s:12:\">J=hT?GUpA$A\";i:1693;s:168:\";5=hT?GUO[x(ZL*BVElg*NJAJt)\",ub@/B5F{uLvSQ[zDAFtit,ub@/B5FbvLvSQ[zDAbLjt,ub@y26(Ntgg_Q3nE30ohT?GUO[OcaL.IVElg*NbAIA\";i:1695;s:12:\"yd=hT?GU5A$A\";i:1696;s:72:\"xP=hT?GUO[bSYLNJVElg*NlAK\"nt,ub@uC5FGuLvSQ[zGAEA$(k)Noa.iZ1WlBqI:$vbOAQA\";i:1697;s:12:\">J=hT?GU5A$A\";i:1698;s:13:\">J=hT?GUDClBA\";i:1699;s:59:\"wP=hT?GUO[bSYLi\"LvSQ[zLAyWht,ub@uC5FxtLvSQ[zLAFtht,ub@uC5FA\";i:1700;s:12:\"VE=hT?GU5A$A\";i:1701;s:29:\"Xx>hT?GUO[qIaL1RVElg*N7g\"ilBA\";i:1702;s:46:\"YE=hT?GUDClBfL.4Fxs@AApI=hT?GUDClBnL.4Fxs@AABA\";i:1703;s:39:\"#M=hT?GUZA$A|CSOYMjhT?GUO[cSaLA\";i:1707;s:15:\"i=>hT?GUO[g+aLA\";i:1708;s:50:\"YE=hT?GUO[0:ZL&\"LvSQ[zDA/hht,ub@y2XcMt5F_Q3nE3cAgA\";i:1709;s:24:\"zd=hT?GU9ElB,L.4Fx~5AABA\";i:1710;s:67:\"Em>hT?GUuBlBAM.4Fxs@AANc=hT?GU5A$A`CSOYM?IBt@Q_Q3nE3cAi\"rBJHNznEuWA\";i:1711;s:53:\"U@=hT?GUyFlB.M.4Fxrj}BwCRttBJHNzRmBX3A1k>hT?GUO[wWaLA\";i:1712;s:85:\"bE=hT?GU5A$ABlBEM.4Fx}MIAvW=hT?GUjClB|L.4FxrjHE^DRtsBJHNzRmvt3A$T=hT?GUuBlBA\";i:1717;s:24:\"0:=hT?GU~AlB1N.4Fx~5CABA\";i:1718;s:53:\"kg=hT?GUO[0:ZL0EVElg*NFA2W)\",ub@y26(Pt$$_Q3nE30o};6FA\";i:1719;s:67:\"xP=hT?GU/A$A]CSOYMLUBtGO_Q3nE3_Ai\"qBJHNzFKuWoIqI:$vbqARtrBJHNzFKuWA\";i:1720;s:13:\">J=hT?GUDClBA\";i:1721;s:45:\"YE=hT?GU5A$AhT?GU5A$A\";i:1728;s:12:\"`)=hT?GU5A$A\";i:1729;s:29:\"Xx=hT?GUO[]QaL;PVElg*N7g0klBA\";i:1730;s:46:\"1d=hT?GUDClB(L.4Fxs@CA+h=hT?GUDClB;L.4Fxs@CABA\";i:1731;s:15:\"VE=hT?GUO[3[ZLA\";i:1732;s:29:\"M&=hT?GUO[0:aLZFVElg*N7gXrlBA\";i:1733;s:37:\"@J>hT?GUO[j=aLNJVElg*NHAIAkt,ub@uC5FA\";i:1734;s:86:\"i#=hT?GUNElBMM.4Fx~5HA7y=hT?GU&FlB|L.4FxrjHEaERttBJHNzj@uW#TqI:$vbb%E_:CqazXJI|+OI]KgA\";i:1735;s:50:\"Zx>hT?GUO[S@aLKCVElg*NPAIAot,ub@y2j4QtMc_Q3nE3/B$A\";i:1736;s:83:\"i#=hT?GUNElBvL.4Fxs@BAO/=hT?GU5A$AHDSOYMLUBtMc_Q3nE3/B$A_CSOYMjhT?GUO[.>aLcMVElg*NkV0UlBA\";i:1739;s:72:\"xP=hT?GUO[bSYLi\"LvSQ[zDAyWht,ub@uC5FxtLvSQ[zdQ^P$A>CSOYMLUBtdZ_Q3nE3>C$A\";i:1740;s:64:\"wP=hT?GUO[bSYLDHVElg*N9AIAjt,ub@y2@hQt/`_Q3nE30oU|6FhtLvSQ[zWAEA\";i:1741;s:108:\"0P=hT?GU/A$ADDSOYM)ZCt0k_Q3nE3cAgAxBJHNzFKuWXLqI:$vbb%u{:C;XzXJI|+OI:KgAuBJHNz4BvW#TqI:$vbb%E_:C?bzXJI|+BACA\";i:1742;s:40:\"@J>hT?GUO[z:YL;PVElg*N7gZllBlN.4Fx}MIABA\";i:1743;s:42:\"@J>hT?GUO[z:YL;PVElg*N7g3rlBlN.4FxrjHEzFQA\";i:1744;s:40:\"@J>hT?GUO[z:YL;PVElg*N7gZllBlN.4Fx}MIABA\";i:1745;s:100:\"]`>hT?GUjClBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMLUBt5F_Q3nE3cAgAqBJHNzFKuW(HqI:$vbOAQA*\",ub@uC5FbvLvSQ[zDAEA\";i:1746;s:15:\">J=hT?GUO[!MaLA\";i:1747;s:34:\"uP=hT?GU/A$A@CSOYM5qBt{e_Q3nE3GC$A\";i:1748;s:91:\"i#=hT?GUNElBMM.4Fx~5HANc=hT?GUO[8yaL?DVElg*N7g;flB,L.4FxrjHEBFRtrBJHNzRmBXtAvW=hT?GUO[V|aLA\";i:1749;s:58:\"ax=hT?GU5A$A;CSOYMLUBt:C_Q3nE3cAi\"mBJHNzRmBXyAYL=hT?GU5A$A\";i:1750;s:64:\"Dm>hT?GUO[wWaLIIVElg*N7g#jlBAM.4FxrjHE@ES\"+\",ub@]W5F[tLvSQ[zEAEA\";i:1751;s:13:\"Wx=hT?GUCFlBA\";i:1752;s:26:\"#5=hT?GU4DlBkM.4FxrjHE3FQA\";i:1753;s:15:\"yd=hT?GUO[!MaLA\";i:1754;s:13:\"sP=hT?GUjClBA\";i:1755;s:13:\"sP=hT?GUjClBA\";i:1756;s:15:\">J=hT?GUO[!MaLA\";i:1757;s:13:\"sP=hT?GUjClBA\";i:1758;s:48:\"YE=hT?GUO[0:ZL&\"LvSQ[zDA/hht,ub@uC5F%tLvSQ[zDAEA\";i:1759;s:15:\"Wx=hT?GUO[ouaLA\";i:1760;s:26:\"?J=hT?GU5A$AADSOYMjJ=hT?GUNkoBXLA\";i:1767;s:13:\"sP=hT?GUjClBA\";i:1768;s:56:\">`>hT?GUjClB#L.4Fxs@AA|e=hT?GU5A$A{CSOYMLUBtaS_Q3nE3cAgA\";i:1769;s:12:\"9M=hT?GU5A$A\";i:1770;s:50:\"1d=hT?GUO[:oaL?DVElg*NHAK\"it,ub@y2Y/OtaS_Q3nE3cAgA\";i:1771;s:86:\"4d=hT?GUpA$A`CSOYMjhT?GUO[OcaLA\";i:1773;s:13:\"9M=hT?GUDClBA\";i:1774;s:26:\"Am>hT?GUO[wWaLqCVElg*NRAIA\";i:1775;s:29:\"Am>hT?GUO[w(YLqCVElg*N7gZllBA\";i:1776;s:73:\"Em>hT?GUO[wWaLOWVElg*N7g0klBzL.4Fx}MCA[Q=hT?GUOBlBbL.4Fxs@CApI=hT?GUDClBA\";i:1777;s:39:\"Bm>hT?GUO[OcaLqCVElg*NRA3([\",ub@y25WOtA\";i:1778;s:15:\"\"l>hT?GUO[OcaLA\";i:1779;s:39:\"Yx=hT?GUpA$AGDSOYMjJ=hT?GU5A$A\";i:1782;s:56:\"1d=hT?GUO[`XaL?DVElg*N7g)klB,L.4FxrjHE2ERtrBJHNzRmBX0ABA\";i:1783;s:15:\">J=hT?GUO[0:ZLA\";i:1784;s:69:\"ax=hT?GUO[`XaLIIVElg*N7gqilB8M.4FxrjHE_EQA@\",ub@y2Y/Ptb#_Q3nE30oZ48FA\";i:1785;s:15:\"9M=hT?GUO[B^ZLA\";i:1786;s:29:\")a=hT?GUNkXEXLqCVElg*N7gOmlBA\";i:1787;s:15:\">J=hT?GUO[`XaLA\";i:1788;s:15:\"z:>hT?GUO[g+aLA\";i:1789;s:15:\"i=>hT?GUO[g+aLA\";i:1790;s:75:\"xP>hT?GUO[%$YLvDVElg*N7g>mlB(L.4Fxs@CA+h=hT?GUO[:oaL0EVElg*NXAIAit,ub@uC5FA\";i:1791;s:88:\"4d=hT?GUO[:oaL?DVElg*NHAK\"it,ub@y2Y/OtaS_Q3nE3cAgAsBJHNzijuW|LqI:$vby<*B:CwYzXJI|+OI_IgA\";i:1792;s:15:\"nu=hT?GUO[^9aLA\";i:1793;s:53:\"qu=hT?GUO[WEaL_EVElg*NNA2W=\",ub@y25WOtgg_Q3nE30ohT?GUO[wWaLIIVElg*N7gqilBA\";i:1800;s:15:\"\"l>hT?GUO[OcaLA\";i:1801;s:12:\"Wx=hT?GUpA$A\";i:1802;s:53:\"Zx=hT?GUO[UqaLIIVElg*N7gqilB8M.4FxrjDApI=hT?GUO[*,ZLA\";i:1803;s:50:\"YE=hT?GUO[IOaL&\"LvSQ[zDA/hht,ub@y2XcMt5F_Q3nE3cAgA\";i:1804;s:48:\"YE=hT?GU5A$AhT?GUO[g+aLA\";i:1809;s:15:\"i=>hT?GUO[g+aLA\";i:1810;s:13:\"/o=hT?GUOBlBA\";i:1811;s:15:\"\"l>hT?GUO[OcaLA\";i:1812;s:13:\"bS=hT?GUeBlBA\";i:1813;s:13:\">J=hT?GU9ElBA\";i:1814;s:12:\"VE=hT?GU5A$A\";i:1815;s:15:\"sP=hT?GUO[bSYLA\";i:1816;s:50:\"YE=hT?GU5A$AhT?GUO[cSaLXLVElg*N7gjnlBAM.4FxrjHE2ERtwBJHNzRmw\"a\"+>_Q3nE30o9<6FA\";i:1822;s:50:\"1d=hT?GUO[{)aL?DVElg*NFAK\"it,ub@y2)FQtaS_Q3nE3UAgA\";i:1823;s:15:\"VE=hT?GUO[0:dLA\";i:1824;s:15:\"nu=hT?GUO[L&YLA\";i:1825;s:39:\"@J>hT?GUO[m_ZL*BVElg*NJA3(=\",ub@y2Y/MtA\";i:1826;s:15:\"EH=hT?GUO[{)aLA\";i:1827;s:39:\"GH=hT?GUO[{)aLDHVElg*N9AJt.\",ub@y2OtBtA\";i:1828;s:13:\">J=hT?GUDClBA\";i:1829;s:45:\"YE=hT?GU5A$AhT?GUO[m_ZL*BVElg*NJA3(=\",ub@y2Y/MtA\";i:1831;s:48:\"YE=hT?GUNk#MXL&\"LvSQ[zDA/hht,ub@uC5F%tLvSQ[zDAEA\";i:1832;s:48:\"YE=hT?GU9ElBfL.4Fxs@AApI=hT?GUO[B^ZLlBVElg*NHAIA\";i:1833;s:23:\"tP=hT?GU/A$A;CSOYMM%BtA\";i:1834;s:26:\"tP=hT?GU/A$A\"CSOYMj<9t3ACA\";i:1835;s:13:\"sP=hT?GUjClBA\";i:1836;s:15:\"nu=hT?GUO[L&YLA\";i:1837;s:124:\"wu=hT?GUO[L&YLZFVElg*N7gvjlB;L.4Fx~5AA|e=hT?GUO[!MaLvDVElg*N1AK\"it,ub@IU5FAwLvSQ[zdQ`R$A[CSOYMjhT?GUO[wWaLA\";i:1854;s:42:\"Bm>hT?GUO[OcaL)UVElg*N7gyqlB/N.4FxrjHEdFQA\";i:1855;s:15:\"z:>hT?GUO[g+aLA\";i:1856;s:50:\"YE=hT?GUO[3[ZL&\"LvSQ[zDA/hht,ub@y2MtNt5F_Q3nE3cAgA\";i:1857;s:61:\"ax=hT?GUpA$A;CSOYMjhT?GUNk&TXLA\";i:1869;s:12:\"VE=hT?GUpA$A\";i:1870;s:50:\"YE=hT?GUNkaLXL&\"LvSQ[zDA/hht,ub@y2OtBt5F_Q3nE3cAgA\";i:1871;s:56:\">`>hT?GUjClB#L.4Fxs@AA|e=hT?GU5A$A{CSOYMLUBtaS_Q3nE3cAgA\";i:1872;s:50:\"1d=hT?GUO[{)aL?DVElg*NHAK\"it,ub@y2)FQtaS_Q3nE3cAgA\";i:1873;s:45:\"YE=hT?GU5A$AJ=hT?GUO[!MaLA\";i:1879;s:45:\"1d=hT?GU5A$A`CSOYMLUBt@Q_Q3nE3cAi\"rBJHNzFKuWA\";i:1880;s:15:\"sP=hT?GUO[bSYLA\";i:1881;s:29:\"LV=hT?GUO[OcaLOWVElg*N7gZllBA\";i:1882;s:15:\"\"l>hT?GUO[w(YLA\";i:1883;s:13:\"KV=hT?GUuBlBA\";i:1884;s:50:\"YE=hT?GUO[!MaL&\"LvSQ[zDA/hht,ub@y2*yNt5F_Q3nE3cAgA\";i:1885;s:69:\"OV=hT?GUO[w(YLvDVElg*N7g;flB(L.4FxrjHE~DQA*\",ub@y2XcMtaS_Q3nE30oal6FA\";i:1886;s:13:\"bS=hT?GUOBlBA\";i:1887;s:13:\"/o=hT?GUTClBA\";i:1888;s:15:\">J=hT?GUO[IOaLA\";i:1889;s:12:\">J=hT?GU5A$A\";i:1890;s:26:\")a=hT?GUO[^9aL&\"LvSQ[zCAEA\";i:1891;s:86:\"Fm>hT?GUO[wWaL~FVElg*N7g?jlB8M.4FxrjDA%$=hT?GUO[7FaLeGVElg*N%A3(&\",ub@MI5F[tLvSQ[zEAEA\";i:1892;s:35:\"$5=hT?GUiFlBjL.4Fx~5AA]9=hT?GUNElBA\";i:1893;s:101:\"zP=hT?GU/A$AADSOYMjhT?GUO[OcaLA\";i:1895;s:70:\"4:>hT?GU5A$A{CSOYMtOCtlB_Q3nE3H#EH5FhtLvSQ[zDA/hht,ub@uC5F%tLvSQ[zDAEA\";i:1896;s:66:\"ax=hT?GUO[]QaLXLVElg*NbA3(,\",ub@y25WNtUE_Q3nE30o@j6F_0LvSQ[zdQaS$A\";i:1897;s:15:\"L&=hT?GUO[7FaLA\";i:1898;s:15:\"\"l>hT?GUO[w(YLA\";i:1899;s:15:\"\"l>hT?GUO[OceLA\";i:1900;s:13:\"/o=hT?GUTClBA\";i:1901;s:24:\"cS=hT?GUOBlBAM.4Fxs@AABA\";i:1902;s:15:\"\"l>hT?GUO[OcaLA\";i:1903;s:15:\"\"l>hT?GUO[w(YLA\";i:1904;s:53:\"U@=hT?GUO[M&aL~FVElg*N5A3(:\",ub@y2zWKtb#_Q3nE30oZ46FA\";i:1905;s:61:\"fS=hT?GUjClB|L.4Fxrj9CoCRt7BJHNzRmeAQ\"5F_Q3nE3:W$A=CSOYMu7StA\";i:1906;s:15:\"\"l>hT?GUO[wWaLA\";i:1907;s:13:\">J=hT?GU6tlBA\";i:1908;s:29:\"Xx=hT?GUO[]QaLIIVElg*N7gqilBA\";i:1909;s:59:\"ZE=hT?GU5A$AhT?GUO[g+aLA\";i:1913;s:15:\"i=>hT?GUO[g+aLA\";i:1914;s:15:\"\"l>hT?GUO[wWaLA\";i:1915;s:72:\"PV=hT?GUuBlB(L.4Fx~5CA1k=hT?GU>BlB7L.4Fxrj,EeA3(&\",ub@FN5F[tLvSQ[z#K+G$A\";i:1916;s:15:\"KV=hT?GUO[OcaLA\";i:1917;s:13:\">J=hT?GUDClBA\";i:1918;s:26:\"tP=hT?GUO[bSYL?DVElg*NlAIA\";i:1919;s:104:\"Gm>hT?GUO[wWaLlBVElg*NHA2W+\",ub@y2)FOtBt_Q3nE30ow(6FFxLvSQ[zdQVR$AnDSOYMj:CjXzXJI{ZBA^9#(k)NofJ:CzXzXJI{ZBAP/#(k)NofJ:C^XzXJI|+fF@EgAoBJHNzRmuWA\";i:1922;s:15:\"\"l>hT?GUO[wWaLA\";i:1923;s:124:\"zP=hT?KUO[G0aL#zdQUUlBihT?GUO[m_ZL*BVElg*NJA3(=\",ub@y2Y/MtA\";i:1925;s:26:\"WE=hT?GUNk0dXLdZVElg*N_FQA\";i:1926;s:12:\"_X=hT?GU5A$A\";i:1927;s:50:\"1d=hT?GU5A$A`CSOYMjCSOYMLUBtXL`Q3nE3#X$A\";i:1930;s:82:\"Em>hT?GUO[cSaLeGVElg*N7gfjlBAM.4FxrjHE2EQA:\",ub@y2LA1WjnqI:$vbb%f^:CwYzXJI|+OI4IgA\";i:1931;s:72:\"9r=hT?GUO[IOaLDHVElg*NpAJt.\",ub@uC5FO2LvSQ[zDAEA$(k)Noa.iZ0W=JqI:$vbeAQA\";i:1932;s:13:\"(a?hT?GUjClBA\";i:1933;s:82:\"^J>hT?IUNkjgXL#z@HTPlBWGkcwY)!DC5C2W+\",ub@IU5F_0LvSQ[zdQ6S$ADDSOYMB]Ct0k_Q3nE3eC$A\";i:1934;s:130:\"2P=hT?GU/A$A_CSOYMM%BtrP_Q3nE3UAgArBJHNzzguWNJqI:$vbb%2!:CoYzXJI|+LADt#(k)NoXB:C`ZzXJI|+BAa4((k)Noa.1(uW+OqI:$vb{ARtoBJHNzRmBX2ABA\";i:1935;s:64:\"&5=hT?GUNkSjXLNJVElg*NHAIAkt,ub@uC5F;vLvSQ[z#K*J$A~CSOYMj<9t3ACA\";i:1936;s:83:\")5=hT?GUiFlB?L.4Fxs@BA$T=hT?GUNk3kXLi\"LvSQ[zDAyWht,ub@JB5FxtLvSQ[zDAFtht,ub@y2v_OtA\";i:1937;s:110:\"+5=hT?GU4DlBoM.4Fxrj,E2AIAjt,ub@MI5F7vLvSQ[zLAyWnt,ub@y28(Ct>2_Q3nE30okn6FS6LvSQ[zNAFtqt,ub@xJ5FWuLvSQ[zdQ6S$A\";i:1938;s:72:\"(5=hT?GU4DlBoM.4Fx}MIAhT?GU5A$A\";i:1945;s:29:\"ou=hT?GUNkpuXLZFVElg*N7gailBA\";i:1946;s:39:\"|)=hT?GUNk>vXLlBVElg*NHA3(&\",ub@y2CRDtA\";i:1947;s:26:\"{)=hT?GU5A$A\"CSOYMj<9t3ACA\";i:1948;s:12:\"t8>hT?GU5A$A\";i:1949;s:12:\"z:=hT?GU5A$A\";i:1950;s:61:\"wP=hT?GUO[bSYLi\"LvSQ[zDAyWht,ub@y27WDtUE_Q3nE3uC$A>CSOYMLUBtA\";i:1951;s:83:\"yP=hT?GUO[bSYL5FVElg*N3A3(*\",ub@jT5FAwLvSQ[zDA:>ht,ub@y2ZcDtb#_Q3nE3)AgAvBJHNzB{uWA\";i:1952;s:104:\"`J>hT?GUO[m_ZL*BVElg*NJAK\"jt,ub@qO5FmuLvSQ[zMTfD$AJDSOYMjhT?GUO[g+aLA\";i:1957;s:15:\"i=>hT?GUO[g+aLA\";i:1958;s:15:\"z:>hT?GUO[g+aLA\";i:1959;s:15:\"i=>hT?GUO[g+aLA\";i:1960;s:12:\"z:>hT?GU5A$A\";i:1961;s:15:\"\"l>hT?GUO[wWaLA\";i:1962;s:15:\"(a=hT?GUNkXEXLA\";i:1963;s:72:\"bx=hT?GUO[KVYLeGVElg*NZmgA$A;CSOYMu7Bt:C_Q3nE3cAi\"mBJHNzzguW:CqI:$vbOAQA\";i:1964;s:13:\">J=hT?GUDClBA\";i:1965;s:70:\"(5=hT?GUO[x(ZLqCVElg*NRAJt)\",ub@uC5F{uLvSQ[zDAFtit,ub@uC5FbvLvSQ[zDAEA\";i:1966;s:96:\"zP=hT?GUO[bSYL5FVElg*NFA3(*\",ub@/B5FAwLvSQ[zcAz(it,ub@hT?GUO[w(YLqCVElg*N7g0klBA\";i:1968;s:12:\"sP=hT?GU/A$A\";i:1969;s:15:\"\"l>hT?GUO[wWaLA\";i:1970;s:15:\"\"l>hT?GUO[KVYLA\";i:1971;s:48:\"YE=hT?GUZA$AhT?GUO[m_ZL*BVElg*NJA3(=\",ub@y2Y/MtA\";i:1973;s:48:\"vP=hT?GU/A$A@CSOYM5qBt8M_Q3nE30o};6FhtLvSQ[zCAEA\";i:1974;s:13:\"/o=hT?GUOBlBA\";i:1975;s:29:\"5r>hT?GUO[;`ZLFBVElg*N7gTnlBA\";i:1976;s:13:\"bS=hT?GUeBlBA\";i:1977;s:48:\"YE=hT?GU5A$AhT?GUO[DtaL~FVElg*N7g)klBYM.4FxrjHEcEQA@\",ub@y2Y/Ptb#_Q3nE30oP26F51LvSQ[zgAEA\";i:1979;s:69:\"qB>hT?GUO[DtaL~FVElg*N7g)klBYM.4FxrjHEcEQA@\",ub@y2Y/Ptb#_Q3nE30oP26FA\";i:1980;s:69:\"qB>hT?GUO[DtaL~FVElg*N7g)klBYM.4FxrjHEcEQA@\",ub@y2Y/Ptb#_Q3nE30oP26FA\";i:1981;s:26:\"Am>hT?GUO[cSaLVRVElg*N%AIA\";i:1982;s:24:\"Am>hT?GUvulBlN.4Fx}MIABA\";i:1983;s:24:\"Am>hT?GUvulBlN.4Fx}MIABA\";i:1984;s:69:\"2d=hT?GUO[fZaL?DVElg*N7g;flB,L.4FxrjHE4ERtrBJHNzRmBXtAkn>hT?GUNkb4XLA\";i:1985;s:15:\"Wx=hT?GUO[UqaLA\";i:1986;s:29:\"ou=hT?GUNk$5XL*BVElg*NkVxNlBA\";i:1987;s:37:\"pu=hT?GUNkK7XL_EVElg*NNA2W*\",ub@uC5FA\";i:1988;s:55:\"1d=hT?GUO[!MaL?DVElg*N7gPjlB,L.4FxrjHEmERtrBJHNzRmuAb\"A\";i:1989;s:15:\"4r=hT?GUO[WEeLA\";i:1990;s:15:\"F0=hT?GUNkv8bLA\";i:1991;s:13:\"sP=hT?GUjClBA\";i:1992;s:56:\"=o=hT?GUeBlBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMtOBt5F_Q3nE3cAgA\";i:1993;s:13:\"/o=hT?GUeBlBA\";i:1994;s:99:\"zP=hT?GU/A$A~CSOYMj#(k)No8C:CA\";i:1995;s:94:\"cE=hT?GU5A$AhT?GU5A$A\";i:2011;s:26:\"5r=hT?GU~AlBrL.4Fxrj9C#BQA\";i:2012;s:26:\"0:=hT?GUNk[2XL~FVElg*NXAIA\";i:2013;s:13:\"sP=hT?GUjClBA\";i:2014;s:15:\"4r=hT?GUO[L&YLA\";i:2015;s:88:\"\"X=hT?GUjClBrL.4Fx}MBA$T>hT?GU5A$AaDSOYMjhT?GUNk($XLqCVElg*NZmYIlBVN.4?zrj,E:A3(y28(F\"A\";i:2017;s:57:\"H0>hT?GUNk($XLqCVE^2*NZmoIlB&!jC9Ag4mt,uj@y2+FEt&ayo=hT?GUTClBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMu7Ct5F_Q3nE3cAi\"tBJHNzRmBX0ABA\";i:2026;s:13:\"sP=hT?GUjClBA\";i:2027;s:56:\"m=>hT?GU5A$A;CSOYMLUBt:C_Q3nE3cAi\"mBJHNzzguW:CqI:$vbOAQA\";i:2028;s:13:\"sP=hT?GUjClBA\";i:2029;s:12:\"sP=hT?GU/A$A\";i:2030;s:70:\"su=hT?GUO[L&YLvDVElg*NHA3()\",ub@uC5FLvLvSQ[zDAc4it,ub@uC5F7vLvSQ[zFAEA\";i:2031;s:143:\"mS=hT?GUjClBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMLUBt5F_Q3nE3cAgAtBJHNzRm=(bAkn=hT?GUTClB#L.4FxrjHEPFRtqBJHNzFKuWoIqI:$vbb%6]:C7XzXJI|+BAZL$(k)Noa.k+vWA\";i:2032;s:39:\"uP=hT?GU/A$AGDSOYMjhT?GUNk($XLqCVElg*NZmdJlBVN.4Fxrj,EbBQA\";i:2035;s:15:\"KV=hT?GUNkn_XLA\";i:2036;s:46:\"1d=hT?GUDClB(L.4Fxs@AA+h=hT?GUDClB;L.4Fxs@AABA\";i:2037;s:29:\"0:=hT?GUNk7}XLoIVElg*N7g)klBA\";i:2038;s:23:\"tP=hT?GU/A$A@CSOYMjO.4FxrjDABA\";i:2040;s:89:\"5d=hT?GU5A$A`CSOYMLUBt@Q_Q3nE3cAi\"rBJHNzFKuW$AVElg*NFAJt&\",ub@/B5FxtLvSQ[zCAFtht,ub@/B5FA\";i:2041;s:88:\"tu=hT?GUO[L&YLvDVElg*NZmXLlB(L.4Fxs@AA+h=hT?GU5A$A|CSOYMLUBt&a`Q3nE3H#&t5F?zLvSQ[zdQRV$A\";i:2042;s:56:\"1d=hT?GUO[0:ZL?DVElg*NZmVBlB,L.4FxrjHE~DRtrBJHNzRmK)BABA\";i:2043;s:15:\"KV=hT?GUNk=CYLA\";i:2044;s:12:\"sP=hT?GU/A$A\";i:2045;s:13:\"sP=hT?GUjClBA\";i:2046;s:56:\"ZE=hT?GU5A$ACSOYMLUBtoI_Q3nE3RB$A\";i:2047;s:26:\"ou=hT?GUO[L&YLKCVElg*NbAIA\";i:2048;s:74:\"su=hT?GUO[L&YL*BVElg*NJAJt)\",ub@y2v_OtrP_Q3nE3MAgArBJHNzRmC)3A1k=hT?GUZA$A\";i:2049;s:13:\"sP=hT?GUjClBA\";i:2050;s:15:\"nu=hT?GUO[L&YLA\";i:2051;s:67:\"xP=hT?GU/A$A@CSOYMjhT?GU5A$A;CSOYMLUBt:C_Q3nE3cAi\"mBJHNzzguW:CqI:$vbOAQA\";i:2057;s:13:\"sP=hT?GUjClBA\";i:2058;s:70:\"su=hT?GUO[L&YLvDVElg*NHA3()\",ub@uC5FLvLvSQ[zDAc4it,ub@uC5F7vLvSQ[zFAEA\";i:2059;s:143:\"mS=hT?GUjClBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMLUBt5F_Q3nE3cAgAtBJHNzRm=(bAkn=hT?GUTClB#L.4FxrjHEPFRtqBJHNzFKuWoIqI:$vbb%6]:C7XzXJI|+BAZL$(k)Noa.k+vWA\";i:2060;s:39:\"uP=hT?GU/A$AGDSOYMjhT?GUO[OceLA\";i:2066;s:13:\"KV=hT?GUvulBA\";i:2067;s:26:\"Am>hT?GUO[OcaLqCVElg*NRAIA\";i:2068;s:26:\"Am>hT?GUO[w(YLqCVElg*NRAIA\";i:2069;s:15:\"KV=hT?GUO[wWeLA\";i:2070;s:15:\"5}>hT?GUO[wWeLA\";i:2071;s:15:\"KV=hT?GUO[OcaLA\";i:2072;s:15:\"_X=hT?GUNk8FYLA\";i:2073;s:39:\"MV=hT?GUuBlB3L.4Fxrj,EvBRt7BJHNzRmeAQ\"A\";i:2074;s:24:\"LV=hT?GUuBlB3L.4Fx}MCABA\";i:2075;s:15:\"5}>hT?GUO[OcaLA\";i:2076;s:15:\"\"l>hT?GUNkrIYLA\";i:2077;s:15:\"\"l>hT?GUO[KVYLA\";i:2078;s:13:\"sP=hT?GUjClBA\";i:2079;s:15:\"\"l>hT?GUO[wWaLA\";i:2080;s:26:\"?J>hT?GUNk@JYLNJVElg*NtAIA\";i:2081;s:40:\"$5=hT?GUNkSjXL5FVElg*NkVvTlBUM.4Fxs@FABA\";i:2082;s:42:\"@J>hT?GUNkjgXL*BVElg*NZm8MlBdN.4FxrjHEOEQA\";i:2083;s:29:\"M&=hT?GUO[0:aL:CVElg*N7gyqlBA\";i:2084;s:42:\"{X=hT?GUNk#MYLhT?GUO[w(YLJVVElg*NtA3(|\",ub@y28(FtA\";i:2089;s:75:\"PV=hT?GUNkn_XL;PVElg*NZmtJlB^L.4FxrjBAI7?hT?GUjClBDP.4FxrjDAvW=hT?GUNkuPYLA\";i:2090;s:39:\"Bm>hT?GUO[w(YLZFVElg*NLAIAit,ub@y2a/FtA\";i:2091;s:187:\"oC_){\",ub@y2+FFtxd`Q3nE3#X$A*DSOYMjhT?GUO[w(YLA\";i:2093;s:13:\"sP=hT?GUjClBA\";i:2094;s:15:\"\"l>hT?GUO[wWaLA\";i:2095;s:15:\"\"l>hT?GUO[w(YLA\";i:2096;s:13:\"sP=hT?GUjClBA\";i:2097;s:15:\"\"l>hT?GUO[OcaLA\";i:2098;s:77:\"(5=hT?GU4DlBkM.4FxrjHEEEQA/\",ub@y2v_PtSq_Q3nE3WC$AADSOYMjFtA\";i:2099;s:42:\"@J>hT?GUNkt8ZLaSVElg*N7ggglBfL.4Fxrj,EsAIA\";i:2100;s:42:\"@J>hT?GUNkI7ZLoIVElg*N7ggglBnL.4Fxrj,EsAIA\";i:2101;s:26:\":o=hT?GUUvlBVN.4Fxrj9CIIQA\";i:2102;s:80:\"bx=hT?GUO[0:ZLIIVElg*N7gqilB8M.4FxrjDATq=hT?GUO[0:ZL*BVElg*NkVxNlBVN.4Fxrj9CqCQA\";i:2103;s:15:\"\"l>hT?GUO[w(YLA\";i:2104;s:56:\"2d=hT?GU5A$A`CSOYMLUBt@Q_Q3nE3cAi\"rBJHNzFKuW=JqI:$vbyAQA\";i:2105;s:61:\"ZE=hT?GU5A$AhT?GUNk#MYLA\";i:2108;s:40:\"MV=hT?GUO[OceL;PVElg*NkV#TlB8M.4FxrjDABA\";i:2109;s:132:\"^o=hT?GUTClBMM.4Fx~5HAhT?GUO[w(YLXLVElg*N7gjnlBA\";i:2111;s:113:\"6d=hT?GUO[UqaL?DVElg*NHAK\"it,ub@jT5FbvLvSQ[zDAFtot,ub@uC5Fc8LvSQ[zMT!G$AADSOYMjjt,ub@y25WNt+>_Q3nE30o9<6FA\";i:2112;s:13:\"sP=hT?GUjClBA\";i:2113;s:15:\"\"l>hT?GUNkxWYLA\";i:2114;s:86:\"tu=hT?GUNkXEXLZFVElg*NZmwA$A?CSOYM)ZBtMc_Q3nE3/B$AHDSOYMLUBt0k_Q3nE3cAgA>BJHNzRmJXUABA\";i:2115;s:86:\"tu=hT?GUNkXEXLZFVElg*NZmwA$A?CSOYM)ZBtMc_Q3nE3/B$AjDSOYMLUBt0k_Q3nE3cAgA*BJHNzRmJXUABA\";i:2116;s:132:\"^o=hT?GUTClBUM.4Fxs@FAZ4=hT?GUiFlBAM.4FxrjHEsERtwBJHNzRmw\"a\"b#_Q3nE30oZ46F+uLvSQ[zDA/hit,ub@uC5FLvLvSQ[zDAc4it,ub@uC5Fn7LvSQ[zdQZV$A\";i:2117;s:15:\"mB?hT?GUO[g+aLA\";i:2118;s:15:\"F0?hT?GUO[g+aLA\";i:2119;s:15:\"F0?hT?GUNk#MYLA\";i:2120;s:15:\"mB?hT?GUNk#MYLA\";i:2121;s:53:\"NV=hT?GUNkgZYL*BVElg*NJAIAjt,ub@y2r_HtJV_Q3nE31`G>5FA\";i:2122;s:15:\"KV=hT?GUNk*aYLA\";i:2123;s:69:\"wP=hT?GUO[bSYL%NVElg*N7g;flB|L.4FxrjHEIERtsBJHNzRmvtuA7y=hT?GUNkPcYLA\";i:2124;s:29:\"G0>hT?GUNkmnXLqCVElg*NZm{OlBA\";i:2125;s:29:\"*,?hT?GUNk&TXLqCVElg*NZmyKlBA\";i:2126;s:15:\"),?hT?GUNk~eYLA\";i:2127;s:29:\"LV=hT?GUNkn_XL;PVElg*N7gEklBA\";i:2128;s:53:\"|X=hT?GUjClBzL.4Fxrj,E?BRt7BJHNzRmeAQ\"dZ_Q3nE30o/o6FA\";i:2129;s:15:\"\"l>hT?GUO[w(YLA\";i:2130;s:83:\"4d=hT?GU5A$A`CSOYMLUBt@Q_Q3nE3cAi\"rBJHNzFKuW=JqI:$vbeARt7BJHNzRmeAQ\"Pj`Q3nE3H#>J5FA\";i:2131;s:15:\"),?hT?GUNk~eYLA\";i:2132;s:15:\"4r=hT?GUNkjgYLA\";i:2133;s:42:\"H0>hT?GUO[?JaLqCVElg*NkV$$lBVN.4FxrjHESKQA\";i:2134;s:29:\"LV=hT?GUO[wWeL;PVElg*N7gV[lBA\";i:2135;s:42:\"H0>hT?GUO[?JaLqCVElg*NZms8lBVN.4Fxrj,EoGQA\";i:2136;s:15:\"\"l>hT?GUO[cSaLA\";i:2137;s:15:\"\"l>hT?GUO[%TaLA\";i:2138;s:15:\"\"l>hT?GUO[OcaLA\";i:2139;s:42:\"H0>hT?GUO[?JaLqCVElg*NZm88lBVN.4Fxrj,E3HQA\";i:2140;s:15:\"KV=hT?GUO[w(YLA\";i:2141;s:15:\"F0>hT?GUNkmnXLA\";i:2142;s:29:\"LV=hT?GUNkBmcL;PVElg*NkV$$lBA\";i:2143;s:29:\"LV=hT?GUNkn_bL;PVElg*NZm~1lBA\";i:2144;s:29:\"LV=hT?GUO[w(cL;PVElg*NZm~1lBA\";i:2145;s:15:\"KV=hT?GUNk3kXLA\";i:2146;s:15:\"KV=hT?GUO[wWeLA\";i:2147;s:13:\"!5=hT?GUiFlBA\";i:2148;s:110:\"+5=hT?GU4DlBkM.4Fxs@CAZ4>hT?GUDClBAM.4FxrjHE2ERtwBJHNzRmw\"a\"b#_Q3nE31`+>5F6yLvSQ[zdQ#T$ABDSOYMWDTtDH_Q3nE3kAgA\";i:2149;s:29:\"LV=hT?GUNk0dcL;PVElg*NZmtJlBA\";i:2150;s:15:\"\"l>hT?GUNk\";bLA\";i:2151;s:15:\"\"l>hT?GUO[w(cLA\";i:2152;s:29:\"LV=hT?GUNk0dcL;PVElg*NZmu2lBA\";i:2153;s:39:\"MV=hT?GUO[OceL:CVElg*N$FRt7BJHNzRmeAw\"A\";i:2154;s:29:\"LV=hT?GUO[w(cL;PVElg*NZmu2lBA\";i:2155;s:26:\"5r?hT?GUkvlBVN.4Fxrj9CIIQA\";i:2156;s:15:\"KV=hT?GUNkmnYLA\";i:2157;s:15:\"KV=hT?GUO[wWaLA\";i:2158;s:26:\"Xx=hT?GUO[0:ZLeGVElg*N%AIA\";i:2159;s:129:\"Im>hT?GUNk\";XLqCVElg*NkV#TlBNN.4Fxrj,EECS\")\",ub@y2XcMtrP_Q3nE3H#`E5FLvLvSQ[zCAc4it,ub@y2wnBtDH_Q3nE3RB$A*DSOYMjhT?GUNke#XLA\";i:2162;s:124:\"]o=hT?GUeBlBVN.4FxrjHE0ERtwBJHNzRmw\"a\"Bt_Q3nE3RB$AADSOYMjhT?GUO[w(YLA\";i:2166;s:13:\"/o=hT?GUeBlBA\";i:2167;s:72:\"Em>hT?GUNkEtYLIIVElg*N7gHrlBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMtOBt5F_Q3nE3cAgA\";i:2168;s:69:\"^2?hT?GUNkoBYLeGVElg*NZmFRlBVN.4Fxrj,EKCS\"}\",ub@y2kLHt\"]_Q3nE3H#6*5FA\";i:2169;s:15:\"i=>hT?GUNks1XLA\";i:2170;s:59:\"3:>hT?GUNkYxYLi\"LvSQ[zDAyWht,ub@uC5FxtLvSQ[zCAFtht,ub@uC5FA\";i:2171;s:15:\"z:>hT?GUNks1XLA\";i:2172;s:15:\"Wx>hT?GUNk9yYLA\";i:2173;s:15:\"KV=hT?GUNk1:XLA\";i:2174;s:15:\"KV=hT?GUNk*aYLA\";i:2175;s:13:\"4r?hT?GUjClBA\";i:2176;s:83:\"bE=hT?GU5A$AvYLvDVElg*N7grflB(L.4Fxs@AA+h=hT?GU5A$A|CSO}MLUBt&aGAht>BJHNzRmJXQA[Q=hT?GUeBlBEM.4Fx}MIACt=hT?GUNks1YLIIVElg*N7g#jlBVN.4FxrjHE0ERttBJHNzRmw\"b\"A\";i:2178;s:26:\"5r=hT?GU~AlBTP.4Fxrj,EUCQA\";i:2179;s:40:\"Bm>hT?GUO[OcaL~FVElg*N7g>mlBfL.4Fxs@CABA\";i:2180;s:107:\"#r=hT?GUNkH0YLvDVElg*N7g>mlB(L.4?zs@AAq10oq1YLLvLvSQ[zDAc4it,ub@uC5F37LvSQ[zMT%F$A@CSOYMAlBtuW_Q3nE3H#O/5FA\";i:2181;s:15:\"\"l>hT?GUO[%TaLA\";i:2182;s:104:\"S&=hT?GUO[tPaLXLVElg*NbA2W+\",ub@y26(NtDH_Q3nE31`O25FQwLvSQ[zMTFJ$AcDSOYMjhT?GUO[OcaLDHVElg*NpAJt.\",ub@y2)FQt*h_Q3nE30ohg6FA\";i:2185;s:12:\"Wx=hT?GU5A$A\";i:2186;s:15:\"\"l>hT?GUNkBmYLA\";i:2187;s:26:\"Xx>hT?GU5A$A~CSOYMj>hT?GUNkaLXL2eVElg*NZmhNlBA\";i:2189;s:13:\"sP=hT?GUjClBA\";i:2190;s:26:\"M&=hT?GUNk4[XL.IVElg*NbAIA\";i:2191;s:13:\"sP=hT?GUjClBA\";i:2192;s:13:\"z:?hT?GU~AlBA\";i:2193;s:45:\"YE=hT?GU5A$AhT?GUNkaLXL2eVElg*NZmhNlBA\";i:2204;s:56:\"I0>hT?GUNk($bLqCVElg*NZmZ1lBCO.4Fxrj,E`FRt7BJHNzRmJX\"ACA\";i:2205;s:13:\"!5=hT?GUiFlBA\";i:2206;s:15:\"nu=hT?GUO[.>ZLA\";i:2207;s:13:\"/o=hT?GUTClBA\";i:2208;s:83:\"yP=hT?GU/A$A;CSOYMjhT?GUNkBmYLA\";i:2215;s:15:\"z:=hT?GUNke#YLA\";i:2216;s:13:\"sP=hT?GUjClBA\";i:2217;s:12:\"sP=hT?GU/A$A\";i:2218;s:150:\"\"2?hT?GUNkoBYL*BVElg*NkVxNlBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMLUBt5F_Q3nE3cAgAqBJHNzRmC)3A|e=hT?GUDClB,L.4Fxrj,EYA2W*\",ub@y2)FOtb#_Q3nE31`+>5F?zLvSQ[zMT9J$A\";i:2219;s:67:\"(5=hT?GUiFlBEM.4Fx}MIA;C=hT?GU5A$A5FA\";i:2221;s:97:\"*5=hT?GUiFlBpN.4Fxrj,E4A3((\",ub@CG5FAwLvSQ[zcAz(mt,ub@y2unMtXL_Q3nE3RB$AcDSOYMj<8AcAZ4?hT?GUjClBA\";i:2222;s:24:\"d#?hT?GUjClBmO.4FxrjDABA\";i:2223;s:75:\"(5=hT?GU4DlBkM.4Fx~5FAZ4>hT?GU>BlBVN.4Fxrj9CqCQA/\",ub@y2x_HtVx_Q3nE3GS[Q5FA\";i:2224;s:116:\"}2?hT?GUNkoBYL*BVElg*NkVxNlBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMtOBt5F_Q3nE3cAgAqBJHNzFKuW(HqI:$vbOAQA*\",ub@uC5FbvLvSQ[zDAEA\";i:2225;s:56:\"J0=hT?GU&FlBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMLUBt5F_Q3nE3cAgA\";i:2226;s:13:\"sP=hT?GUjClBA\";i:2227;s:66:\"ax=hT?GUCFlBZN.4FxrjHECEQA)\",ub@y2P\"xW_EqI:$vby<6S:C;XzXJI|+OI|HgA\";i:2228;s:24:\"d#?hT?GUjClBmO.4FxrjDABA\";i:2229;s:62:\"ax=hT?GUO[]QaLvDVElg*N7g_klB(L.4Fxs@AA+h=hT?GUDClB;L.4Fxs@AABA\";i:2230;s:59:\"ax=hT?GU^ClB#L.4FxrjHEPFRtqBJHNzFKuWoIqI:$vbGARtrBJHNzFKuWA\";i:2231;s:15:\"Wx=hT?GUO[fZaLA\";i:2232;s:35:\"|)=hT?GUDClBkM.4Fx}MEAhT?GUDClBkM.4Fx}MEAhT?GUNk^QXLA\";i:2236;s:26:\"5r=hT?GU~AlBrL.4Fxrj9C#BQA\";i:2237;s:26:\"0:=hT?GUNk[2XL~FVElg*NXAIA\";i:2238;s:13:\"sP=hT?GUjClBA\";i:2239;s:15:\"4r=hT?GUO[L&YLA\";i:2240;s:88:\"\"X=hT?GUjClBrL.4Fx}MBA$T>hT?GU5A$AaDSOYMjhT?GUNk($XLqCVElg*NZmYIlBVN.4?zrj,E:A3(y28(F\"A\";i:2242;s:57:\"H0>hT?GUNk($XLqCVE^2*NZmoIlB&!jC9Ag4mt,uj@y2+FEt&ayo=hT?GUTClBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMu7Ct5F_Q3nE3cAi\"tBJHNz*:uWA\";i:2250;s:13:\"sP=hT?GUjClBA\";i:2251;s:56:\"m=>hT?GU5A$A;CSOYMLUBt:C_Q3nE3cAi\"mBJHNzzguW:CqI:$vbOAQA\";i:2252;s:13:\"sP=hT?GUjClBA\";i:2253;s:70:\"su=hT?GUO[L&YLvDVElg*NHA3()\",ub@uC5FLvLvSQ[zDAc4it,ub@uC5F7vLvSQ[zFAEA\";i:2254;s:154:\"nS=hT?GUjClBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMLUBt5F_Q3nE3cAgAtBJHNzRm=(bATq=hT?GU~AlB#L.4FxrjHEPFRtqBJHNzFKuWoIqI:$vbb%6]:C7XzXJI|+BAZL$(k)Noa.k+vW=JqI:$vbyAQA\";i:2255;s:39:\"uP=hT?GU/A$AGDSOYMjhT?GUNk($XLqCVElg*NZmdJlBVN.4Fxrj,EbBQA\";i:2259;s:15:\"KV=hT?GUNkn_bLA\";i:2260;s:72:\"Em>hT?GUNk+,XL~FVElg*NFA2W&\",ub@uC5FhtLvSQ[zDA/hht,ub@y2XcMt5F_Q3nE3cAgA\";i:2261;s:56:\"ru?hT?GUjClB#L.4Fxs@AA|e=hT?GU5A$A{CSOYMLUBtaS_Q3nE3cAgA\";i:2262;s:37:\"Yx>hT?GU&FlBMM.4Fx~5HAq1>hT?GUNkh+ZLA\";i:2263;s:15:\"Wx>hT?GUNkh+YLA\";i:2264;s:12:\"Wx>hT?GU5A$A\";i:2266;s:48:\"%5=hT?GU4DlBkM.4Fxs@AAw(=hT?GU5A$A\"CSOYMj<9t3ACA\";i:2267;s:51:\"%5=hT?GU4DlBkM.4Fx~5FAZ4>hT?GUNk@JXLIIVElg*N7gHrlBA\";i:2268;s:48:\"%5=hT?GU4DlBkM.4Fx~5FAw(=hT?GU5A$AGDSOYMjA2W&\",ub@uC5FhtLvSQ[zDA/hht,ub@uC5F%tLvSQ[zDAbLjt,ub@y2iLOtuW_Q3nE30oL&6F7vLvSQ[zdQvT$ABDSOYMM%Ct>2_Q3nE3_AgA\";i:2271;s:42:\"MV=hT?GUNkn_XL;PVElg*NZmtJlBCO.4Fxrj,E:AIA\";i:2272;s:29:\"ig>hT?GUNkQ/YL;PVElg*NkV#TlBA\";i:2273;s:81:\"yP=hT?GU/A$AGDSOYMjhT?GUNk$5YLA\";i:2277;s:13:\"4r=hT?GU\"tlBA\";i:2278;s:12:\"yd=hT?GUZA$A\";i:2279;s:48:\"YE=hT?GUZA$AJ=hT?GU5A$A\";i:2282;s:42:\"@J>hT?GUNkjgXL*BVElg*NZm8MlBdN.4FxrjHEOEQA\";i:2283;s:26:\"#5=hT?GUiFlBkM.4Fxrj,EQAIA\";i:2284;s:80:\"PV=hT?GUO[w(YL:CVElg*NZmRNlB]O.4Fxrj,EnBS\"&\",ub@y2ZcItuW_Q3nE3H#A^5FGuLvSQ[zHAEA\";i:2285;s:12:\"EH=hT?GU5A$A\";i:2286;s:88:\"cx=hT?GUO[fZaLvDVElg*N7gdplB(L.4Fxs@CA+h=hT?GUO[u8aL0EVElg*NXA2W=\",ub@y2,yHt>2_Q3nE3_AgA\";i:2287;s:15:\"\"l>hT?GUNk+,XLA\";i:2288;s:33:\"ou=hT?IUO[L&YL#zMTqKlB9FkcwYA:E\"A\";i:2289;s:100:\"6d=hT?GUZA$A`CSOYMLUBt@Q_Q3nE3cAi\"rBJHNzFKuW$AVElg*NHAJt&\",ub@uC5FxtLvSQ[zDAFtht,ub@uC5F[tLvSQ[zEAEA\";i:2290;s:48:\"1d=hT?GUO[*,ZL?DVElg*NHAK\"it,ub@uC5FbvLvSQ[zDAEA\";i:2291;s:114:\"CY=hT?GUjClB=N.4Fxrj,EqCS\")\",ub@MI5F{uLvSQ[zDAFtit,ub@uC5FbvLvSQ[zDAbLht,ub@/B5FhtLvSQ[zDA/hht,ub@uC5F%tLvSQ[zDAEA\";i:2292;s:13:\"sP=hT?GUjClBA\";i:2293;s:12:\"sP=hT?GU/A$A\";i:2294;s:56:\"fS=hT?GUeBlBbL.4Fxs@AA6F=hT?GUDClBjL.4Fxs@AAYL=hT?GU5A$A\";i:2295;s:15:\"F0>hT?GUNkmnXLA\";i:2296;s:83:\"L0>hT?GUNk($XL*BVElg*NJA3(,\",ub@ZR5F+uLvSQ[zLA/hit,ub@uC5FLvLvSQ[zdQ3T$A|CSOYMLUBtA\";i:2297;s:55:\"7r=hT?GUO[WEaL5FVElg*NkVvTlB]O.4Fxrj,EnBS\"+\",ub@y2OtItA\";i:2298;s:56:\"wP=hT?GU/A$A_CSOYMLUBtrP_Q3nE3cAgArBJHNz)duWNJqI:$vbuAQA\";i:2299;s:64:\"ax=hT?GUO[fZaL*BVElg*NkVxNlB;L.4FxrjHEPFQA,\",ub@tV5F1xLvSQ[zKAEA\";i:2300;s:48:\"YE=hT?GU5A$AhT?GUNkBmYLi\"LvSQ[zdQbP$A\",ub@y2unNtA\";i:2311;s:134:\"UV=hT?GUO[w(YLvDVElg*NXA3()\",ub@y26(Nt@Q_Q3nE30o!56FbvLvSQ[zdQ`R$A;CSOYMLUBt:C_Q3nE3cAi\"mBJHNz*:uW:CqI:$vbOAS\"|\",ub@y2l4It>2_Q3nE3_AgA\";i:2312;s:105:\"dE=hT?GU5A$ACSOYMLUBtGO_Q3nE3cAi\"qBJHNzFKuWoIqI:$vbb%6]:C7XzXJI|+BAa4&(k)Noa.HtxWA\";i:2313;s:100:\"dE=hT?GU5A$AhT?GUNkBmYLA\";i:2315;s:150:\"3P=hT?GU/A$A}CSO}M5qBt&ayAhtoBJHNzRmeAQ\"GO_Q3nE3UAi\"qBJHNzFKuWoIqI:$vbTBi\"rBJHNzFKuW$AVElg*NZm5VlBfL.4Fxrj,E&CRtmBJHNz*:uW:CqI:$vby<3r:C3bzXJI|+zJ_EgA\";i:2316;s:59:\"wP=hT?GUO[bSYLi\"LvSQ[zDAyWht,ub@/B5FxtLvSQ[zDAFtht,ub@uC5FA\";i:2317;s:12:\"\"l=hT?GU5A$A\";i:2318;s:45:\"YE=hT?GU5A$AhT?GUNky(YL,bVElg*NbAIA\";i:2323;s:158:\">a>hT?GUNkDA6FE0LvSQ[zMTXL$A:DSOYMjhT?GUNkGHZLGOVElg*NZmjXlBXP.4Fxrj,E_CQA~\",ub@y2ZcJt.o`Q3nE3H#wD6Fx9LvSQ[zXAEA\";i:2327;s:80:\".a>hT?GUNkrIZLGOVElg*NZmzXlBXP.4Fxrj,E{CQA~\",ub@y2]hJt.o`Q3nE3H#VE6Fx9LvSQ[zXAEA\";i:2328;s:56:\"ZE=hT?GU5A$ACSOYMLUBt^X_Q3nE3eC$A\";i:2329;s:96:\"zP=hT?GU/A$A;CSOYMLUBt:C_Q3nE3cAi\"mBJHNz*:uW:CqI:$vbOAQA:\",ub@y2LA1W|LqI:$vbb%=/:CwYzXJI|+zJyCgA\";i:2330;s:26:\"M&=hT?GUNk4[XLFBVElg*NHAIA\";i:2331;s:26:\"M&=hT?GUNk4[XLFBVElg*NHAIA\";i:2332;s:70:\"bx=hT?GU9ElBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMLUBt5F_Q3nE3cAgAuBJHNzRmK)XABA\";i:2333;s:67:\"ax=hT?GUO[fZaLXLVElg*N7gjnlBrL.4Fxrj9C#BRtqBJHNz)duWQQqI:$vbyhT?GUO[w(YLA\";i:2337;s:37:\"Yx=hT?GUO[:oaLDHVElg*N9AJt.\",ub@?P5FA\";i:2338;s:26:\"M&=hT?GUNk4[XL~FVElg*N1AIA\";i:2339;s:142:\"xu?hT?GUO[WEaLvDVElg*N7grflB(L.4FxrjHE~DQA*\",ub@y2ARMtaS_Q3nE30oal6FX7LvSQ[zFAEA&(k)NoaI:CLXzXJI|+zJ?Di\"4BJHNz)duWi6qI:$vbyezXJI|+zJCGgA\";i:2340;s:159:\"A3?hT?GUNkoBYL~FVElg*N7g_klBMM.4Fx}MFAO/=hT?GU5A$AHDSOYMLUBtdZ_Q3nE3>C$A\"CSOYMj<9t3AP/%(k)Noa.EtxWnbqI:$vby<;v:CjXzXJI{ZNA^9#(k)Noa.M7zWoIqI:$vbPBi\"rBJHNz*:uWA\";i:2341;s:45:\"YE=hT?GU5A$AhT?IUNkJOZL#zMTUMlBA\";i:2343;s:59:\"&5=hT?GUiFlBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMjLtA\";i:2346;s:86:\"tu=hT?GUNk@JXLZFVElg*NZmVBlBMM.4Fx~5HAO/=hT?GU5A$AHDSOYMLUBtoI_Q3nE38Ai\"nBJHNzRmhT?GUO[w(YLi\"LvSQ[zDAyWht,ub@uC5FxtLvSQ[zDAFtht,ub@uC5F+uLvSQ[zSA/hit,ub@uC5FLvLvSQ[zSAc4it,ub@y2)FOtoI_Q3nE38Ai\"nBJHNzRmhT?GUO[w(YLA\";i:2353;s:39:\"dS=hT?GUOBlB|L.4FxrjHEWEQA(\",ub@y2+FItA\";i:2354;s:50:\"vP=hT?GU/A$A}CSOYMAlBt^X_Q3nE30o~46FQwLvSQ[zMTkM$A\";i:2355;s:29:\"tP=hT?GUO[bSYL?DVElg*N7gdplBA\";i:2356;s:147:\"d@>hT?GU}DlBHP.4Fxrj,E9BRt&BJHNzFKuW.oqI:$vbOAS\"[\",ub@xJ5FRtLvSQ[zDAyWht,ub@uC5FxtLvSQ[zDAFtht,ub@uC5F+uLvSQ[zDA/hit,ub@uC5FLvLvSQ[zDAc4it,ub@uC5FA\";i:2357;s:114:\"kS=hT?GUeBlBrL.4Fxrj9C#BRtlBJHNzFKuWlBqI:$vbOARtmBJHNzFKuW:CqI:$vbOAS\")\",ub@uC5F{uLvSQ[zDAFtit,ub@uC5FbvLvSQ[zDAEA\";i:2358;s:154:\"ix=hT?GUCFlBrP.4Fx~5FA;C@hT?GUNk^QYL*BVElg*NJA2W.\",ub@xJ5F+uLvSQ[zDA/hit,ub@!S5FLvLvSQ[zDAc4it,ub@!S5FQwLvSQ[zdQ9R$A[CSOYMjhT?GUNk&TZL*BVElg*NbAJt)\",ub@y2XcMtrP_Q3nE3H#`E5FLvLvSQ[zdQ^P$A|CSOYMjhT?GUO[w(YLA\";i:2364;s:59:\"Dm>hT?GUNkEtYLi\"LvSQ[zDAyWht,ub@uC5FxtLvSQ[zDAFtht,ub@uC5FA\";i:2365;s:26:\"`X?hT?GUjClBYM.4Fxrj,EZBQA\";i:2366;s:15:\"\"l>hT?GUNk\";XLA\";i:2367;s:181:\"[a>hT?GUNk{XZLGOVElg*NZmtZlBXP.4Fxrj,ERDQA~\",ub@y2+FKt.o`Q3nE3H#}L6F[tLvSQ[zNAEA((k)Noa.$yyW$AVElg*NXAJt&\",ub@uC5FxtLvSQ[zDAFtht,ub@uC5F+uLvSQ[zDA/hit,ub@uC5FLvLvSQ[zDAc4it,ub@/B5FA\";i:2368;s:83:\"bE=hT?GU5A$ACSOYMLUBt^X_Q3nE3uC$AGDSOYMjJ=hT?GU5A$A\";i:2370;s:15:\"L&=hT?GUNk4[XLA\";i:2371;s:45:\"YE=hT?GU5A$AYLA\";i:2375;s:103:\"dE=hT?GU5A$A5F37LvSQ[zMT%F$A\";i:2391;s:42:\"MV=hT?GUNk1:XL;PVElg*NZmiKlB3L.4Fxrj,EfDQA\";i:2392;s:26:\"LV=hT?GUO[w(YL:CVElg*NbAIA\";i:2393;s:72:\"Q&=hT?GUO[0:aL;PVElg*NZmuGlB#L.4Fxs@AA|e=hT?GU5A$A{CSOYMLUBtaS_Q3nE3MAgA\";i:2394;s:45:\"YE=hT?GU5A$ACSOYMLUBtA\";i:2395;s:59:\"fS=hT?GUeBlBbL.4Fxrj,EQAJt&\",ub@uC5FxtLvSQ[zDAFtht,ub@uC5FA\";i:2396;s:70:\"aE=hT?GU5A$AhT?GUNky(YLvDVElg*NFAIA\";i:2400;s:59:\"wP=hT?GUO[bSYLvDVElg*NHA3()\",ub@uC5FLvLvSQ[zDAc4it,ub@uC5FA\";i:2401;s:15:\"L&=hT?GUNk4[XLA\";i:2402;s:72:\"gS=hT?GUeBlB|L.4Fxrj9CoCRtlBJHNzFKuWlBqI:$vbOARtmBJHNzRmC)sAYL=hT?GU5A$A\";i:2403;s:75:\"gS=hT?GUeBlB|L.4Fxrj,EhDRtlBJHNzFKuWlBqI:$vbyhT?GUNkEtYL~FVElg*N7g_klB?L.4Fx}MDATq=hT?GUO[UqaL5FVElg*NkVvTlBMM.4Fx}MFAw(=hT?GU5A$AJDSOYMjhT?GUNk\";XLA\";i:2418;s:138:\"3P=hT?GUjClBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMtOBt5F_Q3nE3cAgAqBJHNznEuW(HqI:$vbuAQA*\",ub@JB5FbvLvSQ[zLA:>ht,ub@y2^>KtXL_Q3nE3H#:V6F?zLvSQ[zKAEA\";i:2419;s:12:\"sP=hT?GU/A$A\";i:2420;s:130:\"DY=hT?GUNkEtZL%NVElg*NVA3((\",ub@y2+FLtlB_Q3nE3cAgAmBJHNzFKuWKCqI:$vbyWzXJI|+BAa4#(k)NoGE:CrXzXJI{ZNAx(#(k)NoGE:C7XzXJI{ZNACA\";i:2421;s:15:\"?2?hT?GUNkoBYLA\";i:2422;s:116:\"eE=hT?GU5A$AhT?GUNkEtYLeGVElg*N3AJt)\",ub@/B5F{uLvSQ[zDAFtit,ub@y2ARMtaS_Q3nE3cAi\"&BJHNzRm2AQ\"DH_Q3nE3kAgA\";i:2425;s:26:\"ou=hT?GU=ElBVN.4Fxrj,E5BQA\";i:2426;s:12:\"Qj=hT?GU5A$A\";i:2427;s:200:\"oC_);\",ub@nH5FAwLvSQ[zdQiS$APDSOYMjjt,ub@ZR5FGuLvSQ[zGAyWit,ub@uC5F{uLvSQ[zdQiS$A{CSOYMAlCtaS_Q3nE30o~46FQwLvSQ[zMT6K$A;CSOYMjhT?GUNk\";XLA\";i:2429;s:59:\"fS=hT?GUOBlBbL.4FxrjHEbFS\"&\",ub@uC5FxtLvSQ[zDAFtht,ub@uC5FA\";i:2430;s:67:\"Dm>hT?GUNk$5YL~FVElg*N7g)klB;L.4Fxs@CAvW=hT?GUNky(YLqCVElg*NZmrPlBA\";i:2431;s:56:\"wP=hT?GU/A$A_CSOYMu7CtrP_Q3nE3cAgArBJHNzFKuWNJqI:$vbOAQA\";i:2432;s:175:\"[,=hT?GUjClBrL.4Fxrj9C#BS\")\",ub@y2OtBtrP_Q3nE30oY;6FLvLvSQ[zMT$Ai\"rBJHNzRmC)6A;C=hT?GU5A$Alt,ub@nH5FQwLvSQ[zCAbLjt,ub@y2)FOtgg_Q3nE30ob]6FA\";i:2433;s:13:\"),=hT?GUjClBA\";i:2434;s:131:\"fx=hT?GU^ClBYM.4Fxrj,EZBQA:\",ub@y2LA1WDHqI:$vby<:C:CrXzXJI|+zJwAQA*\",ub@y2OtBtaS_Q3nE3H#pI5Fz3LvSQ[zWA:>rt,ub@y28(Ftb#_Q3nE31`+>5FA\";i:2435;s:13:\"bS=hT?GUeBlBA\";i:2436;s:13:\"sP=hT?GUjClBA\";i:2437;s:26:\"#5=hT?GUiFlBrL.4Fxrj9C#BQA\";i:2438;s:37:\"uP=hT?GU/A$A3DSOYMjhT?GUjClBbL.4Fxs@AA6F=hT?GU5A$A=CSOYMLUBt5F_Q3nE3cAgAqBJHNzFKuW(HqI:$vbOAQA*\",ub@uC5FbvLvSQ[zDAEA\";i:2442;s:24:\"cS=hT?GUjClB?L.4Fxs@BABA\";i:2443;s:194:\"oC_){\",ub@y2+FFtPj_Q3nE3RB$A3DSOYMjBlB;L.4FxrjHE2EQA\";i:2444;s:15:\"\"l>hT?GUNk+,XLA\";i:2445;s:13:\"yd=hT?GUDClBA\";i:2446;s:26:\"Rj=hT?GUDClB}M.4Fxrj,ELDQA\";i:2447;s:61:\"&5=hT?GUiFlBoM.4Fxrj,E3DS\">\",ub@y28(CtPj_Q3nE3RB$A3DSOYMjhT?GUNkmnXLNJVElg*NZmKClBAM.4FxrjHEsEQA,\",ub@qO5F[tLvSQ[z#K+G$ALDSOYMjhT?GUNk^QXLA\";i:2457;s:73:\"rB>hT?GUO[DtaLvDVElg*NZmKClB(L.4Fxs@AA+h=hT?GUDClB;L.4Fxs@AAkn=hT?GUTClBA\";i:2458;s:15:\"Wx>hT?GUNk_9ZLA\";i:2459;s:15:\">J>hT?GUO[:`ZLA\";i:2460;s:15:\">J>hT?GUO[U|ZLA\";i:2461;s:29:\"ou=hT?GUO[L&YLvjVElg*NZmmelBA\";i:2462;s:37:\"Yx=hT?GU^ClBYM.4FxrjGA1k>hT?GUO[w(YLA\";i:2463;s:70:\"su=hT?GUNkMVYL_EVElg*NZAJt)\",ub@JB5F{uLvSQ[zDAFtit,ub@JB5FbvLvSQ[zDAEA\";i:2464;s:15:\"i=>hT?GUNk($ZLA\";i:2465;s:53:\"Zx=hT?GUO[`XaLIIVElg*NzA3((\",ub@y2J\"xW7fqI:$vby<*h:CA\";i:2466;s:56:\"=o=hT?GUTClB#L.4Fxs@AA|e=hT?GU5A$A{CSOYMLUBtaS_Q3nE3cAgA\";i:2467;s:61:\"wP=hT?GU/A$AWDSOYMu7BtdZ_Q3nE3H#K`5FlxLvSQ[zNAc4mt,ub@y2l4FtA\";i:2468;s:15:\"KV=hT?GUNkN&XLA\";i:2469;s:26:\"tP=hT?GU/A$ABDSOYMjhT?GUNkn_XLA\";i:2471;s:15:\"\"l>hT?GUNkEtYLA\";i:2472;s:15:\"\"l>hT?GUO[w(YLA\";i:2473;s:15:\"\"l>hT?GUO[w(YLA\";i:2474;s:15:\"\"l>hT?GUO[w(YLA\";i:2475;s:56:\"8}>hT?GUNkH0XL;PVElg*NZm@QlBEM.4Fxrj,EXBRttBJHNzRmvt0ABA\";i:2476;s:15:\"?2>hT?GUNky(ZLA\";i:2477;s:15:\"?2>hT?GUNk|)ZLA\";i:2478;s:30:\"?2>hT?KUNkQ/wW#zMT(P$ARmJXtADA\";i:2479;s:13:\"c#=hT?GUNElBA\";i:2480;s:12:\">J=hT?GUpA$A\";i:2481;s:166:\"4P=hT?GUO[bSYLvDVElg*NHA3()\",ub@JB5FLvLvSQ[zDAc4it,ub@JB5FmuLvSQ[zMT2G$A[CSOYMjZLA\";i:2486;s:15:\"nu=hT?GUNk\";ZLA\";i:2487;s:15:\"nu=hT?GUNkk=ZLA\";i:2488;s:15:\"KV=hT?GUNk/>ZLA\";i:2489;s:15:\"KV=hT?GUNkT@ZLA\";i:2490;s:15:\"KV=hT?GUNk4[ZLA\";i:2491;s:15:\"KV=hT?GUNkC^ZLA\";i:2492;s:15:\"KV=hT?GUNkn_ZLA\";i:2493;s:15:\"KV=hT?GUNk<`ZLA\";i:2494;s:15:\"KV=hT?GUNkW|ZLA\";i:2495;s:15:\"KV=hT?GUNk7}ZLA\";i:2496;s:15:\"KV=hT?GUNkF\"6FA\";i:2497;s:59:\"ru=hT?GUNkk=ZLvDVElg*NVA3()\",ub@nH5FLvLvSQ[zKAc4it,ub@nH5FA\";i:2498;s:15:\"\"l>hT?GUNkoBeLA\";i:2499;s:26:\"Am>hT?GUNkoBeL.IVElg*N_FQA\";i:2500;s:91:\"yP=hT?GUO[@2aL}YVElg*NZmKilB9N.4FxrjHEJFRtlBJHNzFKuWlBqI:$vby<]K:C+WzXJI|+BAwW#(k)Noa.Z|uWA\";i:2501;s:39:\"uP=hT?GUO[bSYLDHVElg*N9A3(>\",ub@y2CRNtA\";i:2502;s:13:\"sP=hT?GUjClBA\";i:2503;s:157:\"!d=hT?GU5A$A`CSOYMLUBt@Q_Q3nE3cAi\"rBJHNzFKuWvDqI:$vbb%V[:C;XzXJI|+zJ4IgAtBJHNzRm=(bA[Q@hT?GUTClBSO.4Fx}MDA$T?hT?GUNkGHaL;PVElg*NkV#TlBMM.4Fx~5HAkn=hT?GUTClBA\";i:2504;s:15:\"Wx>hT?GUO[zdaLA\";i:2505;s:61:\"ZE=hT?GUZA$A}CSOYM*+Bt^X_Q3nE30oL&6F00LvSQ[zNA/hnt,ub@y2CRNtA\";i:2506;s:20:\"hg>hT?IUNkrIxW#zNAEA\";i:2507;s:12:\"sP=hT?GU/A$A\";i:2508;s:155:\"c@=hT?GUNk@JaL%NVElg*NHA2W=\",ub@y2J\"xWvDqI:$vbSARttBJHtzRm=(TAq10o~4YLrvLvSQ[zMAFtjt,ub@tV5FlxLvSQ[zNAEA%(k)Noa.H\"aLi\"LvSQ[zBA:>jt,ub@y2XcQt(,_Q3nE3H#Mv6FA\";i:2509;s:13:\"sP=hT?GUjClBA\";}","no");
INSERT INTO `wp_options` VALUES("2290","woocommerce_enable_reviews","yes","yes");
INSERT INTO `wp_options` VALUES("2319","external_updates-booked-calendar-feeds","O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1502624461;s:14:\"checkedVersion\";s:5:\"1.1.2\";s:6:\"update\";O:8:\"stdClass\":7:{s:2:\"id\";i:0;s:4:\"slug\";s:21:\"booked-calendar-feeds\";s:7:\"version\";s:5:\"1.1.2\";s:8:\"homepage\";s:20:\"https://getbooked.io\";s:12:\"download_url\";s:70:\"http://boxyupdates.com/get/?action=download&slug=booked-calendar-feeds\";s:14:\"upgrade_notice\";N;s:8:\"filename\";s:47:\"booked-calendar-feeds/booked-calendar-feeds.php\";}}","no");
INSERT INTO `wp_options` VALUES("2320","external_updates-booked-frontend-agents","O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1502624461;s:14:\"checkedVersion\";s:6:\"1.1.14\";s:6:\"update\";O:8:\"stdClass\":7:{s:2:\"id\";i:0;s:4:\"slug\";s:22:\"booked-frontend-agents\";s:7:\"version\";s:6:\"1.1.14\";s:8:\"homepage\";s:27:\"http://booked.boxydemos.com\";s:12:\"download_url\";s:71:\"http://boxyupdates.com/get/?action=download&slug=booked-frontend-agents\";s:14:\"upgrade_notice\";N;s:8:\"filename\";s:49:\"booked-frontend-agents/booked-frontend-agents.php\";}}","no");
INSERT INTO `wp_options` VALUES("2321","external_updates-booked-woocommerce-payments","O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1502624461;s:14:\"checkedVersion\";s:5:\"1.4.5\";s:6:\"update\";O:8:\"stdClass\":7:{s:2:\"id\";i:0;s:4:\"slug\";s:27:\"booked-woocommerce-payments\";s:7:\"version\";s:5:\"1.4.5\";s:8:\"homepage\";s:40:\"https://getbooked.io/booked-woocommerce/\";s:12:\"download_url\";s:76:\"http://boxyupdates.com/get/?action=download&slug=booked-woocommerce-payments\";s:14:\"upgrade_notice\";N;s:8:\"filename\";s:59:\"booked-woocommerce-payments/booked-woocommerce-payments.php\";}}","no");
INSERT INTO `wp_options` VALUES("2322","booked_wc_payment_options","a:3:{s:17:\"enable_thumbnails\";s:6:\"enable\";s:19:\"enable_auto_cleanup\";s:7:\"disable\";s:12:\"cleanup_mode\";s:10:\"twicedaily\";}","yes");
INSERT INTO `wp_options` VALUES("2406","fw:ext:cf:fd:5731da8bcfb8b355c69b796916209756","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5731da8bcfb8b355c69b796916209756\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2408","fw:ext:cf:fd:6e0c0a66f7bf1e2b77a8dbf405d463f7","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6e0c0a66f7bf1e2b77a8dbf405d463f7\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2410","fw:ext:cf:fd:2dbe6c57952d84234a762ccbd4133a5e","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2dbe6c57952d84234a762ccbd4133a5e\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2412","fw:ext:cf:fd:800e71e1785a02b66d1d162c51ba6365","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"800e71e1785a02b66d1d162c51ba6365\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2414","fw:ext:cf:fd:7087b63f6680d0abc826f984537ed7f8","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7087b63f6680d0abc826f984537ed7f8\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2416","fw:ext:cf:fd:c8f2650ef865e8657533d7c0c10c2e2f","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c8f2650ef865e8657533d7c0c10c2e2f\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2418","fw:ext:cf:fd:a4aecb257efc4df8c937e436f1e1f8c2","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a4aecb257efc4df8c937e436f1e1f8c2\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2448","fw:ext:cf:fd:6da0d25ac82677d557311d4487fad67f","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6da0d25ac82677d557311d4487fad67f\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2450","fw:ext:cf:fd:a4fd7e071967ac86c3df445f290cc4a3","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a4fd7e071967ac86c3df445f290cc4a3\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2452","fw:ext:cf:fd:bbbe0159ace75da14d63805556eb3c48","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bbbe0159ace75da14d63805556eb3c48\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2454","fw:ext:cf:fd:281513e1238a517b28d9ae2750b13ef8","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"281513e1238a517b28d9ae2750b13ef8\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2456","fw:ext:cf:fd:2d2dcb0b62304b33bb4cd1a67424a06b","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2d2dcb0b62304b33bb4cd1a67424a06b\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2458","fw:ext:cf:fd:74973085a80b6d4032ed47a3c617d77d","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"74973085a80b6d4032ed47a3c617d77d\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2460","fw:ext:cf:fd:eb0558971d58f96192b4a3533f936050","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"eb0558971d58f96192b4a3533f936050\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2461","fw:ext:cf:fd:7fb4cd38a097d5604ba6e87601715bbb","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7fb4cd38a097d5604ba6e87601715bbb\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2463","fw:ext:cf:fd:859fed055dec0444eac66d11bea9250e","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"859fed055dec0444eac66d11bea9250e\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2465","fw:ext:cf:fd:a3e2d522b105e963022f0744f167e38e","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a3e2d522b105e963022f0744f167e38e\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2467","fw:ext:cf:fd:c5834136eff81c177727b99e74b586c8","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c5834136eff81c177727b99e74b586c8\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2469","fw:ext:cf:fd:5e0e6b321344e2714a9ee086cc0b8c32","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5e0e6b321344e2714a9ee086cc0b8c32\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2471","fw:ext:cf:fd:ada6bfd9d485fa13dfbb657dae5f7604","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ada6bfd9d485fa13dfbb657dae5f7604\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2472","fw:ext:cf:fd:bf5aa73fec767f893fe21c2aea18776a","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bf5aa73fec767f893fe21c2aea18776a\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2474","fw:ext:cf:fd:ca92b073da03e65349f45c8bb3e74653","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ca92b073da03e65349f45c8bb3e74653\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2476","fw:ext:cf:fd:0f1e89a2c7ba662120fef2cc86989e05","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0f1e89a2c7ba662120fef2cc86989e05\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2478","fw:ext:cf:fd:fee38dff6c26f9a89fc40c570c367daf","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fee38dff6c26f9a89fc40c570c367daf\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2480","fw:ext:cf:fd:7e131a646cdc6147fffbdc44ec5d5577","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7e131a646cdc6147fffbdc44ec5d5577\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2481","fw:ext:cf:fd:5ddca17a45fcf4e05085d2fe896b9833","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5ddca17a45fcf4e05085d2fe896b9833\";s:4:\"form\";a:1:{s:4:\"json\";s:1415:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("2484","fw:ext:cf:fd:3288b7f2984875ee27e8eb84ec0ff603","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3288b7f2984875ee27e8eb84ec0ff603\";s:4:\"form\";a:1:{s:4:\"json\";s:1421:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2486","fw:ext:cf:fd:d01ded816e9599a81759854c6bd0cf76","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d01ded816e9599a81759854c6bd0cf76\";s:4:\"form\";a:1:{s:4:\"json\";s:1421:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2488","fw:ext:cf:fd:fc3aba801be96dcd048aca480948e7c2","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fc3aba801be96dcd048aca480948e7c2\";s:4:\"form\";a:1:{s:4:\"json\";s:1449:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2490","fw:ext:cf:fd:227334b736c2d39d79e9c5a009ff21ec","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"227334b736c2d39d79e9c5a009ff21ec\";s:4:\"form\";a:1:{s:4:\"json\";s:1449:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2491","fw:ext:cf:fd:02e67d370ee2260c13da6c679c220ce3","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"02e67d370ee2260c13da6c679c220ce3\";s:4:\"form\";a:1:{s:4:\"json\";s:1471:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2493","fw:ext:cf:fd:96e40eaeb5266d1117d4101b7a253f21","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"96e40eaeb5266d1117d4101b7a253f21\";s:4:\"form\";a:1:{s:4:\"json\";s:1471:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2495","fw:ext:cf:fd:32aebbcf829e0fdbe7d8084cc526a9e8","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"32aebbcf829e0fdbe7d8084cc526a9e8\";s:4:\"form\";a:1:{s:4:\"json\";s:1477:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2497","fw:ext:cf:fd:ca48e710d2118900ee00a19d61a5ca97","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ca48e710d2118900ee00a19d61a5ca97\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2531","fw:ext:cf:fd:70cb24972219c5257c916da403ca97d9","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"70cb24972219c5257c916da403ca97d9\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Order Pickup\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2534","fw:ext:cf:fd:966bee734e62175f724d68632f207b9d","a:15:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"966bee734e62175f724d68632f207b9d\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2536","fw:ext:cf:fd:2e4a39161dbe4808f2574f3ef4390a31","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2e4a39161dbe4808f2574f3ef4390a31\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2538","fw:ext:cf:fd:717ed5f1c7f69489750079886673fa7a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"717ed5f1c7f69489750079886673fa7a\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2549","fw:ext:cf:fd:35305ade98eb167f1e0ea13bb1b734a1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"35305ade98eb167f1e0ea13bb1b734a1\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2551","fw:ext:cf:fd:569efefba700f9ab520802a10abca034","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"569efefba700f9ab520802a10abca034\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2553","fw:ext:cf:fd:c9b1315ca35859920770de9a7d23e382","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c9b1315ca35859920770de9a7d23e382\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2560","fw:ext:cf:fd:f47bd6243a6755977b0141c8c774e153","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f47bd6243a6755977b0141c8c774e153\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2562","fw:ext:cf:fd:d91ec3a58335759aea66faff0b559aba","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d91ec3a58335759aea66faff0b559aba\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2564","fw:ext:cf:fd:bd904c17f96c30f81f4c7676b18e5841","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bd904c17f96c30f81f4c7676b18e5841\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2566","fw:ext:cf:fd:4ed4fa9bd58c3ed1496158eabfc88f19","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4ed4fa9bd58c3ed1496158eabfc88f19\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2568","fw:ext:cf:fd:cad28e3aa289cbb8af3624bdd52f2766","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cad28e3aa289cbb8af3624bdd52f2766\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2571","fw:ext:cf:fd:c7fb77cb5e382b81e46136a3e06adc65","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c7fb77cb5e382b81e46136a3e06adc65\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2595","widget_custom_html","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("2598","auto_core_update_notified","a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"mafeshmashakl@gmail.com\";s:7:\"version\";s:5:\"5.0.7\";s:9:\"timestamp\";i:1571107087;}","no");
INSERT INTO `wp_options` VALUES("2623","fw:ext:cf:fd:75fa205eb811ba351daa9408f3b62d4e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"75fa205eb811ba351daa9408f3b62d4e\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2625","fw:ext:cf:fd:9cb046361048b40f403f901314348fc3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9cb046361048b40f403f901314348fc3\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2626","fw:ext:cf:fd:5673e56ea1b45717e4f79295a4994967","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5673e56ea1b45717e4f79295a4994967\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2628","fw:ext:cf:fd:d811d2cf9cc677ffee4a19f03cceb291","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d811d2cf9cc677ffee4a19f03cceb291\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2629","fw:ext:cf:fd:e45d11bb0dfd65b02cd54eec00cb525c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e45d11bb0dfd65b02cd54eec00cb525c\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2631","fw:ext:cf:fd:8d6423ecd7687aa7af0ffcd39e70fa3e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8d6423ecd7687aa7af0ffcd39e70fa3e\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2632","fw:ext:cf:fd:49b89847b9712435f981031d175df090","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"49b89847b9712435f981031d175df090\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2635","fw:ext:cf:fd:3744a41e4f2305ba5851e42f572dec89","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3744a41e4f2305ba5851e42f572dec89\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2637","fw:ext:cf:fd:e942d28a90a50138d8fd9d98b4637463","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e942d28a90a50138d8fd9d98b4637463\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2638","fw:ext:cf:fd:4138c60a1058f000e4e4b2c848512a6b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4138c60a1058f000e4e4b2c848512a6b\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2642","fw:ext:cf:fd:4c8b3e3adf63b6d0bf2b7642099efce9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4c8b3e3adf63b6d0bf2b7642099efce9\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2644","fw:ext:cf:fd:52b854c04bc994216e90bfac642b18bd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"52b854c04bc994216e90bfac642b18bd\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2645","fw:ext:cf:fd:3984e44ccfc6ad750a4d3527c6ea1933","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3984e44ccfc6ad750a4d3527c6ea1933\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2647","fw:ext:cf:fd:bdb9e727a6bff161496afe8b1aadfca3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bdb9e727a6bff161496afe8b1aadfca3\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2649","fw:ext:cf:fd:b54470194add339194f6c3cb6393a059","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b54470194add339194f6c3cb6393a059\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2651","fw:ext:cf:fd:a053fbc4cfd60b0d1aacf49ba09df3d4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a053fbc4cfd60b0d1aacf49ba09df3d4\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2652","fw:ext:cf:fd:3def334114a77a21da45c4157737ead8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3def334114a77a21da45c4157737ead8\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2653","fw:ext:cf:fd:0295f8bef87be2b0db77089a4cec6d2c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0295f8bef87be2b0db77089a4cec6d2c\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2655","fw:ext:cf:fd:89a63163be2279f4204ce7830941bc72","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"89a63163be2279f4204ce7830941bc72\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2657","fw:ext:cf:fd:cb75f5f00fda5f25647efca3695c8ea3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cb75f5f00fda5f25647efca3695c8ea3\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2659","fw:ext:cf:fd:1c9023259fa8d7109bd5ae0d0729b2df","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1c9023259fa8d7109bd5ae0d0729b2df\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2660","fw:ext:cf:fd:ddf29922855d65fb0560e2c9702ad3d1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ddf29922855d65fb0560e2c9702ad3d1\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2662","fw:ext:cf:fd:f97eef31454573b73f39c5dbef23e316","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f97eef31454573b73f39c5dbef23e316\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2664","fw:ext:cf:fd:767f549fedf5d99e3210d8f5870988eb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"767f549fedf5d99e3210d8f5870988eb\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2666","fw:ext:cf:fd:796ad29cd21a9bacc434963406cf5a19","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"796ad29cd21a9bacc434963406cf5a19\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2668","fw:ext:cf:fd:2e81304e132447b6b40ee47f24ce4567","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2e81304e132447b6b40ee47f24ce4567\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2670","fw:ext:cf:fd:fc2ba851fed46571e5e50d8c63af989e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fc2ba851fed46571e5e50d8c63af989e\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2672","fw:ext:cf:fd:835b8bbbfd1c4928ab5516b05d370bac","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"835b8bbbfd1c4928ab5516b05d370bac\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2674","fw:ext:cf:fd:e9109b33cbc06935645cd12f3d3c8313","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e9109b33cbc06935645cd12f3d3c8313\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2675","fw:ext:cf:fd:27686195c9b34c3ccd16128a57e60c16","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"27686195c9b34c3ccd16128a57e60c16\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2686","fw:ext:cf:fd:b70addde5a5b7640753fd0efd2200f78","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b70addde5a5b7640753fd0efd2200f78\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2688","fw:ext:cf:fd:30e3b72cdf35d74eefffa5eda8e5c892","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"30e3b72cdf35d74eefffa5eda8e5c892\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2690","fw:ext:cf:fd:88a1ca961e98e01c6cfb88c87570725b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"88a1ca961e98e01c6cfb88c87570725b\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2692","fw:ext:cf:fd:ca1b8e281bf35a920fbc561234ada28b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ca1b8e281bf35a920fbc561234ada28b\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2694","fw:ext:cf:fd:2aa6ca49ebc93507996a0dcdcb49f2aa","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2aa6ca49ebc93507996a0dcdcb49f2aa\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2695","fw:ext:cf:fd:42a24245bbc45f7b52c0f3ffa8fd799b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"42a24245bbc45f7b52c0f3ffa8fd799b\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2697","fw:ext:cf:fd:5128f80c94323c364608ad519609b2d2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5128f80c94323c364608ad519609b2d2\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2699","fw:ext:cf:fd:6b3748a48ecaf9bd29e3e550dbe7ae99","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6b3748a48ecaf9bd29e3e550dbe7ae99\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2701","fw:ext:cf:fd:d1c9e03484907c3bfa3e7218dfcaa4e6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d1c9e03484907c3bfa3e7218dfcaa4e6\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2738","fw:ext:cf:fd:e279ee56993ba5f59680a7f8b741ad9e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e279ee56993ba5f59680a7f8b741ad9e\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2739","fw:ext:cf:fd:a4b96d82571a0d5f0cf869977bd99169","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a4b96d82571a0d5f0cf869977bd99169\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2743","fw:ext:cf:fd:d42545aa967d8be998208b03b4c2473a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d42545aa967d8be998208b03b4c2473a\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2762","fw:ext:cf:fd:9088d1f64d59e543097186aa10a6ad24","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9088d1f64d59e543097186aa10a6ad24\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2764","fw:ext:cf:fd:09530252f245c953c5b2628eb32331fa","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"09530252f245c953c5b2628eb32331fa\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2766","fw:ext:cf:fd:cf05a7ad8e875bedf7dffac8ffc71849","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cf05a7ad8e875bedf7dffac8ffc71849\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2768","fw:ext:cf:fd:07e55c537feb2109dba585a51a00d6f5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"07e55c537feb2109dba585a51a00d6f5\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2790","fw:ext:cf:fd:e32c8f13f1372b8850278a0e6791d238","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e32c8f13f1372b8850278a0e6791d238\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2792","fw:ext:cf:fd:db2c6ce68736b9376f3d291d45c03750","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"db2c6ce68736b9376f3d291d45c03750\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2794","fw:ext:cf:fd:02a98235675dcb072c1a0f1050c9f4b6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"02a98235675dcb072c1a0f1050c9f4b6\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2795","fw:ext:cf:fd:0ca19fabbb78c96a01ea2b6cfe9563ce","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0ca19fabbb78c96a01ea2b6cfe9563ce\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2797","fw:ext:cf:fd:cfde8b186eef33ee840b2be76a6551d7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cfde8b186eef33ee840b2be76a6551d7\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2801","fw:ext:cf:fd:50fb3cefb671528d261270a81607d126","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"50fb3cefb671528d261270a81607d126\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2813","fw:ext:cf:fd:f8eecddfad6c834c1bbbad60040ab166","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f8eecddfad6c834c1bbbad60040ab166\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2814","fw:ext:cf:fd:46c7f3b35aecedc6342c7c600a369110","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"46c7f3b35aecedc6342c7c600a369110\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2816","fw:ext:cf:fd:bde03f5acfff5939e1d798afcc00ea71","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bde03f5acfff5939e1d798afcc00ea71\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2817","fw:ext:cf:fd:810e1750303c590a83beb640e04cb715","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"810e1750303c590a83beb640e04cb715\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2819","fw:ext:cf:fd:39d76e64f6f3b46bd977ca00f02d199d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"39d76e64f6f3b46bd977ca00f02d199d\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2820","fw:ext:cf:fd:e2f2bc8797c7d9947a7988af674c4e92","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e2f2bc8797c7d9947a7988af674c4e92\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2822","fw:ext:cf:fd:ac7e6f638840abc7d0d5f5402ad1812f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ac7e6f638840abc7d0d5f5402ad1812f\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2852","fw:ext:cf:fd:83c908f8037bb2554468c133e30f16a1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"83c908f8037bb2554468c133e30f16a1\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2854","fw:ext:cf:fd:4948f03f47aa805245579098ce659c1d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4948f03f47aa805245579098ce659c1d\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2856","fw:ext:cf:fd:b45483a3c19bb20db975834cdde3ea7c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b45483a3c19bb20db975834cdde3ea7c\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2858","fw:ext:cf:fd:1a882d4666099e3f972fe367bdcae9cc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1a882d4666099e3f972fe367bdcae9cc\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2860","fw:ext:cf:fd:1a49033e0197c63fa0a44f3d41f9cf15","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1a49033e0197c63fa0a44f3d41f9cf15\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2862","fw:ext:cf:fd:19bba9e7920f496502547d54a99e8e41","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"19bba9e7920f496502547d54a99e8e41\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2865","fw:ext:cf:fd:3881064d9723de50e1c4f6dbba9cf104","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3881064d9723de50e1c4f6dbba9cf104\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2867","fw:ext:cf:fd:1fed5242e0942c5e6550d062a957263a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1fed5242e0942c5e6550d062a957263a\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2894","fw:ext:cf:fd:12e7975301f54cd6f349d212d3390ec4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"12e7975301f54cd6f349d212d3390ec4\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2896","fw:ext:cf:fd:a698be7626079572f164be37f8246691","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a698be7626079572f164be37f8246691\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2938","fw:ext:cf:fd:e3faa730a877c98be7e1e1048dfe216e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e3faa730a877c98be7e1e1048dfe216e\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2940","fw:ext:cf:fd:401d8ca2441fe68772b4e0b7bdf697de","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"401d8ca2441fe68772b4e0b7bdf697de\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2942","fw:ext:cf:fd:2aaa75bdf9112cbd35488703a16ccd9e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2aaa75bdf9112cbd35488703a16ccd9e\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2944","fw:ext:cf:fd:dc56cdc83c65cc7a99ce1088fbe86e24","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"dc56cdc83c65cc7a99ce1088fbe86e24\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2946","fw:ext:cf:fd:a0717cda90d3110bcc83574836fa1583","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a0717cda90d3110bcc83574836fa1583\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2948","fw:ext:cf:fd:a326e04f3abbc15450f4ef77630fb478","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a326e04f3abbc15450f4ef77630fb478\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2950","fw:ext:cf:fd:f07b4c4def2d97c91df27a72c6997053","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f07b4c4def2d97c91df27a72c6997053\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2952","fw:ext:cf:fd:0a799ca6869ad82cc801c099e55d7ee1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0a799ca6869ad82cc801c099e55d7ee1\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("2954","fw:ext:cf:fd:4373a245055bf7ca2ad50f97769ad679","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4373a245055bf7ca2ad50f97769ad679\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3110","fw:ext:cf:fd:53e67e15f9151880e8a059e45af273db","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"53e67e15f9151880e8a059e45af273db\";s:4:\"form\";a:1:{s:4:\"json\";s:1562:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"2\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:22:\"with_padding dark_form\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3116","fw:ext:cf:fd:5300b472aaceab440f77019c8999fb42","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5300b472aaceab440f77019c8999fb42\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3117","fw:ext:cf:fd:27e12d1d67f36e1d056407fb6dfadcf6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"27e12d1d67f36e1d056407fb6dfadcf6\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3120","fw:ext:cf:fd:f372ab05f18b1022b43922aef53402e0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f372ab05f18b1022b43922aef53402e0\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3366","fw:ext:cf:fd:f0b6ccb8301bc048b1d088fce86557e6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f0b6ccb8301bc048b1d088fce86557e6\";s:4:\"form\";a:1:{s:4:\"json\";s:1562:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"2\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:22:\"with_padding dark_form\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3370","fw:ext:cf:fd:5648a8a7586e9095e3e2a19fb9b25645","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5648a8a7586e9095e3e2a19fb9b25645\";s:4:\"form\";a:1:{s:4:\"json\";s:1562:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"2\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:22:\"with_padding dark_form\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3372","fw:ext:cf:fd:13d250a36131d34656a6219e64dfe750","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"13d250a36131d34656a6219e64dfe750\";s:4:\"form\";a:1:{s:4:\"json\";s:1562:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment-o\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:22:\"with_padding dark_form\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3374","fw:ext:cf:fd:a0762a7bc719122ffb57418fce6fe886","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a0762a7bc719122ffb57418fce6fe886\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:22:\"with_padding dark_form\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3376","fw:ext:cf:fd:fabf5947432a43bc3b2393a5577cd74d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fabf5947432a43bc3b2393a5577cd74d\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:22:\"with_padding dark_form\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3378","fw:ext:cf:fd:e6990b67fdfc33c2f0b1461fb848b90f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e6990b67fdfc33c2f0b1461fb848b90f\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:68:\"with_padding rounded overflow-hidden with_background transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3381","fw:ext:cf:fd:4012a99c2df3e6783380923907f5f7ed","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4012a99c2df3e6783380923907f5f7ed\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:68:\"with_padding rounded overflow-hidden with_background transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3382","fw:ext:cf:fd:1dbd8c204f32badefc8ff4c73a3bfecf","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1dbd8c204f32badefc8ff4c73a3bfecf\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3384","fw:ext:cf:fd:7d05f894606f763891d132170a541288","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7d05f894606f763891d132170a541288\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3386","fw:ext:cf:fd:1561054d7ba9058aaa32bede8d951732","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1561054d7ba9058aaa32bede8d951732\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3388","fw:ext:cf:fd:1a05a1e5b7006b8ac2828b5cf149908f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1a05a1e5b7006b8ac2828b5cf149908f\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3389","fw:ext:cf:fd:25bb3d8694355bf98ad0cc38250d075c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"25bb3d8694355bf98ad0cc38250d075c\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3390","fw:ext:cf:fd:31125db91b5ffac2c5e47012974b92d5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"31125db91b5ffac2c5e47012974b92d5\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3392","fw:ext:cf:fd:264f088a02549a534f6c17dec85e87d8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"264f088a02549a534f6c17dec85e87d8\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3395","fw:ext:cf:fd:6b2f3712d72e2db9e5470f515578c55c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6b2f3712d72e2db9e5470f515578c55c\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3397","fw:ext:cf:fd:b440e21349167741313b6a52e3bdb8c8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b440e21349167741313b6a52e3bdb8c8\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3399","fw:ext:cf:fd:13ff2836b2da9ae13655dec1629925f2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"13ff2836b2da9ae13655dec1629925f2\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3574","fw:ext:cf:fd:18280cd6326758ed53225ca74162d76b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"18280cd6326758ed53225ca74162d76b\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3576","fw:ext:cf:fd:14d25ae98f79896c151edf0f67150212","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"14d25ae98f79896c151edf0f67150212\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3577","fw:ext:cf:fd:a360be041139960d57987b08f57df065","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a360be041139960d57987b08f57df065\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3581","fw:ext:cf:fd:75c760acc4270d19da024f279da19772","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"75c760acc4270d19da024f279da19772\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3583","fw:ext:cf:fd:7618caaea03b15ac4424ea34616fa435","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7618caaea03b15ac4424ea34616fa435\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3585","fw:ext:cf:fd:08de302b48831aea6d697e4d0bbc7955","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"08de302b48831aea6d697e4d0bbc7955\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3587","fw:ext:cf:fd:093825eddfc34734699e9ea9a38f1c91","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"093825eddfc34734699e9ea9a38f1c91\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3589","fw:ext:cf:fd:0923bc71dd344f8f7a2abb40e698f47e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0923bc71dd344f8f7a2abb40e698f47e\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3591","fw:ext:cf:fd:0e361f9b92f7486bc6b7a6a359366be7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0e361f9b92f7486bc6b7a6a359366be7\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3598","fw:ext:cf:fd:ffc760c84ae30830a9f83f521c429e48","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ffc760c84ae30830a9f83f521c429e48\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3600","fw:ext:cf:fd:c7c96e2f9f9b54a03146fd447e86e5c6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c7c96e2f9f9b54a03146fd447e86e5c6\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3602","fw:ext:cf:fd:68138712dd8b6e7a9484b85014ab8dc1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"68138712dd8b6e7a9484b85014ab8dc1\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:5:\"admin\";s:8:\"password\";s:5:\"admin\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3982","fw:ext:cf:fd:5ee9c8e9afb876ed75962731f6103a27","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5ee9c8e9afb876ed75962731f6103a27\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3984","fw:ext:cf:fd:5bc9e81cd0794d0ef6943ebca706a171","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5bc9e81cd0794d0ef6943ebca706a171\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3987","fw:ext:cf:fd:c931719da97c37c5e8e3298726e4f5c8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c931719da97c37c5e8e3298726e4f5c8\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("3988","fw:ext:cf:fd:4369c45a86a75eadb28754784672f4eb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4369c45a86a75eadb28754784672f4eb\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4016","fw:ext:cf:fd:23c1b12b4193ca5295dc02d39950777b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"23c1b12b4193ca5295dc02d39950777b\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4018","fw:ext:cf:fd:dab63a0d7c28b8b7a967bf5ef2f00edd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"dab63a0d7c28b8b7a967bf5ef2f00edd\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4020","fw:ext:cf:fd:393a69c4507c3c4f4d6320f44113ec07","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"393a69c4507c3c4f4d6320f44113ec07\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4022","fw:ext:cf:fd:c88a44930aca70dc50dccfeb9cded7c8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c88a44930aca70dc50dccfeb9cded7c8\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4024","fw:ext:cf:fd:58da18ee4a565edf7c168184864d6fb7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"58da18ee4a565edf7c168184864d6fb7\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4026","fw:ext:cf:fd:2b180701b8d4c5b02aba4849fd2e8f6e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2b180701b8d4c5b02aba4849fd2e8f6e\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4028","fw:ext:cf:fd:67eb300bba2c065dd19f9b97c3259980","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"67eb300bba2c065dd19f9b97c3259980\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4030","fw:ext:cf:fd:57c935f917934e5ac106aee3f1ad3da2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"57c935f917934e5ac106aee3f1ad3da2\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4031","fw:ext:cf:fd:16cc41c547712a3dc8c508100d96596e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"16cc41c547712a3dc8c508100d96596e\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color4\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4033","fw:ext:cf:fd:683c6f886579efe764237fe0d661617b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"683c6f886579efe764237fe0d661617b\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4041","fw:ext:cf:fd:b910890a908c5468637e772dd41f7cb5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b910890a908c5468637e772dd41f7cb5\";s:4:\"form\";a:1:{s:4:\"json\";s:1559:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color3\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4043","fw:ext:cf:fd:c2c3e7d641e4f7afa112e9c4246bde8d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c2c3e7d641e4f7afa112e9c4246bde8d\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color3\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4047","fw:ext:cf:fd:73a9eed36fb77dd1852fb5da627b94f9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"73a9eed36fb77dd1852fb5da627b94f9\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color3\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:52:\"with_padding rounded overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4049","fw:ext:cf:fd:b8ca238b69c3bbf341d80de277c62e54","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b8ca238b69c3bbf341d80de277c62e54\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color3\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4051","fw:ext:cf:fd:1240abdbf36540b8ce2de4fee97b79c4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1240abdbf36540b8ce2de4fee97b79c4\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color3\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4161","fw:ext:cf:fd:fb70a7247fd9bf51055c3d62bcfaad8d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fb70a7247fd9bf51055c3d62bcfaad8d\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4162","fw:ext:cf:fd:e5c9e01922821afd7fa915c1a250098d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e5c9e01922821afd7fa915c1a250098d\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4164","fw:ext:cf:fd:4a071e88fefacee83e5a2eb09f03ec10","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4a071e88fefacee83e5a2eb09f03ec10\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4166","fw:ext:cf:fd:f2f7aaa40ee66bfd4226f73913ceb228","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f2f7aaa40ee66bfd4226f73913ceb228\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4168","fw:ext:cf:fd:6111ac57a77883686aafe9f7d07c6587","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6111ac57a77883686aafe9f7d07c6587\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4170","fw:ext:cf:fd:414705d65f581c0ba0fdb6b08ef82169","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"414705d65f581c0ba0fdb6b08ef82169\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4172","fw:ext:cf:fd:426de8177e04ed9998d44422b6613374","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"426de8177e04ed9998d44422b6613374\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4173","fw:ext:cf:fd:7ee0727be6621cd38ffd7683e514187e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7ee0727be6621cd38ffd7683e514187e\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4174","fw:ext:cf:fd:f5e69a1514d5f14038a6ce8702f2889c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f5e69a1514d5f14038a6ce8702f2889c\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4176","fw:ext:cf:fd:4c8c9ff50cdc41b4d80427ce7491d327","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4c8c9ff50cdc41b4d80427ce7491d327\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4178","fw:ext:cf:fd:e1ff0d7edef7f556b87223f59325d108","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e1ff0d7edef7f556b87223f59325d108\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4180","fw:ext:cf:fd:86c78db37754e88d318fd06bd92f07f1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"86c78db37754e88d318fd06bd92f07f1\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4182","fw:ext:cf:fd:aaded2434f6961b6ef730c12218daf21","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"aaded2434f6961b6ef730c12218daf21\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4184","fw:ext:cf:fd:9d0a4ee36d2b9bc1fc2e314dd4756b88","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9d0a4ee36d2b9bc1fc2e314dd4756b88\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4186","fw:ext:cf:fd:11f48c1a7945460e1b309defb922d986","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"11f48c1a7945460e1b309defb922d986\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4188","fw:ext:cf:fd:3b3856cf971cc319ad750869fc6881b0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3b3856cf971cc319ad750869fc6881b0\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4189","fw:ext:cf:fd:fc8499fe249eeba069ada6a135575b40","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fc8499fe249eeba069ada6a135575b40\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4191","fw:ext:cf:fd:22975ea85695e43284bd8fee783073f6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"22975ea85695e43284bd8fee783073f6\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4193","fw:ext:cf:fd:009e7bb5819eb7aa078745d16e29bfd6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"009e7bb5819eb7aa078745d16e29bfd6\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4195","fw:ext:cf:fd:77507b2853bc0727b3091cf6a1b92576","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"77507b2853bc0727b3091cf6a1b92576\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4197","fw:ext:cf:fd:6ff9b4c57673792edc15fa982da3757b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6ff9b4c57673792edc15fa982da3757b\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4199","fw:ext:cf:fd:d8958ed54a51eb150ecc03d24f789138","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d8958ed54a51eb150ecc03d24f789138\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4201","fw:ext:cf:fd:d848d1238adb743cfe492436343140a6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d848d1238adb743cfe492436343140a6\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4203","fw:ext:cf:fd:d3315666c87e265f6fdf64418a282671","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d3315666c87e265f6fdf64418a282671\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4205","fw:ext:cf:fd:9b2723dbfb9493bb3930c3102358b919","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9b2723dbfb9493bb3930c3102358b919\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4207","fw:ext:cf:fd:2b8b56f2469d855656208a96f83be525","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2b8b56f2469d855656208a96f83be525\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4208","fw:ext:cf:fd:9b4286e8aa089f3de2d6f1161d529108","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9b4286e8aa089f3de2d6f1161d529108\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4210","fw:ext:cf:fd:f4343b7bd6be9292a824f0c97b6d421f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f4343b7bd6be9292a824f0c97b6d421f\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4211","fw:ext:cf:fd:9074ea768003d7155e502736c1b361a7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9074ea768003d7155e502736c1b361a7\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4213","fw:ext:cf:fd:76c12012a862b7a92c64bbbedca3fe62","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"76c12012a862b7a92c64bbbedca3fe62\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4215","fw:ext:cf:fd:4ae93984f1d43e0d0fbf42484d626f3d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4ae93984f1d43e0d0fbf42484d626f3d\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4217","fw:ext:cf:fd:be5f5856e30efb1b2b304e5831a8c73b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"be5f5856e30efb1b2b304e5831a8c73b\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4220","fw:ext:cf:fd:47161306b903b5c368188fcb2cef0733","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"47161306b903b5c368188fcb2cef0733\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4222","fw:ext:cf:fd:9dce67bbbe7171f1b920a56e96ac5741","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9dce67bbbe7171f1b920a56e96ac5741\";s:4:\"form\";a:1:{s:4:\"json\";s:1474:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color1\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:11:\"Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4224","fw:ext:cf:fd:3d435539642e08a5056b0dc41aaa2678","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3d435539642e08a5056b0dc41aaa2678\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4226","fw:ext:cf:fd:21598b5a61146d6672f38892ab48dbf1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"21598b5a61146d6672f38892ab48dbf1\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4228","fw:ext:cf:fd:7c3f7183aef6eb424c7ea8c3132c0156","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7c3f7183aef6eb424c7ea8c3132c0156\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4230","fw:ext:cf:fd:f29b207a69365943158ec11db2919a17","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f29b207a69365943158ec11db2919a17\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4232","fw:ext:cf:fd:20548d7977a69bea18aa26baa225d66b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"20548d7977a69bea18aa26baa225d66b\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4234","fw:ext:cf:fd:2bdb824773345dce9ba2959173073881","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2bdb824773345dce9ba2959173073881\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4235","fw:ext:cf:fd:ae076cd1d0c5c4177ccd2e9ce6baaf48","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ae076cd1d0c5c4177ccd2e9ce6baaf48\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4237","fw:ext:cf:fd:7de7aebea2de69eb8a8c3fa2f99d7576","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7de7aebea2de69eb8a8c3fa2f99d7576\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4238","fw:ext:cf:fd:db92f01410334e5802d95d0d7cbef166","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"db92f01410334e5802d95d0d7cbef166\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4239","fw:ext:cf:fd:863ffcf4ad26e2fb3beec2c03b165851","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"863ffcf4ad26e2fb3beec2c03b165851\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4240","fw:ext:cf:fd:d21027785fc0d765a03c85ca1356fbb3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d21027785fc0d765a03c85ca1356fbb3\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4242","fw:ext:cf:fd:3195a0ab50ed8dafd00a9948c977d1a4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3195a0ab50ed8dafd00a9948c977d1a4\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4243","fw:ext:cf:fd:e6067c47d8ac777e780bd1213f1af2c6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e6067c47d8ac777e780bd1213f1af2c6\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4244","fw:ext:cf:fd:a9a1905d1fec5ac6783ee7a9260e6803","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a9a1905d1fec5ac6783ee7a9260e6803\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4246","fw:ext:cf:fd:d55d7c90f3d5324c03d9a3d3e25ee20a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d55d7c90f3d5324c03d9a3d3e25ee20a\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4248","fw:ext:cf:fd:1ce255cb53e7a3ed159fa146c27f0972","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1ce255cb53e7a3ed159fa146c27f0972\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4276","fw:ext:cf:fd:4b515d3afd389d04d4b7593e43f36f6d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4b515d3afd389d04d4b7593e43f36f6d\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4277","fw:ext:cf:fd:614aba773067ba7a7dff29250a2239c4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"614aba773067ba7a7dff29250a2239c4\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4279","fw:ext:cf:fd:17dd753f9d70c73d21808748cbe1e1f3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"17dd753f9d70c73d21808748cbe1e1f3\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4280","fw:ext:cf:fd:92217920e163d374191b56ca6e7e4dee","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"92217920e163d374191b56ca6e7e4dee\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4282","fw:ext:cf:fd:774b486b7b6841c006d8cad27fca7bce","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"774b486b7b6841c006d8cad27fca7bce\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4284","fw:ext:cf:fd:b7952b1bc285601ac068768bf60a575c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b7952b1bc285601ac068768bf60a575c\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4286","fw:ext:cf:fd:3b40d5f35b924979175ee33ec93c18c7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3b40d5f35b924979175ee33ec93c18c7\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4287","fw:ext:cf:fd:77d9fef659658c3306074a8cdb4442f6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"77d9fef659658c3306074a8cdb4442f6\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4289","fw:ext:cf:fd:c33391bf0fa6168ef0d98b3937902d21","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c33391bf0fa6168ef0d98b3937902d21\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4292","fw:ext:cf:fd:1e66b7b7782a4940c9296f8083bb2a7a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1e66b7b7782a4940c9296f8083bb2a7a\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4294","fw:ext:cf:fd:e08eff6edbd908aba4a5ceb1264c8a11","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e08eff6edbd908aba4a5ceb1264c8a11\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4296","fw:ext:cf:fd:7c5eb22c59bc6143ac604726767754a2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7c5eb22c59bc6143ac604726767754a2\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4298","fw:ext:cf:fd:698d64b13d393e80849041417e205440","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"698d64b13d393e80849041417e205440\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4301","fw:ext:cf:fd:9ade7ccba883c424607903d64234930e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9ade7ccba883c424607903d64234930e\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4303","fw:ext:cf:fd:7be9736aa1b69ed3e07cb0f2771f42a5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7be9736aa1b69ed3e07cb0f2771f42a5\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4305","fw:ext:cf:fd:3b5c8ca32d9f1c054eb64e9402b06461","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3b5c8ca32d9f1c054eb64e9402b06461\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4307","fw:ext:cf:fd:d3956bdd19108fccac5459979f6ccd78","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d3956bdd19108fccac5459979f6ccd78\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4665","theme_mods_twentyfifteen","a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:16;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1525281839;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:9:{i:0;s:32:\"woocommerce_product_categories-2\";i:1;s:28:\"woocommerce_product_search-2\";i:2;s:25:\"woocommerce_widget_cart-2\";i:3;s:32:\"woocommerce_top_rated_products-2\";i:4;s:26:\"woocommerce_price_filter-2\";i:5;s:33:\"woocommerce_layered_nav_filters-2\";i:6;s:25:\"woocommerce_layered_nav-2\";i:7;s:31:\"woocommerce_product_tag_cloud-2\";i:8;s:25:\"woocommerce_layered_nav-3\";}s:9:\"sidebar-1\";a:7:{i:0;s:13:\"apsc_widget-2\";i:1;s:12:\"categories-3\";i:2;s:6:\"text-4\";i:3;s:8:\"search-3\";i:4;s:10:\"calendar-2\";i:5;s:11:\"tag_cloud-3\";i:6;s:6:\"text-5\";}}}s:18:\"custom_css_post_id\";i:-1;}","yes");
INSERT INTO `wp_options` VALUES("4894","fw:ext:cf:fd:b55b651e9d0689bfe9731141d0a509ef","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b55b651e9d0689bfe9731141d0a509ef\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color1\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color1\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color1\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color1\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4896","fw:ext:cf:fd:19780b0ba22daa2fa5c0227a26f72593","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"19780b0ba22daa2fa5c0227a26f72593\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4898","fw:ext:cf:fd:1038af2562c26e0a5cba3412fe979da9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1038af2562c26e0a5cba3412fe979da9\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4900","fw:ext:cf:fd:6cd8d50d03721cdca2765ae61787f02f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6cd8d50d03721cdca2765ae61787f02f\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4902","fw:ext:cf:fd:ab69c035b91c32d756f3d6b8324441a3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ab69c035b91c32d756f3d6b8324441a3\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4904","fw:ext:cf:fd:cd1b670872a4823b7e27ab0a6318f906","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cd1b670872a4823b7e27ab0a6318f906\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4906","fw:ext:cf:fd:5a06239734b0dc8c6c099e2caf74ec06","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5a06239734b0dc8c6c099e2caf74ec06\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4908","fw:ext:cf:fd:bc90e214bcd8d4e91f9ccc68e702418c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bc90e214bcd8d4e91f9ccc68e702418c\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4911","fw:ext:cf:fd:fd7a063fdce5b16bb3103ffa4a90f77d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fd7a063fdce5b16bb3103ffa4a90f77d\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4912","fw:ext:cf:fd:1d1832e5927eeae01dc222d97387bb12","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1d1832e5927eeae01dc222d97387bb12\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4914","fw:ext:cf:fd:c8d37d6351d567e4bd4c86d6c8c4d8b3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c8d37d6351d567e4bd4c86d6c8c4d8b3\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4916","fw:ext:cf:fd:d3742f70c1b7b473006f63cfbb5c37d2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d3742f70c1b7b473006f63cfbb5c37d2\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4918","fw:ext:cf:fd:dc5fa61bdd75395bd84f3fda9f5c3196","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"dc5fa61bdd75395bd84f3fda9f5c3196\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4920","fw:ext:cf:fd:c5f3924046f57b36098bba5bfe216f6c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c5f3924046f57b36098bba5bfe216f6c\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4922","fw:ext:cf:fd:e096e31f6b1129aa47d67560cea1992b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e096e31f6b1129aa47d67560cea1992b\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4924","fw:ext:cf:fd:35ff656b3d6e0d5ccbca2e88a4fc5d83","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"35ff656b3d6e0d5ccbca2e88a4fc5d83\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4926","fw:ext:cf:fd:5e37e6095febe72245820f6b5104e66d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5e37e6095febe72245820f6b5104e66d\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4928","fw:ext:cf:fd:3734c61d5192235b0d79a45a83681360","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3734c61d5192235b0d79a45a83681360\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("4929","fw:ext:cf:fd:6555ca95311f6b326130b524e004d6ca","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6555ca95311f6b326130b524e004d6ca\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5052","fw:ext:cf:fd:dae56316ad4e5db9fa8e2d9194bc9374","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"dae56316ad4e5db9fa8e2d9194bc9374\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5054","fw:ext:cf:fd:bcf4038a4284f505f843274ec9f49ae3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bcf4038a4284f505f843274ec9f49ae3\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5056","fw:ext:cf:fd:00d4624bdf837e6b06fc6de656726b9d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"00d4624bdf837e6b06fc6de656726b9d\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5058","fw:ext:cf:fd:f9b7a00f0677f7264dca88ae80e8bd0e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f9b7a00f0677f7264dca88ae80e8bd0e\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5060","fw:ext:cf:fd:a32575626badccf0061122f995983751","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a32575626badccf0061122f995983751\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5061","fw:ext:cf:fd:5dcc4148a283efc4da7b474d8c91e63d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5dcc4148a283efc4da7b474d8c91e63d\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5063","fw:ext:cf:fd:36493dcdaa0f1ab985b747cbb6c2d2b8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"36493dcdaa0f1ab985b747cbb6c2d2b8\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5064","fw:ext:cf:fd:deddf83fb35d458347554bc63804ede3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"deddf83fb35d458347554bc63804ede3\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5067","fw:ext:cf:fd:c59ca643b4bfbde45a58cea1a01985ec","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c59ca643b4bfbde45a58cea1a01985ec\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5069","fw:ext:cf:fd:1ad8e14e4475a302aae18f1e51e07eab","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1ad8e14e4475a302aae18f1e51e07eab\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5071","fw:ext:cf:fd:43cca198982feeda58cbfdffd0c5ed1d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"43cca198982feeda58cbfdffd0c5ed1d\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5072","fw:ext:cf:fd:dbe2a4ed5c2692a86d21e1f116bce00b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"dbe2a4ed5c2692a86d21e1f116bce00b\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5074","fw:ext:cf:fd:24b7da429e33871819d74b47b99e20bb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"24b7da429e33871819d74b47b99e20bb\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5076","fw:ext:cf:fd:320fd8d8d76abf8e61ddf1c12cd0aadc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"320fd8d8d76abf8e61ddf1c12cd0aadc\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5077","fw:ext:cf:fd:43192bac454f352225ff0f39dbd0a44f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"43192bac454f352225ff0f39dbd0a44f\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5080","fw:ext:cf:fd:3a7da46c8779e0e14586039e0fee24e7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3a7da46c8779e0e14586039e0fee24e7\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5082","fw:ext:cf:fd:9b8f6795048985a3598bfd77df6f43f5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9b8f6795048985a3598bfd77df6f43f5\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5083","fw:ext:cf:fd:d3327e3e08fdc1ec8c3d24f313c095f8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d3327e3e08fdc1ec8c3d24f313c095f8\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5085","fw:ext:cf:fd:1c20770a2e554392503fa93136a132d9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1c20770a2e554392503fa93136a132d9\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5086","fw:ext:cf:fd:0c0f483c2cb4717e860315608f714cb6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0c0f483c2cb4717e860315608f714cb6\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5087","fw:ext:cf:fd:9c9d02090a8f79adad5dcf8dd6f9b288","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9c9d02090a8f79adad5dcf8dd6f9b288\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5089","fw:ext:cf:fd:d89955a3cfd42f1c450a4a9e3f9b6977","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d89955a3cfd42f1c450a4a9e3f9b6977\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5091","fw:ext:cf:fd:da4d2d31a4e2308976c50df5e7a7e4fc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"da4d2d31a4e2308976c50df5e7a7e4fc\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5093","fw:ext:cf:fd:862e8f1ca60ed2a419fad657e36ce6c5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"862e8f1ca60ed2a419fad657e36ce6c5\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5095","fw:ext:cf:fd:10858ec2231942efbddc135c907a658f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"10858ec2231942efbddc135c907a658f\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5096","fw:ext:cf:fd:aaa21847fdbc74fa609c2e47b0a15091","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"aaa21847fdbc74fa609c2e47b0a15091\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5098","fw:ext:cf:fd:2d14a4b2b946b8f47fa97ddb2e7d321f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2d14a4b2b946b8f47fa97ddb2e7d321f\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5100","fw:ext:cf:fd:bbf10abcc469825ead4e570da32855e3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bbf10abcc469825ead4e570da32855e3\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5102","fw:ext:cf:fd:e0d52a2503ba3d144a357f9c43aa1b0c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e0d52a2503ba3d144a357f9c43aa1b0c\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5104","fw:ext:cf:fd:660c528c6af24160de28e2a2ad42389c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"660c528c6af24160de28e2a2ad42389c\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5106","fw:ext:cf:fd:de1441dcb4271327039f6e58f585aa01","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"de1441dcb4271327039f6e58f585aa01\";s:4:\"form\";a:1:{s:4:\"json\";s:1475:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color3\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color3\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"fa fa-calendar\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_2cb8244\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"fa fa-clock-o\",\"icon_color\":\"color3\"},\"shortcode\":\"date_time_189e2a2\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color3\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:19:\"Make an Appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5108","fw:ext:cf:fd:84e7968be8353e0179a1328e2ab903c0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"84e7968be8353e0179a1328e2ab903c0\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5110","fw:ext:cf:fd:1b9ae550f82939341f8daf972769c726","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1b9ae550f82939341f8daf972769c726\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5112","fw:ext:cf:fd:36352e404e4c12a7c0e368ec4a5246c5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"36352e404e4c12a7c0e368ec4a5246c5\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5114","fw:ext:cf:fd:693581644c0cbee7012f60825697b067","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"693581644c0cbee7012f60825697b067\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5116","fw:ext:cf:fd:3253ae9c37f65946ca8cd9efb800e809","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3253ae9c37f65946ca8cd9efb800e809\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5118","fw:ext:cf:fd:819960cc7c7696e53afa1792177d9ffb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"819960cc7c7696e53afa1792177d9ffb\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5120","fw:ext:cf:fd:0308ed89ab5c933fc6159aa24b27472b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0308ed89ab5c933fc6159aa24b27472b\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5122","fw:ext:cf:fd:6e45ff33b1caeae2add6f58e135cc001","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6e45ff33b1caeae2add6f58e135cc001\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5124","fw:ext:cf:fd:5d8412d7919aeb8aec2c58d41981447a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5d8412d7919aeb8aec2c58d41981447a\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5126","fw:ext:cf:fd:0d1a653f592d4e97aa868691345715c6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0d1a653f592d4e97aa868691345715c6\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5128","fw:ext:cf:fd:073aa3d4cb88b65d703d9ddf56edc695","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"073aa3d4cb88b65d703d9ddf56edc695\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5130","fw:ext:cf:fd:61bc5f781eaec1d5a16b2d71a9bab920","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"61bc5f781eaec1d5a16b2d71a9bab920\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5132","fw:ext:cf:fd:f2ad564c78e37f9c97e47f384f162e05","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f2ad564c78e37f9c97e47f384f162e05\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5133","fw:ext:cf:fd:80b9b1b4e513792ff1902113cca202d5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"80b9b1b4e513792ff1902113cca202d5\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5135","fw:ext:cf:fd:1cde7be7895c5686d2a1181275778cf1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1cde7be7895c5686d2a1181275778cf1\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5137","fw:ext:cf:fd:692c3b0636611ff6dbbf78582c3341c5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"692c3b0636611ff6dbbf78582c3341c5\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5140","fw:ext:cf:fd:ed8fe9c08997a648be83357c18dd5bc9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ed8fe9c08997a648be83357c18dd5bc9\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5141","fw:ext:cf:fd:f5d7a7861b9f7c9ceda410388ebc7c6a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f5d7a7861b9f7c9ceda410388ebc7c6a\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5143","fw:ext:cf:fd:035c687ba4e6e99e9a67ec60b0d62b47","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"035c687ba4e6e99e9a67ec60b0d62b47\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5144","fw:ext:cf:fd:ae95771ed6d1e428d90624ba88a6d366","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ae95771ed6d1e428d90624ba88a6d366\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5148","fw:ext:cf:fd:80fb3694f57bdbd118d803963b643850","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"80fb3694f57bdbd118d803963b643850\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5150","fw:ext:cf:fd:1c5c1b3f6cd193ebbdd632282b6fd7e2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1c5c1b3f6cd193ebbdd632282b6fd7e2\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5152","fw:ext:cf:fd:0731c3a04933f274666c4fab9af325dc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0731c3a04933f274666c4fab9af325dc\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5154","fw:ext:cf:fd:d4b4e5d0f0329b27c00f96b286f677bf","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d4b4e5d0f0329b27c00f96b286f677bf\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5156","fw:ext:cf:fd:45a18391ddddd5a1e4ee3189ca3af284","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"45a18391ddddd5a1e4ee3189ca3af284\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5158","fw:ext:cf:fd:ad6023b14265ae3cbe126fbbadd86331","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ad6023b14265ae3cbe126fbbadd86331\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5160","fw:ext:cf:fd:6a4c11e96a81ce22a6031977cd160c17","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6a4c11e96a81ce22a6031977cd160c17\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5162","fw:ext:cf:fd:d75dfdcb877cdf0f9e1cca21fac0792b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d75dfdcb877cdf0f9e1cca21fac0792b\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5164","fw:ext:cf:fd:5203bdd06c709914f7667e3e874bc070","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5203bdd06c709914f7667e3e874bc070\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5165","fw:ext:cf:fd:e187bd7ef7b0486fad49bc20f90875d2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e187bd7ef7b0486fad49bc20f90875d2\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5168","fw:ext:cf:fd:3782346331eb65f71ae9a5715dc6576a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3782346331eb65f71ae9a5715dc6576a\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5169","fw:ext:cf:fd:7faec021bd644f1535312fa282408752","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7faec021bd644f1535312fa282408752\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5228","fw:ext:cf:fd:c8fddb5f5ad0b0291cfe4815ef4d814b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c8fddb5f5ad0b0291cfe4815ef4d814b\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5229","fw:ext:cf:fd:9cdd7163c7ea640711df57daa21644ca","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9cdd7163c7ea640711df57daa21644ca\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5231","fw:ext:cf:fd:d62c9d3ddd963b7e3157de1c813df3fb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d62c9d3ddd963b7e3157de1c813df3fb\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5233","fw:ext:cf:fd:4ead3021d60065e3edb64062eb195662","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4ead3021d60065e3edb64062eb195662\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5235","fw:ext:cf:fd:b2e2bddfe3d2b3fd6743bbc2180489ce","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b2e2bddfe3d2b3fd6743bbc2180489ce\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5237","fw:ext:cf:fd:4517fd161740b6f3be7449eae7cb657f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4517fd161740b6f3be7449eae7cb657f\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5239","fw:ext:cf:fd:6994947083a6066f30f21063b3210c7c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6994947083a6066f30f21063b3210c7c\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5241","fw:ext:cf:fd:51521f64206f584f816c363e8e7bee01","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"51521f64206f584f816c363e8e7bee01\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5243","fw:ext:cf:fd:0a866610f8eabf8da713634e6219cdc5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0a866610f8eabf8da713634e6219cdc5\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5245","fw:ext:cf:fd:291acf1674eb7d2cf3b8cbf676ca58b6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"291acf1674eb7d2cf3b8cbf676ca58b6\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5246","fw:ext:cf:fd:a44930fe11a5c6981c26c3feb85ef62e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a44930fe11a5c6981c26c3feb85ef62e\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5248","fw:ext:cf:fd:2d9f60ed05dea5a37f7a8f377f8a4df0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2d9f60ed05dea5a37f7a8f377f8a4df0\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5250","fw:ext:cf:fd:7ae68130d353204b6172a13ded0b1919","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7ae68130d353204b6172a13ded0b1919\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5255","fw:ext:cf:fd:8d342cd132048530518a489bbeb0fb69","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8d342cd132048530518a489bbeb0fb69\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5267","fw:ext:cf:fd:e7becd5447d2431af1525c4a98c35940","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e7becd5447d2431af1525c4a98c35940\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5331","widget_akismet_widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("5585","fw:ext:cf:fd:b9a390a9a7f7e05bb60cf56b26370cd5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b9a390a9a7f7e05bb60cf56b26370cd5\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("5587","fw:ext:cf:fd:948409e5e6f02540140d35ce35ef5b88","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"948409e5e6f02540140d35ce35ef5b88\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("5631","fw:ext:cf:fd:610b1f1dcc336c38ad4e787f1b5789a4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"610b1f1dcc336c38ad4e787f1b5789a4\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("5633","fw:ext:cf:fd:cae1c1912a03c83571f22ee3bf1fa39a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cae1c1912a03c83571f22ee3bf1fa39a\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("5635","fw:ext:cf:fd:8a6c7657e254dff0fc613ce028d6d541","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8a6c7657e254dff0fc613ce028d6d541\";s:4:\"form\";a:1:{s:4:\"json\";s:1242:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("5879","fw:ext:cf:fd:55b98a12954c65dd02e57056c9da79f0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"55b98a12954c65dd02e57056c9da79f0\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5881","fw:ext:cf:fd:e2f1320756a9382f8d702e17af04470d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e2f1320756a9382f8d702e17af04470d\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5883","fw:ext:cf:fd:e5a7f7d3397234550fd378076e86e971","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e5a7f7d3397234550fd378076e86e971\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5885","fw:ext:cf:fd:93705ae720a50bdb184acd92a290b12c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"93705ae720a50bdb184acd92a290b12c\";s:4:\"form\";a:1:{s:4:\"json\";s:1560:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\",\"icon_color\":\"color2\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\",\"icon_color\":\"color2\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\",\"icon_color\":\"color2\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\",\"icon_color\":\"color2\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5888","fw:ext:cf:fd:d1b6bd88ff6fab7468cb187e46e0ee06","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d1b6bd88ff6fab7468cb187e46e0ee06\";s:4:\"form\";a:1:{s:4:\"json\";s:1450:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5890","fw:ext:cf:fd:ece1cfd93111f5ae66e4525e94e26b5c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ece1cfd93111f5ae66e4525e94e26b5c\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5892","fw:ext:cf:fd:deeb9896caf8e74bde30cf5b58b0780e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"deeb9896caf8e74bde30cf5b58b0780e\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5893","fw:ext:cf:fd:18d403dc7d726d39d6f5876767bd6a57","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"18d403dc7d726d39d6f5876767bd6a57\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5911","fw:ext:cf:fd:fbc32a61e3559ac96930d56a1549721c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fbc32a61e3559ac96930d56a1549721c\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5913","fw:ext:cf:fd:2f07faaef114b0cbc95c9da15abff9ad","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2f07faaef114b0cbc95c9da15abff9ad\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5926","fw:ext:cf:fd:6355bb04215c9645d01c30ac068be1f0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6355bb04215c9645d01c30ac068be1f0\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5928","fw:ext:cf:fd:80e15bb33e738ce1d5f4dde179a66da0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"80e15bb33e738ce1d5f4dde179a66da0\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5930","fw:ext:cf:fd:a3507bbfde752adcdca0184390316473","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a3507bbfde752adcdca0184390316473\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5932","fw:ext:cf:fd:8db5380a8b62f5ad3e808b4e68864a74","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8db5380a8b62f5ad3e808b4e68864a74\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5934","fw:ext:cf:fd:4850aa2faab24ca07600603029b5ba03","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4850aa2faab24ca07600603029b5ba03\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5937","fw:ext:cf:fd:320e9c62d975e68923d6c01ad5115f6d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"320e9c62d975e68923d6c01ad5115f6d\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5944","fw:ext:cf:fd:5a3ebb4d56fc6680c1693c729ba14619","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5a3ebb4d56fc6680c1693c729ba14619\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("5947","fw:ext:cf:fd:147b07535766a9a398f95464b982e368","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"147b07535766a9a398f95464b982e368\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6021","fw:ext:cf:fd:249e87b9061c53da2ade880f50a235c5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"249e87b9061c53da2ade880f50a235c5\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6193","fw:ext:cf:fd:4dd087cf7fd3e8668629ab11d54dd105","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4dd087cf7fd3e8668629ab11d54dd105\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6196","fw:ext:cf:fd:d5e8773ae26ebb930f9dba19023236de","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d5e8773ae26ebb930f9dba19023236de\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6198","fw-icon-v2-favorites","a:12:{i:0;s:4:\"6346\";i:1;s:4:\"6348\";i:2;s:4:\"6351\";i:3;s:4:\"6639\";i:4;s:4:\"6642\";i:5;s:4:\"6790\";i:6;s:4:\"6791\";i:7;s:4:\"6792\";i:8;s:4:\"6793\";i:9;s:4:\"6794\";i:10;s:4:\"6795\";i:11;s:4:\"6871\";}","no");
INSERT INTO `wp_options` VALUES("6204","fw:ext:cf:fd:ce931fdc744351b5b14dffcad0fa9217","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ce931fdc744351b5b14dffcad0fa9217\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6206","fw:ext:cf:fd:b0c265a5049754e60c487a910e731e4c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b0c265a5049754e60c487a910e731e4c\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6208","fw:ext:cf:fd:6989b902d11ec2a595261abc7e2ce714","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6989b902d11ec2a595261abc7e2ce714\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6210","fw:ext:cf:fd:2cd4f483769dba0b76f0b4d812debe79","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2cd4f483769dba0b76f0b4d812debe79\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6212","fw:ext:cf:fd:be70cccf7fd3f8c4803675cc5a00f03f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"be70cccf7fd3f8c4803675cc5a00f03f\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6214","fw:ext:cf:fd:bac87c014fdae9b5c3f69e48cae2ed7a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bac87c014fdae9b5c3f69e48cae2ed7a\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6216","fw:ext:cf:fd:648b36aaecd0f4e07e0799720d764c0f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"648b36aaecd0f4e07e0799720d764c0f\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6218","fw:ext:cf:fd:6af9d2576478c05177bd254da6427f08","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6af9d2576478c05177bd254da6427f08\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6220","fw:ext:cf:fd:b448974533d6fbf31c87aedcc75e3f1f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b448974533d6fbf31c87aedcc75e3f1f\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6222","fw:ext:cf:fd:4ebe2dd8296e34599167feb238d7b21e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4ebe2dd8296e34599167feb238d7b21e\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6224","fw:ext:cf:fd:010334ea32500de69668242ebd714796","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"010334ea32500de69668242ebd714796\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6226","fw:ext:cf:fd:5597ea180284eb9d8bdf544f5a6716c8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5597ea180284eb9d8bdf544f5a6716c8\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6228","fw:ext:cf:fd:29fb07389ba59e54eb51ffe6393a9f78","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"29fb07389ba59e54eb51ffe6393a9f78\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6230","fw:ext:cf:fd:2f1f879d03c540be9df7fb61a1e9b3bd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2f1f879d03c540be9df7fb61a1e9b3bd\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6232","fw:ext:cf:fd:69998b1ccc2996736fd8e6fc91544dac","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"69998b1ccc2996736fd8e6fc91544dac\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6234","fw:ext:cf:fd:27b6be41e1cceaf684a6de23ceba16ef","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"27b6be41e1cceaf684a6de23ceba16ef\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6262","fw:ext:cf:fd:2a7a92d115a14302c771a344ce153dec","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2a7a92d115a14302c771a344ce153dec\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6264","fw:ext:cf:fd:4c334f57d20645c89465350dd3c6f380","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4c334f57d20645c89465350dd3c6f380\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6266","fw:ext:cf:fd:5e1605f0073c316d7d5050b2aee63166","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5e1605f0073c316d7d5050b2aee63166\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6268","fw:ext:cf:fd:0cb097ef18551ad7745ccd63d8e6236e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0cb097ef18551ad7745ccd63d8e6236e\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6270","fw:ext:cf:fd:7c16218e574a533495347a34f0f060a9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7c16218e574a533495347a34f0f060a9\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6272","fw:ext:cf:fd:e3771436de35343e009c007d980f8786","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e3771436de35343e009c007d980f8786\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6274","fw:ext:cf:fd:b6096236c904d51648c82ac11ad6b3d3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b6096236c904d51648c82ac11ad6b3d3\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6276","fw:ext:cf:fd:9a09e927f15f1ffaaa6cc468b426d18f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9a09e927f15f1ffaaa6cc468b426d18f\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6278","fw:ext:cf:fd:28198511db3fdd9b6b4ede9030959caa","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"28198511db3fdd9b6b4ede9030959caa\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6280","fw:ext:cf:fd:ae94c66a2ecfceed37f1f8fe27fc88dc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ae94c66a2ecfceed37f1f8fe27fc88dc\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6282","fw:ext:cf:fd:c85e619f55cb63e402b1440d51376185","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c85e619f55cb63e402b1440d51376185\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6287","fw:ext:cf:fd:7674be95a0a4820179558de2e58ed856","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7674be95a0a4820179558de2e58ed856\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6289","fw:ext:cf:fd:9306c85e0f013263a56ab9354c5f0de5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9306c85e0f013263a56ab9354c5f0de5\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6291","fw:ext:cf:fd:8ff25edf2aa4c3c1b8e3906823be9cd0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8ff25edf2aa4c3c1b8e3906823be9cd0\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6293","fw:ext:cf:fd:c26110ab86e3b9e65c7a004be161ebc9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c26110ab86e3b9e65c7a004be161ebc9\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6296","fw:ext:cf:fd:8613f4aa3b6dd7e8a53abb5a3078a639","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8613f4aa3b6dd7e8a53abb5a3078a639\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6298","fw:ext:cf:fd:855b56003ba4e98e85769a8ae76ef777","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"855b56003ba4e98e85769a8ae76ef777\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6300","fw:ext:cf:fd:cfb056b331089e9fcb92aad3a8fe6e2e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cfb056b331089e9fcb92aad3a8fe6e2e\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6303","fw:ext:cf:fd:72e75cc704a272b1a66beb242af22000","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"72e75cc704a272b1a66beb242af22000\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6305","fw:ext:cf:fd:c538aa9fdac210e09f94dd74b2739e3d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c538aa9fdac210e09f94dd74b2739e3d\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6307","fw:ext:cf:fd:c17476832573f943da9cb24f8ade5fb2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c17476832573f943da9cb24f8ade5fb2\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6309","fw:ext:cf:fd:77e9482d589194a0fc3661447aa64207","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"77e9482d589194a0fc3661447aa64207\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6311","fw:ext:cf:fd:c73ad9f61400f59e6112782dcb9fe3b5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c73ad9f61400f59e6112782dcb9fe3b5\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6313","fw:ext:cf:fd:b13d90291e186b61bf46bc641136d622","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b13d90291e186b61bf46bc641136d622\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6315","fw:ext:cf:fd:c29923284f20031862c8ee0e42e0b3b0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c29923284f20031862c8ee0e42e0b3b0\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6317","fw:ext:cf:fd:bf629a17343b8d626dbd086830931e77","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bf629a17343b8d626dbd086830931e77\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6319","fw:ext:cf:fd:36e65dcd632cf6ad50a31fb40acf1756","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"36e65dcd632cf6ad50a31fb40acf1756\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6321","fw:ext:cf:fd:8afb7d1b6ad9bf54e34abea8812944f3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8afb7d1b6ad9bf54e34abea8812944f3\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6323","fw:ext:cf:fd:f5501b83793ad71b5ab6db4cc7cc0be4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f5501b83793ad71b5ab6db4cc7cc0be4\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6325","fw:ext:cf:fd:2f2ed7530052c48669088c2eafa39568","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2f2ed7530052c48669088c2eafa39568\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6327","fw:ext:cf:fd:584d4737098651c0b245f073786dc3b9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"584d4737098651c0b245f073786dc3b9\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6330","fw:ext:cf:fd:a5e736ca9d49f4859de43d3d440d33c7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a5e736ca9d49f4859de43d3d440d33c7\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6332","fw:ext:cf:fd:c9bbc2378b84c615776ef8cd54b3a6ff","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c9bbc2378b84c615776ef8cd54b3a6ff\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6334","fw:ext:cf:fd:b329eeaea8290fa29f5ef8b6c6db2507","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b329eeaea8290fa29f5ef8b6c6db2507\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6338","fw:ext:cf:fd:8704ae1b55dd71d540c80665ee659816","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8704ae1b55dd71d540c80665ee659816\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6340","fw:ext:cf:fd:a5fc346c465b3e9a1b296d6833a85db8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a5fc346c465b3e9a1b296d6833a85db8\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6342","fw:ext:cf:fd:8396aff9c3225fe3bd68580998653892","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8396aff9c3225fe3bd68580998653892\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6345","fw:ext:cf:fd:bfe2bc76b3e141e9e3e7ee94f7ec155b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bfe2bc76b3e141e9e3e7ee94f7ec155b\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6347","fw:ext:cf:fd:d9ec7377e0bf57103af2ee357d7164cf","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d9ec7377e0bf57103af2ee357d7164cf\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6357","fw:ext:cf:fd:20a93eb03f5a4efa5701869749e3f24f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"20a93eb03f5a4efa5701869749e3f24f\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6359","fw:ext:cf:fd:d5df06f3cc5620dad99d03559007c1d1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d5df06f3cc5620dad99d03559007c1d1\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6362","fw:ext:cf:fd:f664914a102742712cdba5cebd8a382a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f664914a102742712cdba5cebd8a382a\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6365","fw:ext:cf:fd:1174fec5caaef79132bd606ef0f20e8e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1174fec5caaef79132bd606ef0f20e8e\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6367","fw:ext:cf:fd:0cd21b8fc838ff92d968318d17d3e4ed","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0cd21b8fc838ff92d968318d17d3e4ed\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6369","fw:ext:cf:fd:2e5a6aa660d97229209e33b4d5f6184c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2e5a6aa660d97229209e33b4d5f6184c\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6371","fw:ext:cf:fd:e9ffd5c4f6bb338366c0f84b83f3eec8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e9ffd5c4f6bb338366c0f84b83f3eec8\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6372","fw:ext:cf:fd:7557bd4e3a1adbadf9582ab1a5cf52f6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7557bd4e3a1adbadf9582ab1a5cf52f6\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6373","fw:ext:cf:fd:9a6ebd96408a11b57c299ce7206a0e3d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9a6ebd96408a11b57c299ce7206a0e3d\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6375","fw:ext:cf:fd:a4deb63b057ca1e9efc58576ebc37030","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a4deb63b057ca1e9efc58576ebc37030\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6377","fw:ext:cf:fd:31693944a7b778d6508bd642234b7517","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"31693944a7b778d6508bd642234b7517\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6380","fw:ext:cf:fd:d2303772c0a999e7347cd5d00db8e699","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d2303772c0a999e7347cd5d00db8e699\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6381","fw:ext:cf:fd:a31106a4ffc9a382beb783c80e7c4a93","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a31106a4ffc9a382beb783c80e7c4a93\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6383","fw:ext:cf:fd:75e663972ff8f2b123e6a68891800e5e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"75e663972ff8f2b123e6a68891800e5e\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6385","fw:ext:cf:fd:601b6566a8bc4bde3626d4ea0c6c2a17","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"601b6566a8bc4bde3626d4ea0c6c2a17\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6387","fw:ext:cf:fd:4680cadc4bd48d7b3398c2c675f778fa","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4680cadc4bd48d7b3398c2c675f778fa\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6388","fw:ext:cf:fd:43af5f13ef9106bb3739a8352c7362fa","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"43af5f13ef9106bb3739a8352c7362fa\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6390","fw:ext:cf:fd:3d6c78d667cc0f929921a82aceff3a8e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3d6c78d667cc0f929921a82aceff3a8e\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6392","fw:ext:cf:fd:9f3a6040af342ef565bd2e6b04dd1ba1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9f3a6040af342ef565bd2e6b04dd1ba1\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6394","fw:ext:cf:fd:51452e2f9b81562f5115fe22328fc8a6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"51452e2f9b81562f5115fe22328fc8a6\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6396","fw:ext:cf:fd:683d749ce812e7fe6c2f51157c6f7058","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"683d749ce812e7fe6c2f51157c6f7058\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6397","fw:ext:cf:fd:207d9bcab9097fa73656bcbeab8b1692","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"207d9bcab9097fa73656bcbeab8b1692\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6401","fw:ext:cf:fd:10e9cb6e3207f0c6053c6f240e98ab34","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"10e9cb6e3207f0c6053c6f240e98ab34\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6402","fw:ext:cf:fd:5bc46a94746f9f6b3faf4501338256d5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5bc46a94746f9f6b3faf4501338256d5\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6403","fw:ext:cf:fd:485b36c506f6627b7dd8fed50b399975","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"485b36c506f6627b7dd8fed50b399975\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6405","fw:ext:cf:fd:847ac896821cdc4ab0ebf42878b3d0a5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"847ac896821cdc4ab0ebf42878b3d0a5\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6407","fw:ext:cf:fd:6e2bd2d566a0eab17291ef74dfbe96a9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6e2bd2d566a0eab17291ef74dfbe96a9\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6410","fw:ext:cf:fd:f5759bc50d8eda5b53278a17c2fc4bde","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f5759bc50d8eda5b53278a17c2fc4bde\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6411","fw:ext:cf:fd:f466105f0b8850888a396f1c57293a24","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f466105f0b8850888a396f1c57293a24\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6412","fw:ext:cf:fd:e7552aad8e2846b20caf77099000c984","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e7552aad8e2846b20caf77099000c984\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6413","fw:ext:cf:fd:120ff41169a472e1f3e885f807250378","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"120ff41169a472e1f3e885f807250378\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6438","fw:ext:cf:fd:b84221a7351cc4e460643da812b2f85a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b84221a7351cc4e460643da812b2f85a\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6439","fw:ext:cf:fd:ade8a18aebf374f748d4ca853586aec2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ade8a18aebf374f748d4ca853586aec2\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6964","fw:ext:cf:fd:02cdcbf6e53e0e482166afac98eb257e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"02cdcbf6e53e0e482166afac98eb257e\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6965","fw:ext:cf:fd:223b5682489657bb29e730ecac702550","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"223b5682489657bb29e730ecac702550\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6966","fw:ext:cf:fd:d140ca24a455fcc54731d27b7a34bd07","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d140ca24a455fcc54731d27b7a34bd07\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6968","fw:ext:cf:fd:e754ef38522110ad3ebe346d71afa31c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e754ef38522110ad3ebe346d71afa31c\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6978","fw:ext:cf:fd:bc9f298cbbf8531fb95d05bc187755cd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bc9f298cbbf8531fb95d05bc187755cd\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6979","fw:ext:cf:fd:a5b63d05792b170d438bb3d94034f343","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a5b63d05792b170d438bb3d94034f343\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6981","fw:ext:cf:fd:bb734c7ec0e35ad14e94ce5887491904","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bb734c7ec0e35ad14e94ce5887491904\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6983","fw:ext:cf:fd:04a838dc9f884c5430969233c59a324f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"04a838dc9f884c5430969233c59a324f\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6986","fw:ext:cf:fd:763f265a658afae6a404c8e04f2e23eb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"763f265a658afae6a404c8e04f2e23eb\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6988","fw:ext:cf:fd:5bf3c817440c73de0b9c8f7b2328f8c2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5bf3c817440c73de0b9c8f7b2328f8c2\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6990","fw:ext:cf:fd:71af927cdb69288129f263f529b4216a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"71af927cdb69288129f263f529b4216a\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6992","fw:ext:cf:fd:98baad6355d2e8f1cf1b746fe247c669","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"98baad6355d2e8f1cf1b746fe247c669\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6994","fw:ext:cf:fd:6d02d330f60e1fb87d7abbe839c8cf6f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6d02d330f60e1fb87d7abbe839c8cf6f\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6996","fw:ext:cf:fd:a2f3afcae7b7ca9fcc6b88cb879da420","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a2f3afcae7b7ca9fcc6b88cb879da420\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("6998","fw:ext:cf:fd:ae71722953b41853b180ab2cb4f8f851","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ae71722953b41853b180ab2cb4f8f851\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7000","fw:ext:cf:fd:f090ecd9b86e0d3e95422eeb21ec1f65","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f090ecd9b86e0d3e95422eeb21ec1f65\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7001","fw:ext:cf:fd:20279f641a476fa1907a20c9f26e7241","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"20279f641a476fa1907a20c9f26e7241\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7003","fw:ext:cf:fd:2ff76c2630cc7c67f44851ee6d565e08","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2ff76c2630cc7c67f44851ee6d565e08\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7005","fw:ext:cf:fd:96c3082c32a2c30f837d758e02fd22b6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"96c3082c32a2c30f837d758e02fd22b6\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7007","fw:ext:cf:fd:ff6350fb76bc82551cd1f554363775ee","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ff6350fb76bc82551cd1f554363775ee\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7009","fw:ext:cf:fd:55b8a8111040fed4c438c99b58802ba8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"55b8a8111040fed4c438c99b58802ba8\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7011","fw:ext:cf:fd:aa2968354136e9901ea0f14ab65e09db","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"aa2968354136e9901ea0f14ab65e09db\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7013","fw:ext:cf:fd:704bd6deec1dc7dcd0970e76070127cb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"704bd6deec1dc7dcd0970e76070127cb\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7015","fw:ext:cf:fd:f6801e54ea9148c2446a332de9b9e69f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f6801e54ea9148c2446a332de9b9e69f\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7017","fw:ext:cf:fd:80723de3416c24d2f66f6d8781dcd617","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"80723de3416c24d2f66f6d8781dcd617\";s:4:\"form\";a:1:{s:4:\"json\";s:1454:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_3ae5a7c\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_a3fe85a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_435a14b\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-envelope\"}},{\"type\":\"text\",\"shortcode\":\"text_c846d76\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-flag\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_4d623ee\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"fa fa-folder-open\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7019","fw:ext:cf:fd:b18b1d3fd9b52fe208024560ae0089f4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b18b1d3fd9b52fe208024560ae0089f4\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send Now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7021","fw:ext:cf:fd:cdc447060241cf36d5c7077cfe802f81","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cdc447060241cf36d5c7077cfe802f81\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send Now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7023","fw:ext:cf:fd:5e1244f9d96c66a2c23d9a30adcd8d30","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5e1244f9d96c66a2c23d9a30adcd8d30\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send Now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7026","fw:ext:cf:fd:a7e99b07fc19123bf64cbe6436689163","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a7e99b07fc19123bf64cbe6436689163\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send Now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7028","fw:ext:cf:fd:e46dbe2ce54fcb5d4551442365a4f1df","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e46dbe2ce54fcb5d4551442365a4f1df\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send Now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7158","fw:ext:cf:fd:ea6c34b6834fc9925a57d4d528fd42c8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ea6c34b6834fc9925a57d4d528fd42c8\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7160","fw:ext:cf:fd:ecde03ab2a71f0f18b9b871904b0c930","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ecde03ab2a71f0f18b9b871904b0c930\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7162","fw:ext:cf:fd:6945ab843b30172d9195a97e5bd32d01","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6945ab843b30172d9195a97e5bd32d01\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7164","fw:ext:cf:fd:99845661414498e065772024f2b2ceb1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"99845661414498e065772024f2b2ceb1\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7166","fw:ext:cf:fd:828ecc40310eae2b94723267221ecff3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"828ecc40310eae2b94723267221ecff3\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7168","fw:ext:cf:fd:c798b2bdba424b906185cf5040834d36","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c798b2bdba424b906185cf5040834d36\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7170","fw:ext:cf:fd:7661f5b2d7b15c383197d4b545c436cc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7661f5b2d7b15c383197d4b545c436cc\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7172","fw:ext:cf:fd:7b302d53befff2e34f93d445c9c34f29","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7b302d53befff2e34f93d445c9c34f29\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7174","fw:ext:cf:fd:db14747454b1ca509158cd11106dfaa3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"db14747454b1ca509158cd11106dfaa3\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7176","fw:ext:cf:fd:0697dd1ffabe519a808e2d761a4b6cdc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0697dd1ffabe519a808e2d761a4b6cdc\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7178","fw:ext:cf:fd:56599cf36425a22fb16b0c40cd661e1e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"56599cf36425a22fb16b0c40cd661e1e\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7180","fw:ext:cf:fd:f8aab5dc38c9769e79c5cf2c4bd362fe","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f8aab5dc38c9769e79c5cf2c4bd362fe\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7181","fw:ext:cf:fd:25f2e76c118b9d7c30ce007da314799c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"25f2e76c118b9d7c30ce007da314799c\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7183","fw:ext:cf:fd:2c63d05876aab4a287a1d3a3d5c56c4f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2c63d05876aab4a287a1d3a3d5c56c4f\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7185","fw:ext:cf:fd:5261c2848f118d4ba9b500ce595958c5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5261c2848f118d4ba9b500ce595958c5\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7187","fw:ext:cf:fd:d513aacd4a6759c05c39682887150bfa","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d513aacd4a6759c05c39682887150bfa\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7189","fw:ext:cf:fd:4f81833bc52bf0c5cdfae5faac533e30","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4f81833bc52bf0c5cdfae5faac533e30\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7191","fw:ext:cf:fd:2ebd5a0f7be222d53af56f5f06ce73a7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2ebd5a0f7be222d53af56f5f06ce73a7\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7192","fw:ext:cf:fd:1678a5469bbbf7ccfff75fe9128d1042","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1678a5469bbbf7ccfff75fe9128d1042\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7194","fw:ext:cf:fd:fd60717a65462ef49b335e1aae85acce","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fd60717a65462ef49b335e1aae85acce\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7196","fw:ext:cf:fd:87b64567160db63dfe64b4825d5cbb63","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"87b64567160db63dfe64b4825d5cbb63\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7198","fw:ext:cf:fd:4da573b010f9060bee8880f9d2ca99ef","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4da573b010f9060bee8880f9d2ca99ef\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7200","fw:ext:cf:fd:c112672390bdd4f373f1e8d74e2a8cbe","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c112672390bdd4f373f1e8d74e2a8cbe\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7202","fw:ext:cf:fd:2cf8184581b5ac2637a4e106acae39c8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2cf8184581b5ac2637a4e106acae39c8\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7205","fw:ext:cf:fd:02e68ce4e5f7f14658105ec6e2e86e36","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"02e68ce4e5f7f14658105ec6e2e86e36\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7207","fw:ext:cf:fd:16cbe0e3abe75080dc6274e46dccca20","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"16cbe0e3abe75080dc6274e46dccca20\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7208","fw:ext:cf:fd:1f881defda4469e7f7ea89529e5d6dec","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1f881defda4469e7f7ea89529e5d6dec\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7209","fw:ext:cf:fd:fbc725b41911e2cbad16b7e76bf875df","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fbc725b41911e2cbad16b7e76bf875df\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7211","fw:ext:cf:fd:d9cda59a9aeaff4dafcb456df786fe32","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d9cda59a9aeaff4dafcb456df786fe32\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7212","fw:ext:cf:fd:74bb1895b4596703813f5f10c3f463b0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"74bb1895b4596703813f5f10c3f463b0\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7213","fw:ext:cf:fd:a04bd45a9f06aaf9065ff200036c3c0b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a04bd45a9f06aaf9065ff200036c3c0b\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7215","fw:ext:cf:fd:49eca59fcd29f7e99a374e530bef8cb2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"49eca59fcd29f7e99a374e530bef8cb2\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7217","fw:ext:cf:fd:7af10f94f35055b9eeb36926875f48d7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7af10f94f35055b9eeb36926875f48d7\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7219","fw:ext:cf:fd:6f6caac06987ed7fd5df34f2e414a5ea","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6f6caac06987ed7fd5df34f2e414a5ea\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7221","fw:ext:cf:fd:18a2716394509ce2f86c11e56a5d7e07","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"18a2716394509ce2f86c11e56a5d7e07\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7223","fw:ext:cf:fd:3b48c66cdc0afb3231c0517518690f00","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3b48c66cdc0afb3231c0517518690f00\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7225","fw:ext:cf:fd:fcb05803449620b00331bd14ec672180","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fcb05803449620b00331bd14ec672180\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7259","fw:ext:cf:fd:b4a1416fc7db190d4f0be43cdc0b48e5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b4a1416fc7db190d4f0be43cdc0b48e5\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7261","fw:ext:cf:fd:a85e65c5fc9d2dffa761d4cf8f3b279f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a85e65c5fc9d2dffa761d4cf8f3b279f\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7264","fw:ext:cf:fd:2713c895f1f179e6b682bd8f90ef4be4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2713c895f1f179e6b682bd8f90ef4be4\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7266","fw:ext:cf:fd:99a9254fb989e4f3d7690357a783c299","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"99a9254fb989e4f3d7690357a783c299\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7268","fw:ext:cf:fd:77e69b7bae5fe9c05b68488bfe573637","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"77e69b7bae5fe9c05b68488bfe573637\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7275","fw:ext:cf:fd:085c3e1f6847ff376f280ceb1aefeb1b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"085c3e1f6847ff376f280ceb1aefeb1b\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7277","fw:ext:cf:fd:7f5c09990267ff0f4208ab13445980a4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7f5c09990267ff0f4208ab13445980a4\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7279","fw:ext:cf:fd:cc56500af31c214c15049ae90908ef01","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cc56500af31c214c15049ae90908ef01\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7280","fw:ext:cf:fd:9fd29f7e7aa7ae2f34a177b275952c6c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9fd29f7e7aa7ae2f34a177b275952c6c\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7281","fw:ext:cf:fd:c3a39fd4f05eb663689dd6f55e593e9a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c3a39fd4f05eb663689dd6f55e593e9a\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7283","fw:ext:cf:fd:24e9507c914002140a756ab7331bb56c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"24e9507c914002140a756ab7331bb56c\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7285","fw:ext:cf:fd:0f490dba36bf7efadf4211a8e9619be0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0f490dba36bf7efadf4211a8e9619be0\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7288","fw:ext:cf:fd:c71ca73ff35f5a33cb056f0012981e22","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c71ca73ff35f5a33cb056f0012981e22\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7290","fw:ext:cf:fd:22420efeb62deaf6c80b455e62f88ae7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"22420efeb62deaf6c80b455e62f88ae7\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7292","fw:ext:cf:fd:8492bcb69656926300a24730d625c06f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8492bcb69656926300a24730d625c06f\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7294","fw:ext:cf:fd:44d61369ab5fbc6c1d081c4b64e28b60","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"44d61369ab5fbc6c1d081c4b64e28b60\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7296","fw:ext:cf:fd:80e31934070d1d25fac1e382a4b7d5c0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"80e31934070d1d25fac1e382a4b7d5c0\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7298","fw:ext:cf:fd:4b84f4077172b7cd1714fc8241dd0681","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4b84f4077172b7cd1714fc8241dd0681\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7300","fw:ext:cf:fd:b67f3456800f084a2f00e2e87d91842d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b67f3456800f084a2f00e2e87d91842d\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7302","fw:ext:cf:fd:5523ae698415b150b6f2cd718e15d4e8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5523ae698415b150b6f2cd718e15d4e8\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7303","fw:ext:cf:fd:bd490515fe5117882242947df11f8467","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bd490515fe5117882242947df11f8467\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7305","fw:ext:cf:fd:39795971311872eb6b12217e586d61ce","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"39795971311872eb6b12217e586d61ce\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7307","fw:ext:cf:fd:2cf67e420aa0d68a3d272806ae22bc87","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2cf67e420aa0d68a3d272806ae22bc87\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7309","fw:ext:cf:fd:1c966fe6cffd73f0428ab38bbcf08ac3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1c966fe6cffd73f0428ab38bbcf08ac3\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7312","fw:ext:cf:fd:ebd4da20a27a839ec05d90bb6b8dadc6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ebd4da20a27a839ec05d90bb6b8dadc6\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7314","fw:ext:cf:fd:dd80ef45d4cc1a4e45671221ef7bf0af","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"dd80ef45d4cc1a4e45671221ef7bf0af\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7316","fw:ext:cf:fd:1df320ed71ee13962a92326f6d243225","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1df320ed71ee13962a92326f6d243225\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_ac1496a\",\"width\":\"1_3\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-user\"}},{\"type\":\"text\",\"shortcode\":\"text_94fc087\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"fa fa-phone\"}},{\"type\":\"email\",\"shortcode\":\"email_fe8cbdc\",\"width\":\"1_3\",\"options\":{\"label\":\"\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"fa fa-pencil\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_16bd6a9\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"fa fa-comment\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:6:\"Submit\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7318","fw:ext:cf:fd:8299d0a7f1a5ced6b7230fbfb1fe8df5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8299d0a7f1a5ced6b7230fbfb1fe8df5\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7320","fw:ext:cf:fd:d432972e34b463767959fd7e5bc5a514","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d432972e34b463767959fd7e5bc5a514\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7322","fw:ext:cf:fd:8965927a5ad56e1cce97cd23e2b68374","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8965927a5ad56e1cce97cd23e2b68374\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7323","fw:ext:cf:fd:3c8285634114092ec4dd1ce2afcec7d7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3c8285634114092ec4dd1ce2afcec7d7\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7325","fw:ext:cf:fd:052bb16e8ea20f1d72be33ee94e98a4e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"052bb16e8ea20f1d72be33ee94e98a4e\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:33:\"Schedule free
device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7335","fw:ext:cf:fd:b9d58e9e3ec7ee084e68c6abeba17680","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b9d58e9e3ec7ee084e68c6abeba17680\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7339","fw:ext:cf:fd:bec68fbbe155c981ad7308f919fc96c8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bec68fbbe155c981ad7308f919fc96c8\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7341","fw:ext:cf:fd:b28403cdc06273a2c217c9b7499220a6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b28403cdc06273a2c217c9b7499220a6\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7343","fw:ext:cf:fd:a24a0729153a1512f2f29ca289eb7e60","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a24a0729153a1512f2f29ca289eb7e60\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7345","fw:ext:cf:fd:6df2bbdcc0d82b88a649e5054cdd7e41","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6df2bbdcc0d82b88a649e5054cdd7e41\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7347","fw:ext:cf:fd:088d2bb3d367888a4ca85e6484111d7e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"088d2bb3d367888a4ca85e6484111d7e\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7349","fw:ext:cf:fd:372d127ae8f319ebd13bf0164c092583","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"372d127ae8f319ebd13bf0164c092583\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7350","fw:ext:cf:fd:ca91e507a862984d12bd5611cd3e6365","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ca91e507a862984d12bd5611cd3e6365\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7352","fw:ext:cf:fd:354dd1f3abdd7c5b510a6f877a182d7f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"354dd1f3abdd7c5b510a6f877a182d7f\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7354","fw:ext:cf:fd:b5bd0a07e1ea421f457c2d00caf5cf13","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b5bd0a07e1ea421f457c2d00caf5cf13\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7356","fw:ext:cf:fd:0e7f4c151b7cb509925941788d6ca5e6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0e7f4c151b7cb509925941788d6ca5e6\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7358","fw:ext:cf:fd:56a5930064b995ee4bde069715b42fa2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"56a5930064b995ee4bde069715b42fa2\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7360","fw:ext:cf:fd:074004a90995902c167f599cc8640c10","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"074004a90995902c167f599cc8640c10\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7362","fw:ext:cf:fd:9557dbbfcad81434ed2e5325336cebb1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9557dbbfcad81434ed2e5325336cebb1\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7364","fw:ext:cf:fd:77b66cb4d7c9aa1b67cf77355f653c1e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"77b66cb4d7c9aa1b67cf77355f653c1e\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7365","fw:ext:cf:fd:b23adef628e9d8d5bccf48876bf163c3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b23adef628e9d8d5bccf48876bf163c3\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7367","fw:ext:cf:fd:86d181accd44b3cbd04f014d255e6fae","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"86d181accd44b3cbd04f014d255e6fae\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7369","fw:ext:cf:fd:f88eb55ed06c176099d368da8b2514b2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f88eb55ed06c176099d368da8b2514b2\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7372","fw:ext:cf:fd:09cae86c11723acfaa7fdbd975f9e793","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"09cae86c11723acfaa7fdbd975f9e793\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7374","fw:ext:cf:fd:5aa87a902079edbbbb0655840eea44d9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5aa87a902079edbbbb0655840eea44d9\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7375","fw:ext:cf:fd:f126049ae2e59a8fb051c6773be4889b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f126049ae2e59a8fb051c6773be4889b\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7377","fw:ext:cf:fd:f523fc2b0102c5d1bf961375efd075f0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f523fc2b0102c5d1bf961375efd075f0\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7379","fw:ext:cf:fd:be94f5549330045e22153a8eb7fbcf48","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"be94f5549330045e22153a8eb7fbcf48\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7381","fw:ext:cf:fd:23479ac5a6ba2b9df508aa40dc404d9e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"23479ac5a6ba2b9df508aa40dc404d9e\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7383","fw:ext:cf:fd:a796c860af1eb88cca94cd379d9bd643","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a796c860af1eb88cca94cd379d9bd643\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7385","fw:ext:cf:fd:fc20a4c25fca5cd699e903b1505dcbb0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fc20a4c25fca5cd699e903b1505dcbb0\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7387","fw:ext:cf:fd:7e44e5b2dc40818b09b6e503f952b999","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7e44e5b2dc40818b09b6e503f952b999\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7389","fw:ext:cf:fd:5bf8988d7b8cc4b5719eab89f0d90ef3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5bf8988d7b8cc4b5719eab89f0d90ef3\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7413","fw:ext:cf:fd:dcbed677891eec32f271dc9363dd9761","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"dcbed677891eec32f271dc9363dd9761\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7415","fw:ext:cf:fd:5452337bdab9c9549bc5eb63062cd6c9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5452337bdab9c9549bc5eb63062cd6c9\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7417","fw:ext:cf:fd:14f66e656e0e19548687f1b124d851ea","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"14f66e656e0e19548687f1b124d851ea\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7419","fw:ext:cf:fd:d76ca0f07df1a13add97b574ae2edbf1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d76ca0f07df1a13add97b574ae2edbf1\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7500","fw:ext:cf:fd:953d1b74d00b833f8e000b603d2b7ea0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"953d1b74d00b833f8e000b603d2b7ea0\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7502","fw:ext:cf:fd:590228b6637ee1eeda74341170ebc057","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"590228b6637ee1eeda74341170ebc057\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7690","theme_mods_dotdigital","a:5:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:165;}s:10:\"fw_options\";a:33:{s:10:\"logo_image\";a:2:{s:13:\"attachment_id\";s:4:\"7034\";s:3:\"url\";s:60:\"//atheltree.com/ar/wp-content/uploads/2018/10/Header-2-1.png\";}s:9:\"logo_text\";s:0:\"\";s:12:\"logo_subtext\";s:0:\"\";s:12:\"social_icons\";a:5:{i:0;a:3:{s:4:\"icon\";s:24:\"social-icon soc-facebook\";s:10:\"icon_class\";s:0:\"\";s:8:\"icon_url\";s:25:\"http://www.facebook.com/#\";}i:1;a:3:{s:4:\"icon\";s:23:\"social-icon soc-twitter\";s:10:\"icon_class\";s:0:\"\";s:8:\"icon_url\";s:20:\"http://twitter.com/#\";}i:2;a:3:{s:4:\"icon\";s:22:\"social-icon soc-google\";s:10:\"icon_class\";s:0:\"\";s:8:\"icon_url\";s:25:\"https://plus.google.com/#\";}i:3;a:3:{s:4:\"icon\";s:23:\"social-icon soc-youtube\";s:10:\"icon_class\";s:0:\"\";s:8:\"icon_url\";s:21:\"https://youtube.com/#\";}i:4;a:3:{s:4:\"icon\";s:21:\"social-icon soc-vimeo\";s:10:\"icon_class\";s:0:\"\";s:8:\"icon_url\";s:19:\"https://vimeo.com/#\";}}s:13:\"header_link_1\";s:47:\"How to Find Us\";s:13:\"header_link_2\";s:35:\"Give Feedback\";s:19:\"header_welcome_text\";s:62:\"Welcome to Iron Axes: - Wood Works & Workshop\";s:18:\"blog_slider_switch\";a:2:{s:19:\"blog_slider_enabled\";s:3:\"yes\";s:3:\"yes\";a:1:{s:9:\"slider_id\";s:1:\"0\";}}s:15:\"post_categories\";s:3:\"yes\";s:9:\"post_tags\";s:2:\"no\";s:6:\"header\";s:1:\"2\";s:16:\"header_subtext_3\";s:14:\"8 800 269 8469\";s:12:\"footer_image\";a:2:{s:13:\"attachment_id\";s:4:\"6072\";s:3:\"url\";s:58:\"//localhost/beta/wp-content/uploads/2018/03/footer_bg1.jpg\";}s:10:\"copyrights\";s:1:\"1\";s:19:\"page_topline_icon_1\";a:7:{s:4:\"icon\";s:11:\"fa fa-phone\";s:9:\"icon_size\";s:10:\"size_small\";s:10:\"icon_style\";s:12:\"default_icon\";s:10:\"icon_color\";s:7:\"color_1\";s:10:\"text_align\";s:0:\"\";s:5:\"title\";s:17:\"+8 (800) 923 4567\";s:4:\"text\";s:0:\"\";}s:19:\"page_topline_icon_2\";a:7:{s:4:\"icon\";s:14:\"fa fa-envelope\";s:9:\"icon_size\";s:10:\"size_small\";s:10:\"icon_style\";s:12:\"default_icon\";s:10:\"icon_color\";s:7:\"color_1\";s:10:\"text_align\";s:0:\"\";s:5:\"title\";s:19:\"example@example.com\";s:4:\"text\";s:0:\"\";}s:19:\"page_topline_icon_3\";a:7:{s:4:\"icon\";s:16:\"rt-icon2-clock-o\";s:9:\"icon_size\";s:10:\"size_small\";s:10:\"icon_style\";s:12:\"default_icon\";s:10:\"icon_color\";s:7:\"color_1\";s:10:\"text_align\";s:0:\"\";s:5:\"title\";s:19:\"Mon - Sat 8am - 6pm\";s:4:\"text\";s:0:\"\";}s:19:\"color_scheme_number\";s:0:\"\";s:13:\"header_button\";a:6:{s:5:\"label\";s:11:\"Trial Offer\";s:4:\"link\";s:18:\"index.php/contacts\";s:6:\"target\";s:5:\"_self\";s:4:\"size\";s:11:\"wide_button\";s:4:\"type\";s:20:\"theme_button inverse\";s:5:\"color\";s:6:\"color1\";}s:13:\"header_icon_1\";a:8:{s:4:\"icon\";s:16:\"fa fa-map-marker\";s:13:\"icon_position\";s:4:\"left\";s:9:\"icon_size\";s:10:\"size_small\";s:10:\"icon_style\";s:12:\"default_icon\";s:10:\"icon_color\";s:7:\"color_2\";s:10:\"text_align\";s:9:\"text-left\";s:5:\"title\";s:22:\"487 Loraine Ramp, NY \";s:4:\"text\";s:0:\"\";}s:13:\"header_icon_2\";a:8:{s:4:\"icon\";s:12:\"fa fa-pencil\";s:13:\"icon_position\";s:4:\"left\";s:9:\"icon_size\";s:10:\"size_small\";s:10:\"icon_style\";s:12:\"default_icon\";s:10:\"icon_color\";s:7:\"color_2\";s:10:\"text_align\";s:10:\"text-right\";s:5:\"title\";s:20:\"example@example.com \";s:4:\"text\";s:0:\"\";}s:11:\"post_author\";s:2:\"no\";s:12:\"footer_color\";s:2:\"ds\";s:13:\"header_icon_3\";a:8:{s:4:\"icon\";s:11:\"fa fa-phone\";s:13:\"icon_position\";s:4:\"left\";s:9:\"icon_size\";s:10:\"size_small\";s:10:\"icon_style\";s:12:\"default_icon\";s:10:\"icon_color\";s:7:\"color_2\";s:10:\"text_align\";s:0:\"\";s:5:\"title\";s:15:\"1-888-123-6894 \";s:4:\"text\";s:0:\"\";}s:6:\"footer\";s:1:\"1\";s:7:\"version\";s:5:\"light\";s:15:\"copyrights_text\";s:130:\"© جميع الحقوق محفوظة 2018 Athel Tree\";s:16:\"copyrights_image\";a:2:{s:13:\"attachment_id\";s:4:\"6067\";s:3:\"url\";s:60:\"//localhost/beta/wp-content/uploads/2018/03/copyright_bg.jpg\";}s:12:\"header_phone\";s:29:\"+966-54 4385 270\";s:11:\"blog_layout\";s:4:\"grid\";s:12:\"header_email\";s:66:\"dotdigital@example.com\";s:17:\"header_open_hours\";s:46:\"Mon-Fri: 8:00-18:00; Sat: 9:00-17:00; Sun: off\";s:17:\"preloader_enabled\";s:1:\"0\";}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1525281779;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:24:\"dotdigital_theme_posts-2\";i:1;s:20:\"dotdigital_twitter-2\";}s:12:\"sidebar-main\";a:7:{i:0;s:13:\"apsc_widget-2\";i:1;s:12:\"categories-3\";i:2;s:6:\"text-4\";i:3;s:8:\"search-3\";i:4;s:10:\"calendar-2\";i:5;s:11:\"tag_cloud-3\";i:6;s:6:\"text-5\";}s:16:\"sidebar-footer-1\";a:2:{i:0;s:19:\"dotdigital_banner-3\";i:1;s:20:\"dotdigital_socials-2\";}s:8:\"Services\";a:0:{}s:4:\"Shop\";a:9:{i:0;s:32:\"woocommerce_product_categories-2\";i:1;s:28:\"woocommerce_product_search-2\";i:2;s:25:\"woocommerce_widget_cart-2\";i:3;s:32:\"woocommerce_top_rated_products-2\";i:4;s:26:\"woocommerce_price_filter-2\";i:5;s:33:\"woocommerce_layered_nav_filters-2\";i:6;s:25:\"woocommerce_layered_nav-2\";i:7;s:31:\"woocommerce_product_tag_cloud-2\";i:8;s:25:\"woocommerce_layered_nav-3\";}}}s:10:\"main_color\";s:7:\"#4697d2\";}","yes");
INSERT INTO `wp_options` VALUES("7694","dotdigital-fw-sidebars-options","a:2:{s:8:\"settings\";a:4:{s:10:\"post_types\";a:4:{s:4:\"page\";a:2:{s:6:\"by_ids\";a:2:{i:1;a:4:{s:8:\"position\";s:4:\"full\";s:8:\"sidebars\";a:0:{}s:9:\"timestamp\";i:1516110895;s:3:\"ids\";a:1:{i:0;s:4:\"5504\";}}i:2;a:4:{s:8:\"position\";s:4:\"left\";s:8:\"sidebars\";a:1:{s:4:\"blue\";s:4:\"Shop\";}s:9:\"timestamp\";i:1524481259;s:3:\"ids\";a:1:{i:0;s:4:\"5504\";}}}s:9:\"saved_ids\";a:1:{i:0;s:4:\"5504\";}}s:4:\"post\";a:1:{s:6:\"common\";a:3:{s:8:\"position\";s:4:\"full\";s:8:\"sidebars\";a:0:{}s:9:\"timestamp\";i:1525167169;}}s:11:\"fw-services\";a:1:{s:6:\"common\";a:3:{s:8:\"position\";s:4:\"full\";s:8:\"sidebars\";a:0:{}s:9:\"timestamp\";i:1515775752;}}s:7:\"product\";a:1:{s:6:\"common\";a:3:{s:8:\"position\";s:4:\"left\";s:8:\"sidebars\";a:1:{s:4:\"blue\";s:4:\"Shop\";}s:9:\"timestamp\";i:1524809902;}}}s:13:\"saved_presets\";a:5:{i:1;i:1;i:2;i:2;i:3;i:3;i:4;i:4;i:5;i:5;}s:8:\"archives\";a:1:{s:8:\"fw-event\";a:1:{s:6:\"common\";a:3:{s:8:\"position\";s:4:\"full\";s:8:\"sidebars\";a:0:{}s:9:\"timestamp\";i:1521558709;}}}s:10:\"taxonomies\";a:1:{s:8:\"category\";a:2:{s:6:\"by_ids\";a:3:{i:3;a:4:{s:8:\"position\";s:4:\"left\";s:8:\"sidebars\";a:1:{s:4:\"blue\";s:12:\"sidebar-main\";}s:9:\"timestamp\";i:1529244894;s:3:\"ids\";a:1:{i:0;s:3:\"136\";}}i:4;a:4:{s:8:\"position\";s:5:\"right\";s:8:\"sidebars\";a:1:{s:4:\"blue\";s:12:\"sidebar-main\";}s:9:\"timestamp\";i:1529248187;s:3:\"ids\";a:1:{i:0;s:3:\"137\";}}i:5;a:4:{s:8:\"position\";s:4:\"full\";s:8:\"sidebars\";a:0:{}s:9:\"timestamp\";i:1529249748;s:3:\"ids\";a:1:{i:0;s:3:\"138\";}}}s:9:\"saved_ids\";a:3:{i:0;s:3:\"136\";i:1;s:3:\"137\";i:2;s:3:\"138\";}}}}s:8:\"sidebars\";a:2:{s:8:\"Services\";a:2:{s:2:\"id\";s:8:\"Services\";s:4:\"name\";s:8:\"Services\";}s:4:\"Shop\";a:2:{s:2:\"id\";s:4:\"Shop\";s:4:\"name\";s:4:\"Shop\";}}}","no");
INSERT INTO `wp_options` VALUES("7695","widget_dotdigital_banner","a:2:{i:3;a:4:{s:5:\"title\";s:0:\"\";s:5:\"image\";a:2:{s:13:\"attachment_id\";s:4:\"6844\";s:3:\"url\";s:57:\"//atheltree.com/ar/wp-content/uploads/2018/10/Footer2.png\";}s:3:\"url\";s:0:\"\";s:7:\"classes\";s:27:\"text-center margin-negative\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("7696","widget_dotdigital_icons_list","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("7697","widget_dotdigital_portfolio","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("7698","widget_dotdigital_post_tabs","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("7699","widget_dotdigital_posts","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("7700","widget_dotdigital_socials","a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:10:\"icon_style\";s:10:\"color-icon\";s:12:\"social_icons\";a:5:{i:0;a:3:{s:10:\"icon_title\";s:8:\"Facebook\";s:10:\"icon_class\";s:24:\"social-icon soc-facebook\";s:9:\"icon_link\";s:36:\"http://www.facebook.com/atheltreeco/\";}i:1;a:3:{s:10:\"icon_title\";s:7:\"Twitter\";s:10:\"icon_class\";s:23:\"social-icon soc-twitter\";s:9:\"icon_link\";s:30:\"http://twitter.com/atheltreeco\";}i:2;a:3:{s:10:\"icon_title\";s:9:\"Instagram\";s:10:\"icon_class\";s:25:\"social-icon soc-instagram\";s:9:\"icon_link\";s:37:\"https://www.instagram.com/atheltreeco\";}i:3;a:3:{s:10:\"icon_title\";s:7:\"Youtube\";s:10:\"icon_class\";s:23:\"social-icon soc-youtube\";s:9:\"icon_link\";s:56:\"https://www.youtube.com/channel/UCGuAXld3EDgfjjOv8Eu5YKw\";}i:4;a:3:{s:10:\"icon_title\";s:8:\"Linkedin\";s:10:\"icon_class\";s:24:\"social-icon soc-linkedin\";s:9:\"icon_link\";s:36:\"https://www.linkedin.com/atheltreeco\";}}s:7:\"classes\";s:11:\"text-center\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("7701","widget_dotdigital_theme_posts","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("7705","dotdigital_google_fonts_link","","yes");
INSERT INTO `wp_options` VALUES("7873","fw:ext:cf:fd:f75556c88d4db9b7e247d2acb8c159a0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f75556c88d4db9b7e247d2acb8c159a0\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send Now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7874","fw:ext:cf:fd:8998639eebfb8503b7e1b1dc37986c5b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8998639eebfb8503b7e1b1dc37986c5b\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send Now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7876","fw:ext:cf:fd:5940debac65acb4774894ff2a2a23981","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5940debac65acb4774894ff2a2a23981\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send Now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7878","fw:ext:cf:fd:9c7c5454c7fb14190176fee2f8d235f5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9c7c5454c7fb14190176fee2f8d235f5\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:9:\"Send Now!\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7879","fw:ext:cf:fd:2e6293dc1103efed7a612488300327a5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2e6293dc1103efed7a612488300327a5\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7880","fw:ext:cf:fd:953f6bd06d0b41b530d86a05e6407f61","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"953f6bd06d0b41b530d86a05e6407f61\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7882","fw:ext:cf:fd:0a7961ab3aa2a2064e2b9a451193ca28","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0a7961ab3aa2a2064e2b9a451193ca28\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7884","fw:ext:cf:fd:3c6af194d0530ccf50a19beb2c5a0a1c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3c6af194d0530ccf50a19beb2c5a0a1c\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7886","fw:ext:cf:fd:18985448ecc0d03c0cfb49a294d2dd3e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"18985448ecc0d03c0cfb49a294d2dd3e\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7888","fw:ext:cf:fd:79b2c267f9ce627b6de7ff6f9956e29b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"79b2c267f9ce627b6de7ff6f9956e29b\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7890","fw:ext:cf:fd:9b452c501ae0d7d0628d9f31c8dc9b90","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9b452c501ae0d7d0628d9f31c8dc9b90\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7891","fw:ext:cf:fd:d99ac77f9c56241a71b4e0ed70c2784f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d99ac77f9c56241a71b4e0ed70c2784f\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7893","fw:ext:cf:fd:8d81e32299b6650bfbbcd6c2c8b3091f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8d81e32299b6650bfbbcd6c2c8b3091f\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7895","fw:ext:cf:fd:4f03debd2a3b4a9e6f2b69c482e5bf96","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4f03debd2a3b4a9e6f2b69c482e5bf96\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7897","fw:ext:cf:fd:9b1d6798b1c78be05be5db758466d134","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9b1d6798b1c78be05be5db758466d134\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7899","fw:ext:cf:fd:d373ebfd07ddb0d1d25f1a97b58d0276","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d373ebfd07ddb0d1d25f1a97b58d0276\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7901","fw:ext:cf:fd:989a197280d094db935a5b524dad07b7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"989a197280d094db935a5b524dad07b7\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7903","fw:ext:cf:fd:3f5d59c5fbbb2a3bb2d9bf5169b407b3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3f5d59c5fbbb2a3bb2d9bf5169b407b3\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7905","fw:ext:cf:fd:a850b22bd6f00c8bf33ec0004789f94e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a850b22bd6f00c8bf33ec0004789f94e\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7907","fw:ext:cf:fd:dbd1ce99e29b5802800d62d1c06ef692","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"dbd1ce99e29b5802800d62d1c06ef692\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7909","fw:ext:cf:fd:7edffac26a996bb6c330490cff3d3bfd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7edffac26a996bb6c330490cff3d3bfd\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7911","fw:ext:cf:fd:69e26a1144e7f5d2a961bfe33911b276","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"69e26a1144e7f5d2a961bfe33911b276\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7913","fw:ext:cf:fd:a94594c42b873c003934f87abbb008ae","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a94594c42b873c003934f87abbb008ae\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7915","fw:ext:cf:fd:011ea8437955339a1f6af26388467cd4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"011ea8437955339a1f6af26388467cd4\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7917","fw:ext:cf:fd:602990e7d4e7c2cc7fe21bb19459ba55","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"602990e7d4e7c2cc7fe21bb19459ba55\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7919","fw:ext:cf:fd:2137f2133b3cf763ccbea893020209f2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2137f2133b3cf763ccbea893020209f2\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7921","fw:ext:cf:fd:d9f3a383d1575576391ed8a9f4405bff","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d9f3a383d1575576391ed8a9f4405bff\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7923","fw:ext:cf:fd:1ea723408201d0a4a0e30bcaf97421d7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1ea723408201d0a4a0e30bcaf97421d7\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7925","fw:ext:cf:fd:54338dd5bbaaba9340460d70c0c78a75","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"54338dd5bbaaba9340460d70c0c78a75\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7927","fw:ext:cf:fd:623732b0353de9575dbcf5920c7d2bf5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"623732b0353de9575dbcf5920c7d2bf5\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("7929","fw:ext:cf:fd:67bc9633237cc8e61f96c1f6cac8aa57","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"67bc9633237cc8e61f96c1f6cac8aa57\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8365","fw:ext:cf:fd:80a2f97da6d876b492e2ba7f03160a8a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"80a2f97da6d876b492e2ba7f03160a8a\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8368","fw:ext:cf:fd:d2422543dc70ad95ba6f89e35344ac33","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d2422543dc70ad95ba6f89e35344ac33\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8369","fw:ext:cf:fd:46bcabf425e024a483cdd11d43cd13f9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"46bcabf425e024a483cdd11d43cd13f9\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8370","fw:ext:cf:fd:09956093d29b19378d5c056f8be2fe21","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"09956093d29b19378d5c056f8be2fe21\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8372","fw:ext:cf:fd:fe7bdad62d1c02bdc0b927c1fb9c51af","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fe7bdad62d1c02bdc0b927c1fb9c51af\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8373","fw:ext:cf:fd:bae839e381984fcdf28d318989d91fcc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bae839e381984fcdf28d318989d91fcc\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8375","fw:ext:cf:fd:d67d84f0a386231c57e5ad905e298ec1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d67d84f0a386231c57e5ad905e298ec1\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8377","fw:ext:cf:fd:7d6cb896316a80560d3ea2f078f48e2c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7d6cb896316a80560d3ea2f078f48e2c\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8379","fw:ext:cf:fd:bea8f0057e716560e48a5db3d3556ed0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bea8f0057e716560e48a5db3d3556ed0\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8380","fw:ext:cf:fd:cf8f1d4426a609c82eb71601da3ff9d8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cf8f1d4426a609c82eb71601da3ff9d8\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8384","fw:ext:cf:fd:f0d364c79f43f2a20201450dfd7bcfec","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f0d364c79f43f2a20201450dfd7bcfec\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8385","fw:ext:cf:fd:00d363d5fab11b69b4b4c1ff2b0e53c7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"00d363d5fab11b69b4b4c1ff2b0e53c7\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8387","fw:ext:cf:fd:ec39999b835cc38f539f5431d28cf20f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ec39999b835cc38f539f5431d28cf20f\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8389","fw:ext:cf:fd:2fbfecdfafa401a75e33b516986d8eaa","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2fbfecdfafa401a75e33b516986d8eaa\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8391","fw:ext:cf:fd:f3f1c9a7882fcffd501789a72b45a04e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f3f1c9a7882fcffd501789a72b45a04e\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8393","fw:ext:cf:fd:4e13ba659698128c44e941e713df45fd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4e13ba659698128c44e941e713df45fd\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8394","fw:ext:cf:fd:842c35f4e2aefcb5268a6aada2c78212","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"842c35f4e2aefcb5268a6aada2c78212\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8396","fw:ext:cf:fd:6c8971974214d69491c523348c0ff1aa","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6c8971974214d69491c523348c0ff1aa\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8397","fw:ext:cf:fd:68491a30b5ef5c504bcfd3ae1f835965","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"68491a30b5ef5c504bcfd3ae1f835965\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8399","fw:ext:cf:fd:c12e422cecbab764bed102fb71427004","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c12e422cecbab764bed102fb71427004\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8400","fw:ext:cf:fd:dd899aeffe46c4a68f055da65d72dcfe","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"dd899aeffe46c4a68f055da65d72dcfe\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8403","fw:ext:cf:fd:1634b91a147f7789643e1a4fbd6e172d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1634b91a147f7789643e1a4fbd6e172d\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8404","fw:ext:cf:fd:fbf4bdf8a52c96e68c361f16cfde4ae5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fbf4bdf8a52c96e68c361f16cfde4ae5\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8406","fw:ext:cf:fd:b931615c12e5f291ac9e7dd0f7c4e59f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b931615c12e5f291ac9e7dd0f7c4e59f\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8408","fw:ext:cf:fd:41e22ce8cc085cd3507788b33136ae1a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"41e22ce8cc085cd3507788b33136ae1a\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8409","fw:ext:cf:fd:f82d41e77f4f3a50ffe0bf5031485c0b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f82d41e77f4f3a50ffe0bf5031485c0b\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8411","fw:ext:cf:fd:a89b38ce6ce112a3f8cbd2ec0f8daa20","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a89b38ce6ce112a3f8cbd2ec0f8daa20\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8413","fw:ext:cf:fd:8cf8baf9b0de9f39bfcd946d8e2f2127","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8cf8baf9b0de9f39bfcd946d8e2f2127\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8415","fw:ext:cf:fd:801ff74290efc18806c0c2a1ea184932","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"801ff74290efc18806c0c2a1ea184932\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:28:\"Schedule free device drop in\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:14:\"inverse color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8417","fw:ext:cf:fd:3ac52199caa75be1ef9f19f341c54f7e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3ac52199caa75be1ef9f19f341c54f7e\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8419","fw:ext:cf:fd:84f4a0959f9a351258669851dbb99e95","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"84f4a0959f9a351258669851dbb99e95\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8421","fw:ext:cf:fd:9d00c45c6cce10b73576dafc9c1ba40b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9d00c45c6cce10b73576dafc9c1ba40b\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8423","fw:ext:cf:fd:50a9e1a02d2942c3df3a534d7ae8b58e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"50a9e1a02d2942c3df3a534d7ae8b58e\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8426","fw:ext:cf:fd:ac8212c21c0f372763b94d44db211883","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ac8212c21c0f372763b94d44db211883\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8428","fw:ext:cf:fd:477acf7b664beb821be983f2481a9cc5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"477acf7b664beb821be983f2481a9cc5\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8430","fw:ext:cf:fd:b2a7e1aedbf8f851237771267634554f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b2a7e1aedbf8f851237771267634554f\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8432","fw:ext:cf:fd:cfba6b5bf50c3ccb1a0232b50d1610dc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cfba6b5bf50c3ccb1a0232b50d1610dc\";s:4:\"form\";a:1:{s:4:\"json\";s:1280:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Name\",\"required\":true,\"placeholder\":\"Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8433","fw:ext:cf:fd:e8776140215a84746f1d5c27d54632b1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e8776140215a84746f1d5c27d54632b1\";s:4:\"form\";a:1:{s:4:\"json\";s:1303:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8435","fw:ext:cf:fd:c95f487e0691488398f0285868d826a8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c95f487e0691488398f0285868d826a8\";s:4:\"form\";a:1:{s:4:\"json\";s:1332:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone2\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8437","fw:ext:cf:fd:978e01434e77345acdf51abe7a11e780","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"978e01434e77345acdf51abe7a11e780\";s:4:\"form\";a:1:{s:4:\"json\";s:1332:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8438","fw:ext:cf:fd:a9f2fccac490fdc9e34e7b90241162db","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a9f2fccac490fdc9e34e7b90241162db\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8440","fw:ext:cf:fd:804e5dd087eb3d468df0bde16bc6472f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"804e5dd087eb3d468df0bde16bc6472f\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8441","fw:ext:cf:fd:8be7ce3679e50e660f3cd73afe0941b7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8be7ce3679e50e660f3cd73afe0941b7\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8442","fw:ext:cf:fd:907dc3eca92bf6f3e6313ddc5a91b471","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"907dc3eca92bf6f3e6313ddc5a91b471\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8444","fw:ext:cf:fd:e2ffa5e2bc21dcb8708c8f8a20b79edb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e2ffa5e2bc21dcb8708c8f8a20b79edb\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8446","fw:ext:cf:fd:5b90339f0202d20c8527f61b6eaa2972","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5b90339f0202d20c8527f61b6eaa2972\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8448","fw:ext:cf:fd:04218f109e31e16ed4b741172ae78a45","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"04218f109e31e16ed4b741172ae78a45\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8450","fw:ext:cf:fd:650e6eebbf645a9d410d058bf5cddbfb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"650e6eebbf645a9d410d058bf5cddbfb\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8452","fw:ext:cf:fd:e3b02f75032642f4c1fc4406942c16aa","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e3b02f75032642f4c1fc4406942c16aa\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8480","fw:ext:cf:fd:b4277fd8b539b787172403ee193fb30d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b4277fd8b539b787172403ee193fb30d\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8496","fw:ext:cf:fd:d6c1a4b10e150ccba5a5e3535d76747d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d6c1a4b10e150ccba5a5e3535d76747d\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8498","fw:ext:cf:fd:9c5f8e21da68fd0683b9fcbe9fae77e2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9c5f8e21da68fd0683b9fcbe9fae77e2\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8500","fw:ext:cf:fd:038d717ff119cd1879e13768d12b482c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"038d717ff119cd1879e13768d12b482c\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8501","fw:ext:cf:fd:7d6b794ad9f3349aa59ec3451aabc425","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7d6b794ad9f3349aa59ec3451aabc425\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8503","fw:ext:cf:fd:64dc4fbf9bff5663ad2fada67b7aa078","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"64dc4fbf9bff5663ad2fada67b7aa078\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8505","fw:ext:cf:fd:672661cc55d91db5c2184fe94e46fb2c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"672661cc55d91db5c2184fe94e46fb2c\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8507","fw:ext:cf:fd:d7c43f835fb40a24ab0183254e0c008c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d7c43f835fb40a24ab0183254e0c008c\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8509","fw:ext:cf:fd:895a693fe28ac9eafbac60d338b2e6e8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"895a693fe28ac9eafbac60d338b2e6e8\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8511","fw:ext:cf:fd:c919a491efc7fbd12d925b77a6636b71","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c919a491efc7fbd12d925b77a6636b71\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8513","fw:ext:cf:fd:bdbbddf3dd7f6b9476e7fdaa07d8aa81","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bdbbddf3dd7f6b9476e7fdaa07d8aa81\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8515","fw:ext:cf:fd:66200f39a560af07c2d45332f9f80aec","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"66200f39a560af07c2d45332f9f80aec\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8517","fw:ext:cf:fd:373de7661fb57ddcce7b2d5ce55d38f7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"373de7661fb57ddcce7b2d5ce55d38f7\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8519","fw:ext:cf:fd:593dcce8c1889b12274d0ee8485406a0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"593dcce8c1889b12274d0ee8485406a0\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8521","fw:ext:cf:fd:32fa3d581834484ecf1b837f196f92ae","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"32fa3d581834484ecf1b837f196f92ae\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8523","fw:ext:cf:fd:c307f96062ce885dccab8be2102acded","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c307f96062ce885dccab8be2102acded\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8525","fw:ext:cf:fd:89b16f0b09179b17847cd6b240ce90bf","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"89b16f0b09179b17847cd6b240ce90bf\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8527","fw:ext:cf:fd:6df465b56d2f2b5a9aa241a269973798","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6df465b56d2f2b5a9aa241a269973798\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8529","fw:ext:cf:fd:495415ba5039060cc5714bef0fb5bea4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"495415ba5039060cc5714bef0fb5bea4\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8531","fw:ext:cf:fd:3e18fe84be43b92bdc7f4c8670e23469","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3e18fe84be43b92bdc7f4c8670e23469\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8533","fw:ext:cf:fd:7a8f2782a132d1e73380fc8c67a1160d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7a8f2782a132d1e73380fc8c67a1160d\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8535","fw:ext:cf:fd:48f5d3f9425854ad01483a392cee9718","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"48f5d3f9425854ad01483a392cee9718\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8561","fw:ext:cf:fd:76b6b4d5a1492a5dfe0899314e0e2d05","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"76b6b4d5a1492a5dfe0899314e0e2d05\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8567","fw:ext:cf:fd:b315ecb598b11fac560f85827f2a1e72","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b315ecb598b11fac560f85827f2a1e72\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8569","fw:ext:cf:fd:fc5571ace385ec4dfcd28c632f2eab33","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fc5571ace385ec4dfcd28c632f2eab33\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8571","fw:ext:cf:fd:4fb8802928054e710ca80a9b4189b0c4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4fb8802928054e710ca80a9b4189b0c4\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8573","fw:ext:cf:fd:ae61c183e5bfc9f773ef76e2c42625c1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ae61c183e5bfc9f773ef76e2c42625c1\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8575","fw:ext:cf:fd:ab389150df3c34cadf7b22625c5d523f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ab389150df3c34cadf7b22625c5d523f\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8577","fw:ext:cf:fd:bfac7bc59d7622d15daa3b1602d86257","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bfac7bc59d7622d15daa3b1602d86257\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8579","fw:ext:cf:fd:a9c74809e08085e4173da642c5ed823c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a9c74809e08085e4173da642c5ed823c\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8581","fw:ext:cf:fd:92c74562b57685a4f6dce201b2132098","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"92c74562b57685a4f6dce201b2132098\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8583","fw:ext:cf:fd:35e805d69f541a6e6105b4cb9454fbfd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"35e805d69f541a6e6105b4cb9454fbfd\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8585","fw:ext:cf:fd:03a9bb2f90aa8c1a363f2202eb949318","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"03a9bb2f90aa8c1a363f2202eb949318\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8587","fw:ext:cf:fd:2f6bc7b3d942b829691cffbfd8170cbd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2f6bc7b3d942b829691cffbfd8170cbd\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8589","fw:ext:cf:fd:a3aa6817427da0b0c20933804e9711d0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a3aa6817427da0b0c20933804e9711d0\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("8698","theme_mods_dotdigital-child","a:5:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:16;}s:10:\"fw_options\";a:32:{s:10:\"logo_image\";a:2:{s:13:\"attachment_id\";s:4:\"5950\";s:3:\"url\";s:52:\"//localhost/beta/wp-content/uploads/2018/02/logo.png\";}s:9:\"logo_text\";s:0:\"\";s:12:\"logo_subtext\";s:0:\"\";s:12:\"social_icons\";a:5:{i:0;a:3:{s:4:\"icon\";s:24:\"social-icon soc-facebook\";s:10:\"icon_class\";s:0:\"\";s:8:\"icon_url\";s:25:\"http://www.facebook.com/#\";}i:1;a:3:{s:4:\"icon\";s:23:\"social-icon soc-twitter\";s:10:\"icon_class\";s:0:\"\";s:8:\"icon_url\";s:20:\"http://twitter.com/#\";}i:2;a:3:{s:4:\"icon\";s:22:\"social-icon soc-google\";s:10:\"icon_class\";s:0:\"\";s:8:\"icon_url\";s:25:\"https://plus.google.com/#\";}i:3;a:3:{s:4:\"icon\";s:23:\"social-icon soc-youtube\";s:10:\"icon_class\";s:0:\"\";s:8:\"icon_url\";s:21:\"https://youtube.com/#\";}i:4;a:3:{s:4:\"icon\";s:21:\"social-icon soc-vimeo\";s:10:\"icon_class\";s:0:\"\";s:8:\"icon_url\";s:19:\"https://vimeo.com/#\";}}s:13:\"header_link_1\";s:47:\"How to Find Us\";s:13:\"header_link_2\";s:35:\"Give Feedback\";s:19:\"header_welcome_text\";s:62:\"Welcome to Iron Axes: - Wood Works & Workshop\";s:18:\"blog_slider_switch\";a:2:{s:19:\"blog_slider_enabled\";s:3:\"yes\";s:3:\"yes\";a:1:{s:9:\"slider_id\";s:1:\"0\";}}s:15:\"post_categories\";s:3:\"yes\";s:9:\"post_tags\";s:3:\"yes\";s:6:\"header\";s:1:\"2\";s:16:\"header_subtext_3\";s:14:\"8 800 269 8469\";s:12:\"footer_image\";a:2:{s:13:\"attachment_id\";s:4:\"6072\";s:3:\"url\";s:58:\"//localhost/beta/wp-content/uploads/2018/03/footer_bg1.jpg\";}s:10:\"copyrights\";s:1:\"1\";s:19:\"page_topline_icon_1\";a:7:{s:4:\"icon\";s:11:\"fa fa-phone\";s:9:\"icon_size\";s:10:\"size_small\";s:10:\"icon_style\";s:12:\"default_icon\";s:10:\"icon_color\";s:7:\"color_1\";s:10:\"text_align\";s:0:\"\";s:5:\"title\";s:17:\"+8 (800) 923 4567\";s:4:\"text\";s:0:\"\";}s:19:\"page_topline_icon_2\";a:7:{s:4:\"icon\";s:14:\"fa fa-envelope\";s:9:\"icon_size\";s:10:\"size_small\";s:10:\"icon_style\";s:12:\"default_icon\";s:10:\"icon_color\";s:7:\"color_1\";s:10:\"text_align\";s:0:\"\";s:5:\"title\";s:19:\"example@example.com\";s:4:\"text\";s:0:\"\";}s:19:\"page_topline_icon_3\";a:7:{s:4:\"icon\";s:16:\"rt-icon2-clock-o\";s:9:\"icon_size\";s:10:\"size_small\";s:10:\"icon_style\";s:12:\"default_icon\";s:10:\"icon_color\";s:7:\"color_1\";s:10:\"text_align\";s:0:\"\";s:5:\"title\";s:19:\"Mon - Sat 8am - 6pm\";s:4:\"text\";s:0:\"\";}s:19:\"color_scheme_number\";s:0:\"\";s:13:\"header_button\";a:6:{s:5:\"label\";s:11:\"Trial Offer\";s:4:\"link\";s:18:\"index.php/contacts\";s:6:\"target\";s:5:\"_self\";s:4:\"size\";s:11:\"wide_button\";s:4:\"type\";s:20:\"theme_button inverse\";s:5:\"color\";s:6:\"color1\";}s:13:\"header_icon_1\";a:8:{s:4:\"icon\";s:16:\"fa fa-map-marker\";s:13:\"icon_position\";s:4:\"left\";s:9:\"icon_size\";s:10:\"size_small\";s:10:\"icon_style\";s:12:\"default_icon\";s:10:\"icon_color\";s:7:\"color_2\";s:10:\"text_align\";s:9:\"text-left\";s:5:\"title\";s:22:\"487 Loraine Ramp, NY \";s:4:\"text\";s:0:\"\";}s:13:\"header_icon_2\";a:8:{s:4:\"icon\";s:12:\"fa fa-pencil\";s:13:\"icon_position\";s:4:\"left\";s:9:\"icon_size\";s:10:\"size_small\";s:10:\"icon_style\";s:12:\"default_icon\";s:10:\"icon_color\";s:7:\"color_2\";s:10:\"text_align\";s:10:\"text-right\";s:5:\"title\";s:20:\"example@example.com \";s:4:\"text\";s:0:\"\";}s:11:\"post_author\";s:3:\"yes\";s:12:\"footer_color\";s:2:\"ds\";s:13:\"header_icon_3\";a:8:{s:4:\"icon\";s:11:\"fa fa-phone\";s:13:\"icon_position\";s:4:\"left\";s:9:\"icon_size\";s:10:\"size_small\";s:10:\"icon_style\";s:12:\"default_icon\";s:10:\"icon_color\";s:7:\"color_2\";s:10:\"text_align\";s:0:\"\";s:5:\"title\";s:15:\"1-888-123-6894 \";s:4:\"text\";s:0:\"\";}s:6:\"footer\";s:1:\"1\";s:7:\"version\";s:5:\"light\";s:15:\"copyrights_text\";s:41:\"© Copyright 2018 All Rights Reserved\";s:16:\"copyrights_image\";a:2:{s:13:\"attachment_id\";s:4:\"6067\";s:3:\"url\";s:60:\"//localhost/beta/wp-content/uploads/2018/03/copyright_bg.jpg\";}s:12:\"header_phone\";s:27:\"1-800-123-4567\";s:11:\"blog_layout\";s:7:\"regular\";s:12:\"header_email\";s:66:\"dotdigital@example.com\";s:17:\"header_open_hours\";s:46:\"Mon-Fri: 8:00-18:00; Sat: 9:00-17:00; Sun: off\";}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1525281779;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:24:\"dotdigital_theme_posts-2\";i:1;s:20:\"dotdigital_twitter-2\";}s:12:\"sidebar-main\";a:7:{i:0;s:13:\"apsc_widget-2\";i:1;s:12:\"categories-3\";i:2;s:6:\"text-4\";i:3;s:8:\"search-3\";i:4;s:10:\"calendar-2\";i:5;s:11:\"tag_cloud-3\";i:6;s:6:\"text-5\";}s:16:\"sidebar-footer-1\";a:2:{i:0;s:19:\"dotdigital_banner-3\";i:1;s:20:\"dotdigital_socials-2\";}s:8:\"Services\";a:0:{}s:4:\"Shop\";a:9:{i:0;s:32:\"woocommerce_product_categories-2\";i:1;s:28:\"woocommerce_product_search-2\";i:2;s:25:\"woocommerce_widget_cart-2\";i:3;s:32:\"woocommerce_top_rated_products-2\";i:4;s:26:\"woocommerce_price_filter-2\";i:5;s:33:\"woocommerce_layered_nav_filters-2\";i:6;s:25:\"woocommerce_layered_nav-2\";i:7;s:31:\"woocommerce_product_tag_cloud-2\";i:8;s:25:\"woocommerce_layered_nav-3\";}}}s:10:\"main_color\";s:7:\"#ff497c\";}","yes");
INSERT INTO `wp_options` VALUES("8703","dotdigital-child-fw-sidebars-options","a:2:{s:8:\"settings\";a:4:{s:10:\"post_types\";a:4:{s:4:\"page\";a:2:{s:6:\"by_ids\";a:2:{i:1;a:4:{s:8:\"position\";s:4:\"full\";s:8:\"sidebars\";a:0:{}s:9:\"timestamp\";i:1516110895;s:3:\"ids\";a:1:{i:0;s:4:\"5504\";}}i:2;a:4:{s:8:\"position\";s:4:\"left\";s:8:\"sidebars\";a:1:{s:4:\"blue\";s:4:\"Shop\";}s:9:\"timestamp\";i:1524481259;s:3:\"ids\";a:1:{i:0;s:4:\"5504\";}}}s:9:\"saved_ids\";a:1:{i:0;s:4:\"5504\";}}s:4:\"post\";a:1:{s:6:\"common\";a:3:{s:8:\"position\";s:4:\"full\";s:8:\"sidebars\";a:0:{}s:9:\"timestamp\";i:1525167169;}}s:11:\"fw-services\";a:1:{s:6:\"common\";a:3:{s:8:\"position\";s:4:\"full\";s:8:\"sidebars\";a:0:{}s:9:\"timestamp\";i:1515775752;}}s:7:\"product\";a:1:{s:6:\"common\";a:3:{s:8:\"position\";s:4:\"left\";s:8:\"sidebars\";a:1:{s:4:\"blue\";s:4:\"Shop\";}s:9:\"timestamp\";i:1524809902;}}}s:13:\"saved_presets\";a:5:{i:1;i:1;i:2;i:2;i:3;i:3;i:4;i:4;i:5;i:5;}s:8:\"archives\";a:1:{s:8:\"fw-event\";a:1:{s:6:\"common\";a:3:{s:8:\"position\";s:4:\"full\";s:8:\"sidebars\";a:0:{}s:9:\"timestamp\";i:1521558709;}}}s:10:\"taxonomies\";a:1:{s:8:\"category\";a:2:{s:6:\"by_ids\";a:3:{i:3;a:4:{s:8:\"position\";s:4:\"left\";s:8:\"sidebars\";a:1:{s:4:\"blue\";s:12:\"sidebar-main\";}s:9:\"timestamp\";i:1529244894;s:3:\"ids\";a:1:{i:0;s:3:\"136\";}}i:4;a:4:{s:8:\"position\";s:5:\"right\";s:8:\"sidebars\";a:1:{s:4:\"blue\";s:12:\"sidebar-main\";}s:9:\"timestamp\";i:1529248187;s:3:\"ids\";a:1:{i:0;s:3:\"137\";}}i:5;a:4:{s:8:\"position\";s:4:\"full\";s:8:\"sidebars\";a:0:{}s:9:\"timestamp\";i:1529249748;s:3:\"ids\";a:1:{i:0;s:3:\"138\";}}}s:9:\"saved_ids\";a:3:{i:0;s:3:\"136\";i:1;s:3:\"137\";i:2;s:3:\"138\";}}}}s:8:\"sidebars\";a:2:{s:8:\"Services\";a:2:{s:2:\"id\";s:8:\"Services\";s:4:\"name\";s:8:\"Services\";}s:4:\"Shop\";a:2:{s:2:\"id\";s:4:\"Shop\";s:4:\"name\";s:4:\"Shop\";}}}","no");
INSERT INTO `wp_options` VALUES("8795","fw:ext:cf:fd:60c053fe976580b2d5c38663cd8243ef","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"60c053fe976580b2d5c38663cd8243ef\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("8797","fw:ext:cf:fd:8ecef712e5911f57eae98dc7176a4591","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8ecef712e5911f57eae98dc7176a4591\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("8799","fw:ext:cf:fd:8794b112fb676abcff3f6831b410bc60","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8794b112fb676abcff3f6831b410bc60\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("8898","woocommerce_store_address","","yes");
INSERT INTO `wp_options` VALUES("8899","woocommerce_store_address_2","","yes");
INSERT INTO `wp_options` VALUES("8900","woocommerce_store_city","","yes");
INSERT INTO `wp_options` VALUES("8901","woocommerce_store_postcode","","yes");
INSERT INTO `wp_options` VALUES("9058","fw:ext:cf:fd:e1ce7b0698ac4441892f3afc3ed11570","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e1ce7b0698ac4441892f3afc3ed11570\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9060","fw:ext:cf:fd:b8c8a3f19d27b0bc6004e522e789e068","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b8c8a3f19d27b0bc6004e522e789e068\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9062","fw:ext:cf:fd:750405f56039448bf84974f90016fa4c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"750405f56039448bf84974f90016fa4c\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send Message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9064","fw:ext:cf:fd:ee6aac4cd3c3d64a02fa375521449021","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ee6aac4cd3c3d64a02fa375521449021\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9066","fw:ext:cf:fd:50ddaac239783c79f704ad87637c836d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"50ddaac239783c79f704ad87637c836d\";s:4:\"form\";a:1:{s:4:\"json\";s:1378:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone\",\"required\":true,\"placeholder\":\"Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9069","fw:ext:cf:fd:2877fc96e2e3924e5bd630e32d881ff2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2877fc96e2e3924e5bd630e32d881ff2\";s:4:\"form\";a:1:{s:4:\"json\";s:1464:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-bubble\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9071","fw:ext:cf:fd:1694ecc80e6df611774f80158a638b68","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1694ecc80e6df611774f80158a638b68\";s:4:\"form\";a:1:{s:4:\"json\";s:1464:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_6a83eee\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_73633d9\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_59ecb6b\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-bubble\"}},{\"type\":\"text\",\"shortcode\":\"text_7ed93d8\",\"width\":\"1_2\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_c672067\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9127","etsy_shop_timeout","10","yes");
INSERT INTO `wp_options` VALUES("9128","etsy_shop_cache_life","21600","yes");
INSERT INTO `wp_options` VALUES("9129","etsy_shop_version","1.1","yes");
INSERT INTO `wp_options` VALUES("9178","etsy_shop_api_key","h10sl1gy09oqj5dzy1w6yauh","yes");
INSERT INTO `wp_options` VALUES("9179","etsy_shop_debug_mode","0","yes");
INSERT INTO `wp_options` VALUES("9180","etsy_shop_target_blank","0","yes");
INSERT INTO `wp_options` VALUES("9199","woocommerce_gateway_order","a:4:{s:4:\"bacs\";i:0;s:6:\"cheque\";i:1;s:3:\"cod\";i:2;s:6:\"paypal\";i:3;}","yes");
INSERT INTO `wp_options` VALUES("9448","fw:ext:cf:fd:7d6f843719cfdb7f4461e028e38faf30","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7d6f843719cfdb7f4461e028e38faf30\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9450","fw:ext:cf:fd:eb1e4a83cb86cec8c1f0886d8743416e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"eb1e4a83cb86cec8c1f0886d8743416e\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9452","fw:ext:cf:fd:f17640aa2eecf412793298e81a9ea5c0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f17640aa2eecf412793298e81a9ea5c0\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9454","fw:ext:cf:fd:325cf086af7279927b933466a4d78427","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"325cf086af7279927b933466a4d78427\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9456","fw:ext:cf:fd:40641887629d5bda809279d0190a8a40","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"40641887629d5bda809279d0190a8a40\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9458","fw:ext:cf:fd:013738af6d9a74e149fad8140b8052c0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"013738af6d9a74e149fad8140b8052c0\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9465","fw:ext:cf:fd:261538faf36b29ab68fa31e67e9ff46a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"261538faf36b29ab68fa31e67e9ff46a\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9467","fw:ext:cf:fd:773c351192e506dea480361884ba09e5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"773c351192e506dea480361884ba09e5\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9469","fw:ext:cf:fd:3243fa9b3a714e8fea958c250220b6a3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3243fa9b3a714e8fea958c250220b6a3\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9471","fw:ext:cf:fd:20c8e89fbce475f205e52579dd200268","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"20c8e89fbce475f205e52579dd200268\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9473","fw:ext:cf:fd:c576cf3734cf95a8f45d509160451d07","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c576cf3734cf95a8f45d509160451d07\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9475","fw:ext:cf:fd:0b073b2356f77f03f017252444cf6c29","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0b073b2356f77f03f017252444cf6c29\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9477","fw:ext:cf:fd:1eb21377d5e4d5b0939d228f89a9fff3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1eb21377d5e4d5b0939d228f89a9fff3\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9479","fw:ext:cf:fd:d48272d1605bf8d743db3d7dfa44d66f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d48272d1605bf8d743db3d7dfa44d66f\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9481","fw:ext:cf:fd:48f8e3bbec8297d6cad0428e716aebf1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"48f8e3bbec8297d6cad0428e716aebf1\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9483","fw:ext:cf:fd:1e8aa2803ff5c1465aa2ef36040ecfa8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1e8aa2803ff5c1465aa2ef36040ecfa8\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9485","fw:ext:cf:fd:494cecd6784d2b5e5cf1a6e3e5ddedb7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"494cecd6784d2b5e5cf1a6e3e5ddedb7\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9487","fw:ext:cf:fd:63f5fdbc8d8ed566d0496f991e7ef9b0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"63f5fdbc8d8ed566d0496f991e7ef9b0\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9489","fw:ext:cf:fd:bb481f2a0215f09251a45853d0489873","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bb481f2a0215f09251a45853d0489873\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9490","fw:ext:cf:fd:22a8af83ab5333507a64b48842dc9c25","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"22a8af83ab5333507a64b48842dc9c25\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9492","fw:ext:cf:fd:e2e093fd9b3846a4104badbb64630ed9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e2e093fd9b3846a4104badbb64630ed9\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9494","fw:ext:cf:fd:ae44a2ac1755f6c42db57bf33ff2579e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ae44a2ac1755f6c42db57bf33ff2579e\";s:4:\"form\";a:1:{s:4:\"json\";s:1376:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-phone5\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"rt-icon2-calendar4\"},\"shortcode\":\"date_time_15e5b11\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"rt-icon2-clock\"},\"shortcode\":\"date_time_5c7b862\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Book Now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color3\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9496","fw:ext:cf:fd:71b62ea2bcc0b110de1ce568ac137e56","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"71b62ea2bcc0b110de1ce568ac137e56\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9498","fw:ext:cf:fd:7a84921b9b29fb811c25f52f95c3debc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7a84921b9b29fb811c25f52f95c3debc\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9506","fw:ext:cf:fd:a0c817c5cdea409f7060cd7545e06d4e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a0c817c5cdea409f7060cd7545e06d4e\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9508","fw:ext:cf:fd:0cd008a500476ca6a46b5e62808d5cdc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0cd008a500476ca6a46b5e62808d5cdc\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9510","fw:ext:cf:fd:049e8e1dfb1408a47c55d6af88c198d1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"049e8e1dfb1408a47c55d6af88c198d1\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9511","fw:ext:cf:fd:b76a64810eba73b0b2f3cb9d08792372","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b76a64810eba73b0b2f3cb9d08792372\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9512","fw:ext:cf:fd:33aad2f58bcbde651503e10ce32d103e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"33aad2f58bcbde651503e10ce32d103e\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9514","fw:ext:cf:fd:3a3ef3d92380dea356205fc7bcf7dcfb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3a3ef3d92380dea356205fc7bcf7dcfb\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9518","fw:ext:cf:fd:575fcf9818088dc610ba3b50a7761a49","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"575fcf9818088dc610ba3b50a7761a49\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9520","fw:ext:cf:fd:196078f01df0f7819f6a9a443cfecdc1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"196078f01df0f7819f6a9a443cfecdc1\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9523","fw:ext:cf:fd:044564b62e92980089832f6dbe70008c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"044564b62e92980089832f6dbe70008c\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9525","fw:ext:cf:fd:a19c291531d3c2ad2582c8e1b641b895","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a19c291531d3c2ad2582c8e1b641b895\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9527","fw:ext:cf:fd:2dc4e86913c9ebe9d7bed3ec1154e60f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2dc4e86913c9ebe9d7bed3ec1154e60f\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9536","fw:ext:cf:fd:31b0fa916986f8ecc302919d39df040b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"31b0fa916986f8ecc302919d39df040b\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9538","fw:ext:cf:fd:55d201dbeb044499e125e289c63ebdee","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"55d201dbeb044499e125e289c63ebdee\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9540","fw:ext:cf:fd:972417762ba8920f2cb53b09a3ab7b32","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"972417762ba8920f2cb53b09a3ab7b32\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9542","fw:ext:cf:fd:e0c65e8ce2f5037e7ea30e19931c9ec5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e0c65e8ce2f5037e7ea30e19931c9ec5\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9544","fw:ext:cf:fd:77b71e9a97fa9c90dc1e72f70b5ebfcd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"77b71e9a97fa9c90dc1e72f70b5ebfcd\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9546","fw:ext:cf:fd:94cb92050d6ce6ffd90d79247c492e38","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"94cb92050d6ce6ffd90d79247c492e38\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9568","fw:ext:cf:fd:b175074ea8634b3f7183f80d0c7c27d3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b175074ea8634b3f7183f80d0c7c27d3\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9571","fw:ext:cf:fd:73aa660e7be168a8adbb076942e70c82","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"73aa660e7be168a8adbb076942e70c82\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9573","fw:ext:cf:fd:164bf532ee78574483d59b1a63fe04f4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"164bf532ee78574483d59b1a63fe04f4\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9575","fw:ext:cf:fd:b89bffed7ce7d33341873054dc8c0f4a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b89bffed7ce7d33341873054dc8c0f4a\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9577","fw:ext:cf:fd:98cf6c08a5ffc3f70fc7b8f7ca845826","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"98cf6c08a5ffc3f70fc7b8f7ca845826\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9578","fw:ext:cf:fd:4be150033818362048fb259b5a2ef795","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4be150033818362048fb259b5a2ef795\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9581","fw:ext:cf:fd:f02327f999d4857f26ab3a84227d9d96","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f02327f999d4857f26ab3a84227d9d96\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9582","fw:ext:cf:fd:2343543dd40e5b8c668003512e588820","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2343543dd40e5b8c668003512e588820\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9584","fw:ext:cf:fd:c76c38a66f63dbddaddf2ed574adc595","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c76c38a66f63dbddaddf2ed574adc595\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9591","fw:ext:cf:fd:193a570854f94684599c9ef4701f320d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"193a570854f94684599c9ef4701f320d\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9593","fw:ext:cf:fd:f128448d94bdefad138e357a67ed1fa6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f128448d94bdefad138e357a67ed1fa6\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9594","fw:ext:cf:fd:e601370536f0a1f35173a96e04f9562c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e601370536f0a1f35173a96e04f9562c\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9604","fw:ext:cf:fd:dae5df857f2699a588f4ab433caf12c7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"dae5df857f2699a588f4ab433caf12c7\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9610","fw:ext:cf:fd:2f47da0bc9eff7c5db82e2a4a6e1feb5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2f47da0bc9eff7c5db82e2a4a6e1feb5\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9612","fw:ext:cf:fd:d3177746de91b29e4fdaf61529c3f4e8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d3177746de91b29e4fdaf61529c3f4e8\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9614","fw:ext:cf:fd:7bdeba0ea891ba723d2920754e22f4cb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7bdeba0ea891ba723d2920754e22f4cb\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9628","fw:ext:cf:fd:7807342f17f8402cd56d1714bc9b0431","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7807342f17f8402cd56d1714bc9b0431\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9631","fw:ext:cf:fd:5a1f218d1a43bdf9441518d19d5f5a0e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5a1f218d1a43bdf9441518d19d5f5a0e\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9634","fw:ext:cf:fd:91e0f20c78423eae74bfae2c1a538c2b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"91e0f20c78423eae74bfae2c1a538c2b\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9635","fw:ext:cf:fd:e3e471815f5c03000a2d736174d64025","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e3e471815f5c03000a2d736174d64025\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9681","fw:ext:cf:fd:44505cb11f86ce8587c5d3133f932d1e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"44505cb11f86ce8587c5d3133f932d1e\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9683","fw:ext:cf:fd:4daf92f5fe99d8072efc527e0666bdd7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4daf92f5fe99d8072efc527e0666bdd7\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9685","fw:ext:cf:fd:1e4ab4326c2a2125c925307aae8009a0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1e4ab4326c2a2125c925307aae8009a0\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9687","fw:ext:cf:fd:d3f9934d7c9434b902a8a4375f6d9d71","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d3f9934d7c9434b902a8a4375f6d9d71\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9689","fw:ext:cf:fd:191add40071b8ea871e0f284ab130b2f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"191add40071b8ea871e0f284ab130b2f\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9690","fw:ext:cf:fd:e071472a0971112f5aa8f3e9b466741f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e071472a0971112f5aa8f3e9b466741f\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9720","fw:ext:cf:fd:f0c679c2c72cbffcf9b706c9832e53ec","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f0c679c2c72cbffcf9b706c9832e53ec\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9722","fw:ext:cf:fd:ba9295cae3fd4c5342107066498b6795","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ba9295cae3fd4c5342107066498b6795\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9724","fw:ext:cf:fd:880548420e32d3603bdeb17b8976ade3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"880548420e32d3603bdeb17b8976ade3\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9725","fw:ext:cf:fd:b25ff599b1be245caddac3dd1dec3ffd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b25ff599b1be245caddac3dd1dec3ffd\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9727","fw:ext:cf:fd:1fb27e1167deab7ddc7a922bb574086f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1fb27e1167deab7ddc7a922bb574086f\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9729","fw:ext:cf:fd:487d4e40cb7f684434d2062c54413498","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"487d4e40cb7f684434d2062c54413498\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9731","fw:ext:cf:fd:51437cc1f5535080ccca731765efdde7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"51437cc1f5535080ccca731765efdde7\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9733","fw:ext:cf:fd:210f1102cc6e10e1293bfe7e01411987","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"210f1102cc6e10e1293bfe7e01411987\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9735","fw:ext:cf:fd:e216fe95bd91e09a4b50af261650c953","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e216fe95bd91e09a4b50af261650c953\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9737","fw:ext:cf:fd:e8cde8392cad8159521be2fc4c6f20e7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e8cde8392cad8159521be2fc4c6f20e7\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9739","fw:ext:cf:fd:738b3caebdbb8257e1a49fbc4b4f0abd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"738b3caebdbb8257e1a49fbc4b4f0abd\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9741","fw:ext:cf:fd:f178307fe7c16fd23f1ee517fca50ecb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f178307fe7c16fd23f1ee517fca50ecb\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9743","fw:ext:cf:fd:758abf8c339d2ffb470dec920a3ac19b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"758abf8c339d2ffb470dec920a3ac19b\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9752","fw:ext:cf:fd:f9958c3f6eef80e5d16bc7a374e8f4e1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f9958c3f6eef80e5d16bc7a374e8f4e1\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9766","fw:ext:cf:fd:396457cefd066203cb6245f4101da2fd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"396457cefd066203cb6245f4101da2fd\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9768","fw:ext:cf:fd:a63def79bb7155048622dff32568d667","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a63def79bb7155048622dff32568d667\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9776","fw:ext:cf:fd:da4a55944fd1bc1e0fb0837f2dc1a554","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"da4a55944fd1bc1e0fb0837f2dc1a554\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9778","fw:ext:cf:fd:65076947362b4c02a8ed01393f6b4bae","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"65076947362b4c02a8ed01393f6b4bae\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9780","fw:ext:cf:fd:068fdc1e2e7f649a29a1efbb53c13a0f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"068fdc1e2e7f649a29a1efbb53c13a0f\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9782","fw:ext:cf:fd:423ebd108c0c9b9f9b16a61aee44f8d6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"423ebd108c0c9b9f9b16a61aee44f8d6\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9784","fw:ext:cf:fd:41e59308ca6f03b5451ba3777f0c7988","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"41e59308ca6f03b5451ba3777f0c7988\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9786","fw:ext:cf:fd:bec7d2e2727bace0b3d687c5928bbe7a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bec7d2e2727bace0b3d687c5928bbe7a\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9788","fw:ext:cf:fd:b9c4087d85bcabae6e6a35365bb59d8a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b9c4087d85bcabae6e6a35365bb59d8a\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9790","fw:ext:cf:fd:31b382b6bd47778d74faeb5291fbf82e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"31b382b6bd47778d74faeb5291fbf82e\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9791","fw:ext:cf:fd:fa2c13451c8f5c69de448e5f7d4c591a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fa2c13451c8f5c69de448e5f7d4c591a\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9792","fw:ext:cf:fd:c1bbbb575d03cfacc3f564ac3f285667","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c1bbbb575d03cfacc3f564ac3f285667\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9795","fw:ext:cf:fd:e91683482226708caaf8b8cd90b41bc8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e91683482226708caaf8b8cd90b41bc8\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9797","fw:ext:cf:fd:5591eac02a18f64264d18393ac9dee1a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5591eac02a18f64264d18393ac9dee1a\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("9799","fw:ext:cf:fd:f790fd49d8b6baefd1b623eaec69ba6a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f790fd49d8b6baefd1b623eaec69ba6a\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10325","fw:ext:cf:fd:f17308ed8eaa7e5700ea02907d43be90","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f17308ed8eaa7e5700ea02907d43be90\";s:4:\"form\";a:1:{s:4:\"json\";s:110:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}}]\";}s:16:\"background_color\";s:2:\"ls\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:0:\"\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("10327","fw:ext:cf:fd:6da04386737c7399c665f943074d8fcb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6da04386737c7399c665f943074d8fcb\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10329","fw:ext:cf:fd:06d6ed64d9f5d0cf05b3c6042f1429ec","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"06d6ed64d9f5d0cf05b3c6042f1429ec\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10330","fw:ext:cf:fd:43cd80c5c1c1669a52e1c5f8b75f00c2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"43cd80c5c1c1669a52e1c5f8b75f00c2\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10332","fw:ext:cf:fd:7c6f2f8c6d7fcf6e61bdfe81d217203d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7c6f2f8c6d7fcf6e61bdfe81d217203d\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10334","fw:ext:cf:fd:de8cb797bf4fd25f3145ccf2fb43473e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"de8cb797bf4fd25f3145ccf2fb43473e\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10336","fw:ext:cf:fd:091cbc744fcae1913eb083ff27654642","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"091cbc744fcae1913eb083ff27654642\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10338","fw:ext:cf:fd:9eb3dfc3f3e927b3d4142b54c49276db","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9eb3dfc3f3e927b3d4142b54c49276db\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10340","fw:ext:cf:fd:3b966870ab1a605ac875c7bce0f1d436","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3b966870ab1a605ac875c7bce0f1d436\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10342","fw:ext:cf:fd:cc885219b098cb95269df641c735e947","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cc885219b098cb95269df641c735e947\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10345","fw:ext:cf:fd:c989bab4781db658c53865d18f10b893","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c989bab4781db658c53865d18f10b893\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10347","fw:ext:cf:fd:8f18e38a309775df0e5ee78ec2627b85","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8f18e38a309775df0e5ee78ec2627b85\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10349","fw:ext:cf:fd:1fcfeab4f87dc4bb6169efbd9cebbdca","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1fcfeab4f87dc4bb6169efbd9cebbdca\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10351","fw:ext:cf:fd:4f1b8b4c480e522d7a728329764944d0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4f1b8b4c480e522d7a728329764944d0\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10353","fw:ext:cf:fd:43ecdc40d4f5843aaba69c4896f12a9f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"43ecdc40d4f5843aaba69c4896f12a9f\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10355","fw:ext:cf:fd:6ecf2e016c386f58a921924dd60d52fe","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6ecf2e016c386f58a921924dd60d52fe\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10357","fw:ext:cf:fd:a8255966a9f2863174c8a42bc4180859","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a8255966a9f2863174c8a42bc4180859\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10359","fw:ext:cf:fd:2aa4bebe61760f20ccb518efc3958715","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2aa4bebe61760f20ccb518efc3958715\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10361","fw:ext:cf:fd:08e6c95296020a13bd5308b99f6b6b8e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"08e6c95296020a13bd5308b99f6b6b8e\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10363","fw:ext:cf:fd:5573b3a1c222ac9e21c2d02b163457c8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5573b3a1c222ac9e21c2d02b163457c8\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10365","fw:ext:cf:fd:6ea2f92e12967964bed5403efefaf727","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6ea2f92e12967964bed5403efefaf727\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10367","fw:ext:cf:fd:9cd932d00ccf9a4514b2b84db81cd25b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9cd932d00ccf9a4514b2b84db81cd25b\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10369","fw:ext:cf:fd:c4406fef5b33a3dcf33edaa725b1f16e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c4406fef5b33a3dcf33edaa725b1f16e\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10371","fw:ext:cf:fd:6182ff50fa4ab12408ed82f9ff9d183a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6182ff50fa4ab12408ed82f9ff9d183a\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_f7a9c0d\",\"width\":\"1_2\",\"options\":{\"label\":\"Full name\",\"required\":true,\"placeholder\":\"Full name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_79af8e1\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone number\",\"required\":true,\"placeholder\":\"Phone number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_24ad120\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_a298920\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_686c2fd\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:44:\"with_padding overflow-hidden transp_black_bg\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10549","fw:ext:cf:fd:a667ac05b315bcc4fc90295e7301d09e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a667ac05b315bcc4fc90295e7301d09e\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10551","fw:ext:cf:fd:3142c78c26849f87773bc06d4321f8dc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3142c78c26849f87773bc06d4321f8dc\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10553","fw:ext:cf:fd:78feffee095582833d950f35a34866ec","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"78feffee095582833d950f35a34866ec\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10556","fw:ext:cf:fd:1cbe0084c26e8ff7dad5932078512598","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1cbe0084c26e8ff7dad5932078512598\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10558","fw:ext:cf:fd:9ddd0b44399353efdd936e5feaccdd3e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9ddd0b44399353efdd936e5feaccdd3e\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10560","fw:ext:cf:fd:9e256786808328464795c410738f9c51","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9e256786808328464795c410738f9c51\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10563","fw:ext:cf:fd:4d451cd5c938193ad2b9d80cafb1a234","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4d451cd5c938193ad2b9d80cafb1a234\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10565","fw:ext:cf:fd:e19e25af6e5ee706e73510b56db998d8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e19e25af6e5ee706e73510b56db998d8\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10567","fw:ext:cf:fd:47fb71ee16dd9325fb1fee3e5c137ae4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"47fb71ee16dd9325fb1fee3e5c137ae4\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10569","fw:ext:cf:fd:0c5280a650d01144963bd79212dd1157","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0c5280a650d01144963bd79212dd1157\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10571","fw:ext:cf:fd:6830521c56131a0fdbd2b5d00107c8aa","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6830521c56131a0fdbd2b5d00107c8aa\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10573","fw:ext:cf:fd:7ab26946ccf7b19599511e4f4c397229","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7ab26946ccf7b19599511e4f4c397229\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10575","fw:ext:cf:fd:cc5ce1a41ce8eb7268e373e3d0d7a90e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cc5ce1a41ce8eb7268e373e3d0d7a90e\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10577","fw:ext:cf:fd:29dd5560c9aa5d3af708d9f3b0842e16","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"29dd5560c9aa5d3af708d9f3b0842e16\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10579","fw:ext:cf:fd:c8e24e89c5ad99ac9c15e8f706df519c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c8e24e89c5ad99ac9c15e8f706df519c\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10581","fw:ext:cf:fd:45cea7bec2d7fb5462b0e6c08aa77708","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"45cea7bec2d7fb5462b0e6c08aa77708\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10583","fw:ext:cf:fd:7d51789d358171347484a349bf244d1c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7d51789d358171347484a349bf244d1c\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10585","fw:ext:cf:fd:944e4a9ace4d88f76f5349eb24f52608","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"944e4a9ace4d88f76f5349eb24f52608\";s:4:\"form\";a:1:{s:4:\"json\";s:1168:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-user\"}},{\"type\":\"email\",\"shortcode\":\"email_c1c57b6\",\"width\":\"1_3\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"rt-icon2-mail\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"rt-icon2-clip\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Message\",\"required\":true,\"placeholder\":\"Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"rt-icon2-pen\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10587","fw:ext:cf:fd:52be964ee1de3120247bc7b8e63a8c3a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"52be964ee1de3120247bc7b8e63a8c3a\";s:4:\"form\";a:1:{s:4:\"json\";s:1322:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Phone Number\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10589","fw:ext:cf:fd:6dd27879497ff125ea77b80c42d07b0f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6dd27879497ff125ea77b80c42d07b0f\";s:4:\"form\";a:1:{s:4:\"json\";s:1322:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Phone Number\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10591","fw:ext:cf:fd:cf345855436670fd3edb505f73b8698e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cf345855436670fd3edb505f73b8698e\";s:4:\"form\";a:1:{s:4:\"json\";s:1322:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Phone Number\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10593","fw:ext:cf:fd:8f5ec147e0a1c6da3308e58faf21c1d0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8f5ec147e0a1c6da3308e58faf21c1d0\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10595","fw:ext:cf:fd:3df0ca8699c5e7f199501b9789a5918d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3df0ca8699c5e7f199501b9789a5918d\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10597","fw:ext:cf:fd:b0a27207020b387ae3a7f9901823bb2c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b0a27207020b387ae3a7f9901823bb2c\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10599","fw:ext:cf:fd:9708f45dacbbf699ff216a7f65274d22","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9708f45dacbbf699ff216a7f65274d22\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10601","fw:ext:cf:fd:5c25c0f83bdfc5f1eb72edeb4bfe83a5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5c25c0f83bdfc5f1eb72edeb4bfe83a5\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10603","fw:ext:cf:fd:e51ed34a6c6e4ad252c476bad23c1670","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e51ed34a6c6e4ad252c476bad23c1670\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10605","fw:ext:cf:fd:e77c6c0f87b596b0aaa2eedc5ac07826","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e77c6c0f87b596b0aaa2eedc5ac07826\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10607","fw:ext:cf:fd:7ea2d3818527820a7e51740531130eb5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7ea2d3818527820a7e51740531130eb5\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10672","fw:ext:cf:fd:b9a0ebdbdb1944905f116d2e9ca99645","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b9a0ebdbdb1944905f116d2e9ca99645\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10674","fw:ext:cf:fd:69f56bac24e6d575d0da8b4cfa522bdb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"69f56bac24e6d575d0da8b4cfa522bdb\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10676","fw:ext:cf:fd:6a8e0049d376c585562cbc448951b93b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6a8e0049d376c585562cbc448951b93b\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10677","fw:ext:cf:fd:310fdf074c8548e36e1646f6e015a263","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"310fdf074c8548e36e1646f6e015a263\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10679","fw:ext:cf:fd:aa4f517566cbe4415cd8e93bfb1e48af","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"aa4f517566cbe4415cd8e93bfb1e48af\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10681","fw:ext:cf:fd:08e8e1e796d0befb2fe6bb11fe558ea6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"08e8e1e796d0befb2fe6bb11fe558ea6\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10683","fw:ext:cf:fd:1f1c3c305297ee88d95a4d69410f46c1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1f1c3c305297ee88d95a4d69410f46c1\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10686","fw:ext:cf:fd:4c971261fd15b1afddaede0e63c77345","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4c971261fd15b1afddaede0e63c77345\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10688","fw:ext:cf:fd:c6e43dbcc4c098b1a867a1345da12d6d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c6e43dbcc4c098b1a867a1345da12d6d\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10689","fw:ext:cf:fd:1da658b79b89a97a5b36c0ae60bc5d04","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1da658b79b89a97a5b36c0ae60bc5d04\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10690","fw:ext:cf:fd:abee863a455ec3822b36ffbacbfa1e6c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"abee863a455ec3822b36ffbacbfa1e6c\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10692","fw:ext:cf:fd:fbb195664318006cb206c000b58501b9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fbb195664318006cb206c000b58501b9\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10694","fw:ext:cf:fd:4874aa1ca4777746ae4bfb7bf5a0ad9d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4874aa1ca4777746ae4bfb7bf5a0ad9d\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10697","fw:ext:cf:fd:c0647a2514ca8c3e6f295a8573fb4efc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c0647a2514ca8c3e6f295a8573fb4efc\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10699","fw:ext:cf:fd:9160e63e1ca1dbbbe5410c7c74a4c490","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9160e63e1ca1dbbbe5410c7c74a4c490\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10700","fw:ext:cf:fd:fde421c577833b514254adcd7d92110d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fde421c577833b514254adcd7d92110d\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10702","fw:ext:cf:fd:ae16d623857d23a654d4f87e5d5bdcad","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ae16d623857d23a654d4f87e5d5bdcad\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10708","fw:ext:cf:fd:1d3a5084e7147201ad429b13d2fd577d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1d3a5084e7147201ad429b13d2fd577d\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10709","fw:ext:cf:fd:d28f312091a98e2043110e635c6b05af","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d28f312091a98e2043110e635c6b05af\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10712","fw:ext:cf:fd:f83b4945ff12fdc9acae4dd83509c096","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f83b4945ff12fdc9acae4dd83509c096\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10714","fw:ext:cf:fd:14c099b23d4e078a72122cf235ad2315","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"14c099b23d4e078a72122cf235ad2315\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10716","fw:ext:cf:fd:ca0354878f2fb8f385ec3159f1bad674","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ca0354878f2fb8f385ec3159f1bad674\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10718","fw:ext:cf:fd:950f6265670d3b54b85aa11ed0223059","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"950f6265670d3b54b85aa11ed0223059\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10720","fw:ext:cf:fd:b900bc953d8603f80e36e7e1fd7afd88","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b900bc953d8603f80e36e7e1fd7afd88\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10722","fw:ext:cf:fd:6520e66d2c25009c76fe17c3249bd27b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6520e66d2c25009c76fe17c3249bd27b\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10724","fw:ext:cf:fd:308eea4dd6ab912c43a8454f5aa7c8ae","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"308eea4dd6ab912c43a8454f5aa7c8ae\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10726","fw:ext:cf:fd:967702e8aa6c359fb73a5ae7294f4a12","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"967702e8aa6c359fb73a5ae7294f4a12\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10728","fw:ext:cf:fd:e4a514d4d4037de9d4ce696d2e7de69e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e4a514d4d4037de9d4ce696d2e7de69e\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10745","fw:ext:cf:fd:967de094e85b52bd39452785e8cbf7e8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"967de094e85b52bd39452785e8cbf7e8\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10747","fw:ext:cf:fd:b720c83ef8e3d6bc61cc2d3e655c1cc7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b720c83ef8e3d6bc61cc2d3e655c1cc7\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10756","fw:ext:cf:fd:2d8fc01cd1e4123fa630e2b144a99b3a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2d8fc01cd1e4123fa630e2b144a99b3a\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10758","fw:ext:cf:fd:aa5ea77adc32eccde5736e2d49bf24c9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"aa5ea77adc32eccde5736e2d49bf24c9\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("10760","fw:ext:cf:fd:3dc230fc2e408c5b61255d7ee9a2fbe9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3dc230fc2e408c5b61255d7ee9a2fbe9\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11258","fw:ext:cf:fd:82f04d902acc42cae1e2cad2bc39e3c9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"82f04d902acc42cae1e2cad2bc39e3c9\";s:4:\"form\";a:1:{s:4:\"json\";s:110:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}}]\";}s:16:\"background_color\";s:2:\"ls\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:0:\"\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("11259","fw:ext:cf:fd:c9e62361d647ef14f7856d6b3d324977","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c9e62361d647ef14f7856d6b3d324977\";s:4:\"form\";a:1:{s:4:\"json\";s:110:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}}]\";}s:16:\"background_color\";s:2:\"ls\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:0:\"\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("11260","fw:ext:cf:fd:f436db9846ac5dcbb08a3dd3daa1ce45","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f436db9846ac5dcbb08a3dd3daa1ce45\";s:4:\"form\";a:1:{s:4:\"json\";s:110:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}}]\";}s:16:\"background_color\";s:2:\"ls\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:0:\"\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("11262","fw:ext:cf:fd:a0435098f4e4d5f7294f641de5cd3502","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a0435098f4e4d5f7294f641de5cd3502\";s:4:\"form\";a:1:{s:4:\"json\";s:385:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11264","fw:ext:cf:fd:5ff4673e96990928f41ad23f7122117b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5ff4673e96990928f41ad23f7122117b\";s:4:\"form\";a:1:{s:4:\"json\";s:1487:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":true,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:10:\"text-right\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:6:\"حذف\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11265","fw:ext:cf:fd:586b3177262b6bd6339eb4f0e3f05812","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"586b3177262b6bd6339eb4f0e3f05812\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11266","fw:ext:cf:fd:cde194f93143fb20f2ef6e98ebef1ca2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cde194f93143fb20f2ef6e98ebef1ca2\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11268","fw:ext:cf:fd:601d04d5c5263d7a0bef0ef8d1dcd55f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"601d04d5c5263d7a0bef0ef8d1dcd55f\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11270","fw:ext:cf:fd:23047fde90e21b8f636f0ace2cbbd128","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"23047fde90e21b8f636f0ace2cbbd128\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11272","fw:ext:cf:fd:ad6a4c559935125b468370c6e12be0ad","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ad6a4c559935125b468370c6e12be0ad\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11274","fw:ext:cf:fd:acbe3aecdccb57742f3b04666f5bb579","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"acbe3aecdccb57742f3b04666f5bb579\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11276","fw:ext:cf:fd:7c14346629991c0d76693f806e7bd7b3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7c14346629991c0d76693f806e7bd7b3\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11278","fw:ext:cf:fd:f0f32b58e3867eb32ab50af0025d77ad","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f0f32b58e3867eb32ab50af0025d77ad\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11280","fw:ext:cf:fd:bc16d026530c58878ae69ac3dd54a00b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bc16d026530c58878ae69ac3dd54a00b\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11282","fw:ext:cf:fd:b4942a3ed317a13fc8fe7b018f395351","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b4942a3ed317a13fc8fe7b018f395351\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11284","fw:ext:cf:fd:837fc8cb865e7c10bf0f01c793a220c4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"837fc8cb865e7c10bf0f01c793a220c4\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11313","widget_shortcode-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("11542","fw:ext:cf:fd:8be325b5fc143ed7f37866fe52d3355a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8be325b5fc143ed7f37866fe52d3355a\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11569","fw:ext:cf:fd:de6f015bf2f2d03856310629285ae9a1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"de6f015bf2f2d03856310629285ae9a1\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11571","fw:ext:cf:fd:5dddecb72d451b12281577dc03f96611","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5dddecb72d451b12281577dc03f96611\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11573","fw:ext:cf:fd:621746aa52670ae198d7c055e13f0de5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"621746aa52670ae198d7c055e13f0de5\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11575","fw:ext:cf:fd:165d9f070e5a5ea8e382be3626142d65","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"165d9f070e5a5ea8e382be3626142d65\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11577","fw:ext:cf:fd:69a1c4090f6a9ccf14bb2ff0f7ef7a88","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"69a1c4090f6a9ccf14bb2ff0f7ef7a88\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11579","fw:ext:cf:fd:80851709b8a4e42c5b0e9e9067cedecc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"80851709b8a4e42c5b0e9e9067cedecc\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11581","fw:ext:cf:fd:0b5afc64f40e8d1de01e5a776d9f1be7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0b5afc64f40e8d1de01e5a776d9f1be7\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11583","fw:ext:cf:fd:234d0323cf6d5f6d77259511a05368c9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"234d0323cf6d5f6d77259511a05368c9\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11585","fw:ext:cf:fd:7966523ff5839ffa2023ca120c0a1fcb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7966523ff5839ffa2023ca120c0a1fcb\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11587","fw:ext:cf:fd:33fe84bd501356dcba42fc0223697651","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"33fe84bd501356dcba42fc0223697651\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11589","fw:ext:cf:fd:09e6d157f0e749525fb823278c7da841","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"09e6d157f0e749525fb823278c7da841\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11591","fw:ext:cf:fd:0cdf11dba5c452982abd0f539205ea0e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0cdf11dba5c452982abd0f539205ea0e\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11593","fw:ext:cf:fd:fa4c1bb5d140d95d5c291bcfbc9a8ac9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fa4c1bb5d140d95d5c291bcfbc9a8ac9\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11595","fw:ext:cf:fd:61e657b9f895f1a07f5bf4e466e61e86","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"61e657b9f895f1a07f5bf4e466e61e86\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11597","fw:ext:cf:fd:2f1476ef989b218db58c04590ae48c31","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2f1476ef989b218db58c04590ae48c31\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11599","fw:ext:cf:fd:b582b7bc4940da7da5d7473099f7faf8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b582b7bc4940da7da5d7473099f7faf8\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11601","fw:ext:cf:fd:96a38ac1fac11105527ec996b8a31c59","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"96a38ac1fac11105527ec996b8a31c59\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11603","fw:ext:cf:fd:94f04c120e462d2dc2965a4247884e21","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"94f04c120e462d2dc2965a4247884e21\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11605","fw:ext:cf:fd:0752c5d6428feff1df9aa8209fbdd760","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0752c5d6428feff1df9aa8209fbdd760\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11607","fw:ext:cf:fd:f4de0338c5e8cb9469b87fe0055ece9f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f4de0338c5e8cb9469b87fe0055ece9f\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11609","fw:ext:cf:fd:16156c96a120894085469a9720e9448c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"16156c96a120894085469a9720e9448c\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11611","fw:ext:cf:fd:ce320418853f7a3286e9f131a91dae4d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ce320418853f7a3286e9f131a91dae4d\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11613","fw:ext:cf:fd:8916bfb675e332585d553998d39e0a4d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8916bfb675e332585d553998d39e0a4d\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11615","fw:ext:cf:fd:4ecdba8866d4fb60ed6170d7742ee8ef","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4ecdba8866d4fb60ed6170d7742ee8ef\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11617","fw:ext:cf:fd:95d7fa362951f9aac38aad9771fbcdb9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"95d7fa362951f9aac38aad9771fbcdb9\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11619","fw:ext:cf:fd:b81145c00f7e1eeb1487b08b53c50a98","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b81145c00f7e1eeb1487b08b53c50a98\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11621","fw:ext:cf:fd:2a28612b66056417cd88ff2d54869218","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2a28612b66056417cd88ff2d54869218\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11623","fw:ext:cf:fd:1e04d118f732c44bf902f76d66ffc582","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1e04d118f732c44bf902f76d66ffc582\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11625","fw:ext:cf:fd:8ed579b948e943ba9d19649baae320af","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8ed579b948e943ba9d19649baae320af\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11627","fw:ext:cf:fd:bbe4c012840e2830734080ec22d63780","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bbe4c012840e2830734080ec22d63780\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11629","fw:ext:cf:fd:2af0a63c0f9846948024c571ad7e39b5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2af0a63c0f9846948024c571ad7e39b5\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11632","fw:ext:cf:fd:2c49ba3cf9e1a738c9ed60cc90cb12a1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2c49ba3cf9e1a738c9ed60cc90cb12a1\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11648","fw:ext:cf:fd:395b83701c9961eee8abfead0210d209","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"395b83701c9961eee8abfead0210d209\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11657","fw:ext:cf:fd:b943ac887622a723b80097c4b3a23765","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b943ac887622a723b80097c4b3a23765\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11659","fw:ext:cf:fd:131c3087e79e5c3da9979c07b8da7c37","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"131c3087e79e5c3da9979c07b8da7c37\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11661","fw:ext:cf:fd:66fe0a2f340ccf1d1fd0196246274387","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"66fe0a2f340ccf1d1fd0196246274387\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11663","fw:ext:cf:fd:3521c0d8bbfc6bcdc05a025a02c9d0d3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3521c0d8bbfc6bcdc05a025a02c9d0d3\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11665","fw:ext:cf:fd:ee47691d58f0f3c04e02eb82a711d3f9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ee47691d58f0f3c04e02eb82a711d3f9\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11667","fw:ext:cf:fd:8e49987077f8837406bff84648300435","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8e49987077f8837406bff84648300435\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11669","fw:ext:cf:fd:1acfdf6f5b9e862058d5533a89aa7ed8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1acfdf6f5b9e862058d5533a89aa7ed8\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11671","fw:ext:cf:fd:ecf9d6b33045af23d07c56306605c552","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ecf9d6b33045af23d07c56306605c552\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11673","fw:ext:cf:fd:eab108675432c9960b3e3ab06dd942e2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"eab108675432c9960b3e3ab06dd942e2\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11676","fw:ext:cf:fd:d2feb6c43e4549d3482a59d688b08081","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d2feb6c43e4549d3482a59d688b08081\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11678","fw:ext:cf:fd:a2fa58130484c2b278b3a06a3c12996f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a2fa58130484c2b278b3a06a3c12996f\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11681","fw:ext:cf:fd:c9966c3cbc179e01b6466a84f498f673","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c9966c3cbc179e01b6466a84f498f673\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11683","fw:ext:cf:fd:076aa99d2a5eccab7f472a6291921cf4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"076aa99d2a5eccab7f472a6291921cf4\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11685","fw:ext:cf:fd:4ecfdba4e208100f5ac7fc8ceccb3e39","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4ecfdba4e208100f5ac7fc8ceccb3e39\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11688","fw:ext:cf:fd:e10586fa0379e399468c7254fe1ef3d5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e10586fa0379e399468c7254fe1ef3d5\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11691","fw:ext:cf:fd:e64d181c8a8830038895eea3f742beef","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e64d181c8a8830038895eea3f742beef\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11694","fw:ext:cf:fd:bfe5c9e4bcd8e3cdee9a50da2341052b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bfe5c9e4bcd8e3cdee9a50da2341052b\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11696","fw:ext:cf:fd:fec541ebd7d8293a4e7554a10ec78781","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fec541ebd7d8293a4e7554a10ec78781\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11698","fw:ext:cf:fd:ca15a1aa0317cedff7e14f25222f0096","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ca15a1aa0317cedff7e14f25222f0096\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11700","fw:ext:cf:fd:da8d08276c4eadfad391a98360d29624","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"da8d08276c4eadfad391a98360d29624\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11702","fw:ext:cf:fd:f8551483e53dabcbb4a008b6e58f6a73","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f8551483e53dabcbb4a008b6e58f6a73\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11704","fw:ext:cf:fd:0827386ac39c81cc334e90879c8ed160","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0827386ac39c81cc334e90879c8ed160\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:16:\"Make appointment\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:14:\"special_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11706","fw:ext:cf:fd:39c04b496423047af81c726b63ffe1cc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"39c04b496423047af81c726b63ffe1cc\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:0:\"\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11708","fw:ext:cf:fd:e98a6e3baf43b954869dd0253c0b5c8c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e98a6e3baf43b954869dd0253c0b5c8c\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11710","fw:ext:cf:fd:5c381a27b78efb09c7b2fc3c8da2fca0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5c381a27b78efb09c7b2fc3c8da2fca0\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11713","fw:ext:cf:fd:f89e349dcf82bb8b019848d401a53165","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f89e349dcf82bb8b019848d401a53165\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11715","fw:ext:cf:fd:74067183a91e9c24a16ae3e537029dc1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"74067183a91e9c24a16ae3e537029dc1\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11717","fw:ext:cf:fd:903a485dfc4f88bb7d807a5ee1c8a0c9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"903a485dfc4f88bb7d807a5ee1c8a0c9\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11719","fw:ext:cf:fd:7998e5dfa01f39712372bb28801f90b8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7998e5dfa01f39712372bb28801f90b8\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11721","fw:ext:cf:fd:5eed6d7639f40c06c849c9e244688de6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5eed6d7639f40c06c849c9e244688de6\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11723","fw:ext:cf:fd:79f2be075a6f337dd620acaa2475c718","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"79f2be075a6f337dd620acaa2475c718\";s:4:\"form\";a:1:{s:4:\"json\";s:1314:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_68b2b1a\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_5f699fd\",\"width\":\"1_6\",\"_items\":[]},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11726","fw:ext:cf:fd:a71df1f11321d721b66ffb6f821cd9ec","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a71df1f11321d721b66ffb6f821cd9ec\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11728","fw:ext:cf:fd:2ea5a3194fbc1aa61d3f33c8350bee33","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2ea5a3194fbc1aa61d3f33c8350bee33\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11756","fw:ext:cf:fd:82c51246cf19fde8784851c20ca591ce","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"82c51246cf19fde8784851c20ca591ce\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11763","fw:ext:cf:fd:b68f517714e7a2f04bfd7195aef452ec","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b68f517714e7a2f04bfd7195aef452ec\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11766","fw:ext:cf:fd:91c23ed8a60aa7fe3494b38957724ac1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"91c23ed8a60aa7fe3494b38957724ac1\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11768","fw:ext:cf:fd:6a6bee30d1c22ca1d0b78d972fa860a6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6a6bee30d1c22ca1d0b78d972fa860a6\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11771","fw:ext:cf:fd:ab2f51d5c763533fc0a231222652f308","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ab2f51d5c763533fc0a231222652f308\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11775","fw:ext:cf:fd:5cc005f7f5de47984c9d1bdb3fc7d363","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5cc005f7f5de47984c9d1bdb3fc7d363\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11778","fw:ext:cf:fd:521d79aff7faf9ed6ad3649d9f9461b5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"521d79aff7faf9ed6ad3649d9f9461b5\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11781","fw:ext:cf:fd:2659f02712806893b0d1a9d3d1cd5a9d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2659f02712806893b0d1a9d3d1cd5a9d\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11784","fw:ext:cf:fd:90c4ec898393d74b163ba044d7bb3129","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"90c4ec898393d74b163ba044d7bb3129\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11787","fw:ext:cf:fd:04032d7ceed0f2c91c3a0c02f45e41ee","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"04032d7ceed0f2c91c3a0c02f45e41ee\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11798","fw:ext:cf:fd:964cea609abb498bc77333aab3c4dd2f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"964cea609abb498bc77333aab3c4dd2f\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11801","fw:ext:cf:fd:f241bd90561e914b702725fd3b20f7c9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f241bd90561e914b702725fd3b20f7c9\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11804","fw:ext:cf:fd:7eee162ec0b3e48537edf7feae70f99b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7eee162ec0b3e48537edf7feae70f99b\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11807","fw:ext:cf:fd:cf0d932547688b0a506bfee071e7d56f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cf0d932547688b0a506bfee071e7d56f\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11816","fw:ext:cf:fd:01cc8fd0d4559c3f680addfa5b4250f3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"01cc8fd0d4559c3f680addfa5b4250f3\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11819","fw:ext:cf:fd:42cc82e0c54aeb0771cf39307877de23","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"42cc82e0c54aeb0771cf39307877de23\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11823","fw:ext:cf:fd:e3a06c76b26141f87a0fd48babbb3d87","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e3a06c76b26141f87a0fd48babbb3d87\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11826","fw:ext:cf:fd:9dacdfc5cf209b25cbca607cbd5c9336","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9dacdfc5cf209b25cbca607cbd5c9336\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("11832","fw:ext:cf:fd:7fe44f2c160ee6f5cd102bc8c80c7ce7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7fe44f2c160ee6f5cd102bc8c80c7ce7\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12043","widget_media_gallery","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("12047","fw:ext:cf:fd:f3faf0145029acef15922492a313e98f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f3faf0145029acef15922492a313e98f\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("12421","fw:ext:cf:fd:d1446edd98c83e90979b09920393f3b5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d1446edd98c83e90979b09920393f3b5\";s:4:\"form\";a:1:{s:4:\"json\";s:1402:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("12425","fw:ext:cf:fd:27649f1ef2e2f3ae921917dde38d5454","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"27649f1ef2e2f3ae921917dde38d5454\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12427","fw:ext:cf:fd:0361299414294c53048b8f1270ce661a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0361299414294c53048b8f1270ce661a\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12601","new_admin_email","mafeshmashakl@gmail.com","yes");
INSERT INTO `wp_options` VALUES("12923","fw:ext:cf:fd:cba500733ac73a2860d0decc37a34522","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cba500733ac73a2860d0decc37a34522\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12927","fw:ext:cf:fd:f8a8b39af4903d3cbe110cd06d670379","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f8a8b39af4903d3cbe110cd06d670379\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12928","fw:ext:cf:fd:9020b92a157c8a82f2af3fd84a091cd7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9020b92a157c8a82f2af3fd84a091cd7\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12932","fw:ext:cf:fd:713716fb00b2db3402ad93172d47bef7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"713716fb00b2db3402ad93172d47bef7\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12936","fw:ext:cf:fd:585b3233e47f4e6b2386ad58fb4e5681","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"585b3233e47f4e6b2386ad58fb4e5681\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12939","fw:ext:cf:fd:56fd84843496f552adb14dd85e594eaf","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"56fd84843496f552adb14dd85e594eaf\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12945","fw:ext:cf:fd:50d96140610ac7adecedf28195bbee7f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"50d96140610ac7adecedf28195bbee7f\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12949","fw:ext:cf:fd:d92b83d465168fe95f11912026d5398c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d92b83d465168fe95f11912026d5398c\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12952","fw:ext:cf:fd:bf24591fe98c4c6f16d7d40f19360905","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bf24591fe98c4c6f16d7d40f19360905\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12953","fw:ext:cf:fd:5e8386f756d6ab509d4ca8ec635d6513","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5e8386f756d6ab509d4ca8ec635d6513\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12957","fw:ext:cf:fd:6915605d56316ef045cf0a96fc384b85","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6915605d56316ef045cf0a96fc384b85\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12960","fw:ext:cf:fd:4d7d4bf70be3098914dd82d697f9906c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4d7d4bf70be3098914dd82d697f9906c\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12963","fw:ext:cf:fd:3595ec26ef048d6247c731a284877914","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3595ec26ef048d6247c731a284877914\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12964","fw:ext:cf:fd:a51b394ac55a16c29256b5cddc08f856","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a51b394ac55a16c29256b5cddc08f856\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12968","fw:ext:cf:fd:60590da954e02f7a7784acba2c06ead2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"60590da954e02f7a7784acba2c06ead2\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12971","fw:ext:cf:fd:569beb7836323ee7555554a79a2ceafa","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"569beb7836323ee7555554a79a2ceafa\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12974","fw:ext:cf:fd:ffbc7791662f2c41e5acaa673ed62ceb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ffbc7791662f2c41e5acaa673ed62ceb\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12979","fw:ext:cf:fd:78918b05419c67e400797d2f95f2b9d3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"78918b05419c67e400797d2f95f2b9d3\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12982","fw:ext:cf:fd:241a3760dba355e19edc2240b7ae2aea","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"241a3760dba355e19edc2240b7ae2aea\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12985","fw:ext:cf:fd:40e88ac6858024467a4520cc0ae00ec4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"40e88ac6858024467a4520cc0ae00ec4\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12988","fw:ext:cf:fd:81d5bebd2f4ef489d30669c0b144fc6a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"81d5bebd2f4ef489d30669c0b144fc6a\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12990","fw:ext:cf:fd:96b851ee7a7f6329bf56f0090a739be0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"96b851ee7a7f6329bf56f0090a739be0\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12992","fw:ext:cf:fd:9128978d4ca53a001d19c1427d806a71","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9128978d4ca53a001d19c1427d806a71\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12995","fw:ext:cf:fd:2b2f85b16c924c470caab443b2f6828a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2b2f85b16c924c470caab443b2f6828a\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("12999","fw:ext:cf:fd:b7e53ee3b9d30ab40a939dc166cda195","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b7e53ee3b9d30ab40a939dc166cda195\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13000","fw:ext:cf:fd:a8c9f43e5b6c6d14d3c2529382c30253","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a8c9f43e5b6c6d14d3c2529382c30253\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13004","fw:ext:cf:fd:8d7665482c074cc6fc36fa37605d59e8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8d7665482c074cc6fc36fa37605d59e8\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13007","fw:ext:cf:fd:b3992c9474fb52b839c05325029dacbd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b3992c9474fb52b839c05325029dacbd\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13048","fw:ext:cf:fd:e7c8eeba93fcef151ecf97f184b606d5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e7c8eeba93fcef151ecf97f184b606d5\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13049","fw:ext:cf:fd:a1052f94843cb26d1cf3cb1c475ed641","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a1052f94843cb26d1cf3cb1c475ed641\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13051","fw:ext:cf:fd:c2c7472e29ad02137c6fff6ab3643a98","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c2c7472e29ad02137c6fff6ab3643a98\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13056","fw:ext:cf:fd:f438a1a93fa31d62558dcd041f37cf9d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f438a1a93fa31d62558dcd041f37cf9d\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13057","fw:ext:cf:fd:a59bcf1cb1f693c15e7f4254e0d6ec32","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a59bcf1cb1f693c15e7f4254e0d6ec32\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13061","fw:ext:cf:fd:a4a55cc80d3bbc4d7f0e9304685dbe20","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a4a55cc80d3bbc4d7f0e9304685dbe20\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13064","fw:ext:cf:fd:7bbda246b25570f81950290e16fd96d0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7bbda246b25570f81950290e16fd96d0\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13067","fw:ext:cf:fd:1e8bcb1bf357b68d0dd1bc18ef33f85f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1e8bcb1bf357b68d0dd1bc18ef33f85f\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13070","fw:ext:cf:fd:6f8a566a8f1054cec7f0cae3ee84e649","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6f8a566a8f1054cec7f0cae3ee84e649\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13073","fw:ext:cf:fd:ceba5e4680628735e727d0d83c0f94d0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ceba5e4680628735e727d0d83c0f94d0\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13076","fw:ext:cf:fd:6fdad3160155a5bde9e3a0b9c6922dff","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6fdad3160155a5bde9e3a0b9c6922dff\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13106","fw:ext:cf:fd:8615948176be59c52661745751ace750","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8615948176be59c52661745751ace750\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13110","fw:ext:cf:fd:7e94714e6bb0ab63d10d1a9ad474ad1c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7e94714e6bb0ab63d10d1a9ad474ad1c\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13114","fw:ext:cf:fd:5da18601bc1568843ed56a836c068aa6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5da18601bc1568843ed56a836c068aa6\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13119","fw:ext:cf:fd:2782f51383087ceb234d28110c05e8d2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2782f51383087ceb234d28110c05e8d2\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13122","fw:ext:cf:fd:71991f15a09e6903b879ce1d9c82713c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"71991f15a09e6903b879ce1d9c82713c\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13125","fw:ext:cf:fd:bea460107a7c913eb20863f624a9a586","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bea460107a7c913eb20863f624a9a586\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13129","fw:ext:cf:fd:ae14a39888eca4d9cf632504fe328f8b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ae14a39888eca4d9cf632504fe328f8b\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13130","fw:ext:cf:fd:e7eaf2c441f86c1dd1e6959c5b188a86","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e7eaf2c441f86c1dd1e6959c5b188a86\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13134","fw:ext:cf:fd:fb486ed1adf5acb386b055e41407b6a3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fb486ed1adf5acb386b055e41407b6a3\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13137","fw:ext:cf:fd:5cce5e5ba3b96f057a99b2edc9b02534","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5cce5e5ba3b96f057a99b2edc9b02534\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13140","fw:ext:cf:fd:f1b72b77f90764fc37bd65fbd5793d21","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f1b72b77f90764fc37bd65fbd5793d21\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13143","fw:ext:cf:fd:479767525fe9859dc6e3dc26b7e1294b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"479767525fe9859dc6e3dc26b7e1294b\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13147","fw:ext:cf:fd:567c965342a32a066dbc5bf04024ac8f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"567c965342a32a066dbc5bf04024ac8f\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13150","fw:ext:cf:fd:a063ac9313e56621c003fe0a1db87551","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a063ac9313e56621c003fe0a1db87551\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13153","fw:ext:cf:fd:1aeea471ca089a825469864ae6f54711","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1aeea471ca089a825469864ae6f54711\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13156","fw:ext:cf:fd:3a0a52121bddce5e9484f1de0d49f849","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3a0a52121bddce5e9484f1de0d49f849\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13160","fw:ext:cf:fd:2cb7852bae41e800e5b01ab5ccdeba33","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2cb7852bae41e800e5b01ab5ccdeba33\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13163","fw:ext:cf:fd:1ee1bc6ec7de070411b852a57f67b487","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1ee1bc6ec7de070411b852a57f67b487\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13166","fw:ext:cf:fd:30d39972d5038d251d4bd8bb4696dccd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"30d39972d5038d251d4bd8bb4696dccd\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13169","fw:ext:cf:fd:a3fcf0e9542c6f2189699cdccbe10e45","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a3fcf0e9542c6f2189699cdccbe10e45\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13173","fw:ext:cf:fd:e7129f67854906d9348f6e41d95be832","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e7129f67854906d9348f6e41d95be832\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13176","fw:ext:cf:fd:51651d9db848b0e68a73fc6c55152426","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"51651d9db848b0e68a73fc6c55152426\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13179","fw:ext:cf:fd:c63fe3569637922221a91ce899b86739","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c63fe3569637922221a91ce899b86739\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13182","fw:ext:cf:fd:078a2fa971442450d78b6a91fe5e6d5d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"078a2fa971442450d78b6a91fe5e6d5d\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13185","fw:ext:cf:fd:a7117a3074491f47291c04bcab7b609b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a7117a3074491f47291c04bcab7b609b\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13188","fw:ext:cf:fd:ffb946c5580f41becf2f04dcdba95e0b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ffb946c5580f41becf2f04dcdba95e0b\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13192","fw:ext:cf:fd:f24058fe4a611b34e3941ed5efa75a5a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f24058fe4a611b34e3941ed5efa75a5a\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13195","fw:ext:cf:fd:72f689820d1ca3f27bc7e6a57e0d28c6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"72f689820d1ca3f27bc7e6a57e0d28c6\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"3\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13198","fw:ext:cf:fd:4ca9a8137b5ae77d3e4c8d7400beccb3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4ca9a8137b5ae77d3e4c8d7400beccb3\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"4\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13201","fw:ext:cf:fd:42cc08390382fc8a828adf16bfac1c04","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"42cc08390382fc8a828adf16bfac1c04\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13204","fw:ext:cf:fd:adc14727212d47e8c468cfa9dfb70766","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"adc14727212d47e8c468cfa9dfb70766\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13208","fw:ext:cf:fd:f465f7517b21f19802043ae77508e42d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f465f7517b21f19802043ae77508e42d\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13209","fw:ext:cf:fd:81dab4f3699dcfddd4f084ade44b7674","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"81dab4f3699dcfddd4f084ade44b7674\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13213","fw:ext:cf:fd:6b65fd970a1cf2bd4c4b1e2d9b50bca7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6b65fd970a1cf2bd4c4b1e2d9b50bca7\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13218","fw:ext:cf:fd:e8dcd28fc576de428ddfdcacaea227cf","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e8dcd28fc576de428ddfdcacaea227cf\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13238","fw:ext:cf:fd:7f92e3b885a4aa9bcebb1b7d4ed05f83","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7f92e3b885a4aa9bcebb1b7d4ed05f83\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13240","fw:ext:cf:fd:88937c3c68f1726f741e456f185e8cff","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"88937c3c68f1726f741e456f185e8cff\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13242","fw:ext:cf:fd:617a47425cb794329867fc4f7a1f42d8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"617a47425cb794329867fc4f7a1f42d8\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13243","fw:ext:cf:fd:daa9546a744791aa6172d608fd202743","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"daa9546a744791aa6172d608fd202743\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13247","fw:ext:cf:fd:8ba1c9bf28c8cf3614cc825da617b990","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8ba1c9bf28c8cf3614cc825da617b990\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13388","current_theme_supports_woocommerce","yes","yes");
INSERT INTO `wp_options` VALUES("13394","default_product_cat","72","yes");
INSERT INTO `wp_options` VALUES("13476","woocommerce_thumbnail_image_width","400","yes");
INSERT INTO `wp_options` VALUES("13477","woocommerce_thumbnail_cropping","uncropped","yes");
INSERT INTO `wp_options` VALUES("13478","woocommerce_thumbnail_cropping_custom_width","16","yes");
INSERT INTO `wp_options` VALUES("13479","woocommerce_thumbnail_cropping_custom_height","13","yes");
INSERT INTO `wp_options` VALUES("13480","woocommerce_single_image_width","600","yes");
INSERT INTO `wp_options` VALUES("13557","woocommerce_catalog_columns","3","yes");
INSERT INTO `wp_options` VALUES("13558","woocommerce_catalog_rows","5","yes");
INSERT INTO `wp_options` VALUES("13832","fw:ext:cf:fd:b7d0e4e15f3ce6c078771a4686831a09","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b7d0e4e15f3ce6c078771a4686831a09\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13835","fw:ext:cf:fd:ae4c65d0418ccb68ea4879cb61cedc52","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ae4c65d0418ccb68ea4879cb61cedc52\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13837","fw:ext:cf:fd:7b33c48c3f80f3f6734c01a5bf3d060b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7b33c48c3f80f3f6734c01a5bf3d060b\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13840","fw:ext:cf:fd:36444868206f4ec5941c082505668bfc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"36444868206f4ec5941c082505668bfc\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13842","fw:ext:cf:fd:170544f3ae64953517c4b7ca40bd0992","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"170544f3ae64953517c4b7ca40bd0992\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("13844","fw:ext:cf:fd:425f55acf5ffa868670520f4e34e6151","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"425f55acf5ffa868670520f4e34e6151\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14355","fw-programs-category_children","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("14406","woocommerce_queue_flush_rewrite_rules","no","yes");
INSERT INTO `wp_options` VALUES("14422","fw:ext:cf:fd:fd7d59f513180e3abc71750fdcdeb1a0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fd7d59f513180e3abc71750fdcdeb1a0\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14425","fw:ext:cf:fd:ef18fa2966e74f73551c41ccd550d84d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ef18fa2966e74f73551c41ccd550d84d\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14427","fw:ext:cf:fd:c9110bc498ada42556441cf087b5e29a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c9110bc498ada42556441cf087b5e29a\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14429","fw:ext:cf:fd:e930cbc96dda90bcb7e79f0c2b909ed7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e930cbc96dda90bcb7e79f0c2b909ed7\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14431","fw:ext:cf:fd:1d7850d300815dbfc7d05d1aa1b8a6f4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1d7850d300815dbfc7d05d1aa1b8a6f4\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14433","fw:ext:cf:fd:e5bbcc5aafd6e6893a00bc405ed3c4d0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e5bbcc5aafd6e6893a00bc405ed3c4d0\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14438","fw:ext:cf:fd:a1f57e14f7df8e5f01cbf8b932880e89","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a1f57e14f7df8e5f01cbf8b932880e89\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14441","fw:ext:cf:fd:907a1a16eb7c0e117c572008baedf319","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"907a1a16eb7c0e117c572008baedf319\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14443","fw:ext:cf:fd:d893551deb326f074772d5767133b930","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d893551deb326f074772d5767133b930\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14445","fw:ext:cf:fd:2200341b77a4f5cb79d007dd9bbc16ad","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2200341b77a4f5cb79d007dd9bbc16ad\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14447","fw:ext:cf:fd:ce6faf6d1d84d0bc06c7b4ceb3b321d6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ce6faf6d1d84d0bc06c7b4ceb3b321d6\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14449","fw:ext:cf:fd:d915b0b4c5dec5049b10ab04d191d38d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d915b0b4c5dec5049b10ab04d191d38d\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14451","fw:ext:cf:fd:3d641be3f9f8280e05bc50db887517e5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3d641be3f9f8280e05bc50db887517e5\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14453","fw:ext:cf:fd:91a7f137016e77d95e72fd54b610bef0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"91a7f137016e77d95e72fd54b610bef0\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14455","fw:ext:cf:fd:203545548ef3cf0991bf26f0c61e3bd3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"203545548ef3cf0991bf26f0c61e3bd3\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14458","fw:ext:cf:fd:6398b103cb8e1811665ff85dd8e8a363","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6398b103cb8e1811665ff85dd8e8a363\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14460","fw:ext:cf:fd:7b730683bd3053a23b7986f437f1d44a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7b730683bd3053a23b7986f437f1d44a\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14462","fw:ext:cf:fd:62e1f9ffda188e3726f8808dfe6cac8f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"62e1f9ffda188e3726f8808dfe6cac8f\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14464","fw:ext:cf:fd:66a16efa760df8e7b6fd56873e266c00","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"66a16efa760df8e7b6fd56873e266c00\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14466","fw:ext:cf:fd:a5e288ec0c3879a7e0b967f3fa4b16da","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a5e288ec0c3879a7e0b967f3fa4b16da\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14468","fw:ext:cf:fd:1689535017037298c769320d3b4d1cd0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1689535017037298c769320d3b4d1cd0\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14470","fw:ext:cf:fd:8a9fdb3968a65683301e2c84acd78d0e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8a9fdb3968a65683301e2c84acd78d0e\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14480","fw:ext:cf:fd:13938385445a4908fbb3c2fedbc0e6f8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"13938385445a4908fbb3c2fedbc0e6f8\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14482","fw:ext:cf:fd:ddcb72761eb6bcce2146526a1f7dc5a6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ddcb72761eb6bcce2146526a1f7dc5a6\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14485","fw:ext:cf:fd:b732ab2e2dfd074384310061a8836977","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b732ab2e2dfd074384310061a8836977\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14488","fw:ext:cf:fd:a7e2d71b389423fc96350f2d51e13d40","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a7e2d71b389423fc96350f2d51e13d40\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14491","fw:ext:cf:fd:6b564e2839b042917dffa9a5d071c7cb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6b564e2839b042917dffa9a5d071c7cb\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14511","fw:ext:cf:fd:d87f6e350e22d9f21e26a1599ee5232c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d87f6e350e22d9f21e26a1599ee5232c\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14512","fw:ext:cf:fd:1e1c648863b838a0f8212486ff0f2249","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1e1c648863b838a0f8212486ff0f2249\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14513","fw:ext:cf:fd:caf8811a39291802d4d85c6b9c26ce84","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"caf8811a39291802d4d85c6b9c26ce84\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14516","fw:ext:cf:fd:b825554ee88a7df278d0d3148e89f6af","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b825554ee88a7df278d0d3148e89f6af\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14518","fw:ext:cf:fd:5fe6d1ec0efea5ca2620cfdd1ca7c23e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5fe6d1ec0efea5ca2620cfdd1ca7c23e\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14519","fw:ext:cf:fd:b157b60634a7c176863d68c0937e3e6e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b157b60634a7c176863d68c0937e3e6e\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14520","fw:ext:cf:fd:ac7544589ae61863dfc4ad203224b8fd","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ac7544589ae61863dfc4ad203224b8fd\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14521","fw:ext:cf:fd:83ac0ad23c231eba8e231b97191281df","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"83ac0ad23c231eba8e231b97191281df\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14523","fw:ext:cf:fd:57af44139dabb85e8c2b36659e5dff7f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"57af44139dabb85e8c2b36659e5dff7f\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14526","fw:ext:cf:fd:efb6301e5dcf5556b928b04ddcd3c8cc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"efb6301e5dcf5556b928b04ddcd3c8cc\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14527","fw:ext:cf:fd:9ad20cba82ab3e6021781d2fe964b23d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9ad20cba82ab3e6021781d2fe964b23d\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14529","fw:ext:cf:fd:d74212cc655fc58f97a32c63af67c21d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d74212cc655fc58f97a32c63af67c21d\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14533","fw:ext:cf:fd:9a430d09a4d6a85904633cc4fa69a60b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9a430d09a4d6a85904633cc4fa69a60b\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14535","fw:ext:cf:fd:7f7f976b07b30ed9ec406e5cd1f39195","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7f7f976b07b30ed9ec406e5cd1f39195\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14536","fw:ext:cf:fd:2d6f662fe20d4a4f2666cd85079a5439","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2d6f662fe20d4a4f2666cd85079a5439\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14538","fw:ext:cf:fd:896e4bb1bcb110ec20b1b3eee3d90aba","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"896e4bb1bcb110ec20b1b3eee3d90aba\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14540","fw:ext:cf:fd:d16882fe8eb911fa46b1ef7cdd5b7c74","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d16882fe8eb911fa46b1ef7cdd5b7c74\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14542","fw:ext:cf:fd:e5b99d48bed5e0663bb263fa7efb167f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e5b99d48bed5e0663bb263fa7efb167f\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14544","fw:ext:cf:fd:19c40712c0206682920348087c11f8f2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"19c40712c0206682920348087c11f8f2\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14545","fw:ext:cf:fd:b56ff086bd616d053b52121c9ed1d7ea","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b56ff086bd616d053b52121c9ed1d7ea\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14547","fw:ext:cf:fd:22cf7b6d38228340527af4cd46a381e7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"22cf7b6d38228340527af4cd46a381e7\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14549","fw:ext:cf:fd:5c2f5a7552a774945cb5318dce633196","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5c2f5a7552a774945cb5318dce633196\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14552","fw:ext:cf:fd:37324efd0181e6f2a434efbb3bfc4fbf","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"37324efd0181e6f2a434efbb3bfc4fbf\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14553","fw:ext:cf:fd:07541c34aeaad046139e617e253c03c3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"07541c34aeaad046139e617e253c03c3\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14556","fw:ext:cf:fd:40ed68e400a5e3ccd36f03ba8971de49","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"40ed68e400a5e3ccd36f03ba8971de49\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14558","fw:ext:cf:fd:40d94c63b32ae276edf3f6bd853d92aa","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"40d94c63b32ae276edf3f6bd853d92aa\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14560","fw:ext:cf:fd:69a5523684fccc2cfd56db85f682dc94","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"69a5523684fccc2cfd56db85f682dc94\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14561","fw:ext:cf:fd:a8d81f1a3dd8ae8242463dc645fe5fb7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a8d81f1a3dd8ae8242463dc645fe5fb7\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14563","fw:ext:cf:fd:2dccb2fde644c0aa9b9a4daf1c163054","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2dccb2fde644c0aa9b9a4daf1c163054\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14565","fw:ext:cf:fd:c0aed2fc60e845e912d36158a3ba1dab","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c0aed2fc60e845e912d36158a3ba1dab\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14567","fw:ext:cf:fd:63331d522834aa3ba8d000cf7078e614","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"63331d522834aa3ba8d000cf7078e614\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14568","fw:ext:cf:fd:8e5045258071c7809fff644728b92c03","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8e5045258071c7809fff644728b92c03\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14570","fw:ext:cf:fd:23efe140950b9ec450710bfa4f1c9de9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"23efe140950b9ec450710bfa4f1c9de9\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14572","fw:ext:cf:fd:2c15554da932161c801648ff22e51e74","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2c15554da932161c801648ff22e51e74\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14574","fw:ext:cf:fd:9279b65cf654f95a02d7a7a9ae697e82","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9279b65cf654f95a02d7a7a9ae697e82\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14577","fw:ext:cf:fd:038ede1ec29934be6e4d7c4bf6ddbca5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"038ede1ec29934be6e4d7c4bf6ddbca5\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14579","fw:ext:cf:fd:43362d29fc8bc4b620d0edab7682cc4a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"43362d29fc8bc4b620d0edab7682cc4a\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color2\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14581","fw:ext:cf:fd:a2c1175c3649ebe96f856968df127592","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a2c1175c3649ebe96f856968df127592\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14583","fw:ext:cf:fd:8deee0b29c9b143fa59eb5fce65024f7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8deee0b29c9b143fa59eb5fce65024f7\";s:4:\"form\";a:1:{s:4:\"json\";s:1398:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_4\",\"options\":{\"label\":\"Full Name*\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_e525e5f\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Email*\",\"required\":true,\"placeholder\":\"Your Email*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_4\",\"options\":{\"label\":\"Your Phone*\",\"required\":true,\"placeholder\":\"Your Phone*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_bbc2698\",\"width\":\"1_4\",\"options\":{\"label\":\"Topic\",\"required\":true,\"placeholder\":\"Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your question*\",\"required\":true,\"placeholder\":\"Your question*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14586","fw:ext:cf:fd:1e16a836e1b0daaf214e9a1fe69be08b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1e16a836e1b0daaf214e9a1fe69be08b\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14587","fw:ext:cf:fd:8e46ead69ce52311fe486fca5bd4596b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8e46ead69ce52311fe486fca5bd4596b\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14589","fw:ext:cf:fd:13e65d2da59a48bc0d928310b2116d1d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"13e65d2da59a48bc0d928310b2116d1d\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14591","fw:ext:cf:fd:0ce5a7aabbfbd38f01e7f746ddfbfa7f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0ce5a7aabbfbd38f01e7f746ddfbfa7f\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14594","fw:ext:cf:fd:6162de1a86c93482cdbd632337d2ad0a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6162de1a86c93482cdbd632337d2ad0a\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14596","fw:ext:cf:fd:ca032d787e0eb565daa116a739a8513d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ca032d787e0eb565daa116a739a8513d\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14598","fw:ext:cf:fd:0638201b007ad6d33e4cb5ad2c2f62fe","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0638201b007ad6d33e4cb5ad2c2f62fe\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14630","fw:ext:cf:fd:7be63a3aca907e046901af4a6b3c0ea6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7be63a3aca907e046901af4a6b3c0ea6\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14632","fw:ext:cf:fd:013262c361c42760945f76ec1e704132","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"013262c361c42760945f76ec1e704132\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14635","fw:ext:cf:fd:eee049bfc7a6a0fa43e25eb25c318615","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"eee049bfc7a6a0fa43e25eb25c318615\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14638","fw:ext:cf:fd:42ffe9ae3d4aa79bc6e60ac3edbec3bb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"42ffe9ae3d4aa79bc6e60ac3edbec3bb\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14639","fw:ext:cf:fd:f5996d8612955afb4bf82473887432d4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f5996d8612955afb4bf82473887432d4\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14645","fw:ext:cf:fd:c88d5b8d3803d0f77c0fc1723fbd2fb4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c88d5b8d3803d0f77c0fc1723fbd2fb4\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14650","fw:ext:cf:fd:d16f781ade4a0e1c40883dfaa88c80ec","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d16f781ade4a0e1c40883dfaa88c80ec\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14653","fw:ext:cf:fd:53e73af3f2a3f4d64507cc22795b7ead","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"53e73af3f2a3f4d64507cc22795b7ead\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14656","fw:ext:cf:fd:31b39021aa3c27fb46fd16c83755ccb2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"31b39021aa3c27fb46fd16c83755ccb2\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14658","fw:ext:cf:fd:44ec0328e23304d533361aec8e6ada1b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"44ec0328e23304d533361aec8e6ada1b\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14662","fw:ext:cf:fd:91e6edc8cec23171112aee6e8c2824e6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"91e6edc8cec23171112aee6e8c2824e6\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14663","fw:ext:cf:fd:58b934367c6b4ecd932eea391c926ed9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"58b934367c6b4ecd932eea391c926ed9\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14667","fw:ext:cf:fd:0ea5228071f45e3c9238383191ecc821","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0ea5228071f45e3c9238383191ecc821\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14670","fw:ext:cf:fd:58780c7dec611f612b81f2482f7473d9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"58780c7dec611f612b81f2482f7473d9\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14673","fw:ext:cf:fd:d22b5dfefa8e653742192879a0e8e2da","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d22b5dfefa8e653742192879a0e8e2da\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14674","fw:ext:cf:fd:3b8bdea720bf2d598dd47454c9623db5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3b8bdea720bf2d598dd47454c9623db5\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14678","fw:ext:cf:fd:aec9f22398b943d02e1c8be887fe7456","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"aec9f22398b943d02e1c8be887fe7456\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("14794","woocommerce_maybe_regenerate_images_hash","057fa8202898c48157b34da5abdc9df5","yes");
INSERT INTO `wp_options` VALUES("15119","fw:ext:cf:fd:df0fb62a3e9eff8787f3f095da653849","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"df0fb62a3e9eff8787f3f095da653849\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("15123","fw:ext:cf:fd:b724066a1f105afa94f4d3bc04b22a31","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b724066a1f105afa94f4d3bc04b22a31\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("15126","fw:ext:cf:fd:62a326a9b358d40d9e39c4bfdf912967","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"62a326a9b358d40d9e39c4bfdf912967\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("15860","envato_market_installed_version","2.0.0","yes");
INSERT INTO `wp_options` VALUES("15969","fw:ext:cf:fd:3e75ef00f9b0cbde674ea305be45a604","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3e75ef00f9b0cbde674ea305be45a604\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("15971","fw:ext:cf:fd:ab07c539bc0919047747a32ed4ceb06c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ab07c539bc0919047747a32ed4ceb06c\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("15973","fw:ext:cf:fd:f1c998fc42bd5cee3fb00741f8953593","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f1c998fc42bd5cee3fb00741f8953593\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("15975","fw:ext:cf:fd:1c9300568677cd3dbe52d5587fa4e75e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1c9300568677cd3dbe52d5587fa4e75e\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("15978","fw:ext:cf:fd:d4b519680e0349d28cd084c030840fa1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d4b519680e0349d28cd084c030840fa1\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("15980","fw:ext:cf:fd:caa1c66540cc31d87835c59018bd709d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"caa1c66540cc31d87835c59018bd709d\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("15983","fw:ext:cf:fd:ba75e752625b039e352a997df2fc22f9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ba75e752625b039e352a997df2fc22f9\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("15984","fw:ext:cf:fd:722daec9bd7f92bda8f16189c2c5028d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"722daec9bd7f92bda8f16189c2c5028d\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("15986","fw:ext:cf:fd:1254d68d6497cb1abc25d6745145a365","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1254d68d6497cb1abc25d6745145a365\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("15988","fw:ext:cf:fd:90536dbd03eef05322030a93a08cd46a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"90536dbd03eef05322030a93a08cd46a\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("15990","fw:ext:cf:fd:0b08890d95c3ad1624366a4b9a72b552","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0b08890d95c3ad1624366a4b9a72b552\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16001","fw:ext:cf:fd:7207583f616b6601bad38f287485f8a8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7207583f616b6601bad38f287485f8a8\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16002","fw:ext:cf:fd:8c1f8f41dcb9dcd716a36be402d02007","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8c1f8f41dcb9dcd716a36be402d02007\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16004","fw:ext:cf:fd:ae10001bc52a500d42aa42d682dd2494","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ae10001bc52a500d42aa42d682dd2494\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16005","fw:ext:cf:fd:1278732cb62ae586dc453539f03e5c29","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1278732cb62ae586dc453539f03e5c29\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16006","fw:ext:cf:fd:876a213a98beaad2ba21bcbec709149d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"876a213a98beaad2ba21bcbec709149d\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16008","fw:ext:cf:fd:192f6892a6738491905914de113b7686","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"192f6892a6738491905914de113b7686\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:8:\"Send now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16010","fw:ext:cf:fd:8505b5df8f68fe89ac0e9df11b68ffd1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8505b5df8f68fe89ac0e9df11b68ffd1\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16012","fw:ext:cf:fd:97e7328b5c7a702f4b23f35c8c8e5534","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"97e7328b5c7a702f4b23f35c8c8e5534\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16015","fw:ext:cf:fd:411d0bf9f7308238e7a907f28af36f31","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"411d0bf9f7308238e7a907f28af36f31\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16017","fw:ext:cf:fd:0fbf52131a7f315957328a49c0bb1cac","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0fbf52131a7f315957328a49c0bb1cac\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16019","fw:ext:cf:fd:11c025ad392fe8cefe96a9aae368b553","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"11c025ad392fe8cefe96a9aae368b553\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16021","fw:ext:cf:fd:7ad280c38bb2b7e7c8f0042f2e7dd7b5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7ad280c38bb2b7e7c8f0042f2e7dd7b5\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16023","fw:ext:cf:fd:586b46dc73cdc006398a566d0af529b7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"586b46dc73cdc006398a566d0af529b7\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16025","fw:ext:cf:fd:07800182c666b8bb90c55b7515f59652","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"07800182c666b8bb90c55b7515f59652\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16027","fw:ext:cf:fd:117809571f7df5118e63e2ea7ffcf576","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"117809571f7df5118e63e2ea7ffcf576\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16029","fw:ext:cf:fd:05e79bcf419b41f5b71d7d9302fd73de","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"05e79bcf419b41f5b71d7d9302fd73de\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16031","fw:ext:cf:fd:6d53ddfa7d64edfb7052f4fa2f9f03fc","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6d53ddfa7d64edfb7052f4fa2f9f03fc\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16033","fw:ext:cf:fd:dd7004c5baeaed36b249eeadb816605c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"dd7004c5baeaed36b249eeadb816605c\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16035","fw:ext:cf:fd:3f6b42643ff903d9c7ea9b5158eaaa4c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3f6b42643ff903d9c7ea9b5158eaaa4c\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16037","fw:ext:cf:fd:c70d3cc5959fefcf116862ac4fc15068","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c70d3cc5959fefcf116862ac4fc15068\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16039","fw:ext:cf:fd:0b72786c9481bf6f8d446a82e3659b3d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0b72786c9481bf6f8d446a82e3659b3d\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16041","fw:ext:cf:fd:79e21eddf798e5799e050484b82fb597","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"79e21eddf798e5799e050484b82fb597\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16043","fw:ext:cf:fd:7ebbd8721dc4be0e85f382ccc72cc32f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7ebbd8721dc4be0e85f382ccc72cc32f\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16045","fw:ext:cf:fd:0dc10a4d2da2950992509b5e1f1d30f1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0dc10a4d2da2950992509b5e1f1d30f1\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16047","fw:ext:cf:fd:90163a6688155b0575cd553910cf202c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"90163a6688155b0575cd553910cf202c\";s:4:\"form\";a:1:{s:4:\"json\";s:1406:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Subject\",\"required\":true,\"placeholder\":\"Subject\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address*\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message*\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16050","fw:ext:cf:fd:cabdf0328983a504943e5465659891ac","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cabdf0328983a504943e5465659891ac\";s:4:\"form\";a:1:{s:4:\"json\";s:1408:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16052","fw:ext:cf:fd:1f02361a29690b3d7879013896ff0738","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1f02361a29690b3d7879013896ff0738\";s:4:\"form\";a:1:{s:4:\"json\";s:1408:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16054","fw:ext:cf:fd:d63f5635c05e96fd47ad05cc9f007a22","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d63f5635c05e96fd47ad05cc9f007a22\";s:4:\"form\";a:1:{s:4:\"json\";s:1408:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16056","fw:ext:cf:fd:6623c34ddf92a09ac44dab341e9460bf","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6623c34ddf92a09ac44dab341e9460bf\";s:4:\"form\";a:1:{s:4:\"json\";s:1408:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16244","SnazzyMapDefaultStyle","a:12:{s:2:\"id\";i:151;s:4:\"name\";s:23:\"Ultra Light with Labels\";s:11:\"description\";s:10:\"Light Rust\";s:3:\"url\";s:56:\"https://snazzymaps.com/style/151/ultra-light-with-labels\";s:8:\"imageUrl\";s:93:\"https://snazzy-maps-cdn.azureedge.net/assets/151-ultra-light-with-labels.png?v=20170626083737\";s:4:\"json\";s:1456:\"[{\"featureType\":\"water\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#e9e9e9\"},{\"lightness\":17}]},{\"featureType\":\"landscape\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#f5f5f5\"},{\"lightness\":20}]},{\"featureType\":\"road.highway\",\"elementType\":\"geometry.fill\",\"stylers\":[{\"color\":\"#ffffff\"},{\"lightness\":17}]},{\"featureType\":\"road.highway\",\"elementType\":\"geometry.stroke\",\"stylers\":[{\"color\":\"#ffffff\"},{\"lightness\":29},{\"weight\":0.2}]},{\"featureType\":\"road.arterial\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#ffffff\"},{\"lightness\":18}]},{\"featureType\":\"road.local\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#ffffff\"},{\"lightness\":16}]},{\"featureType\":\"poi\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#f5f5f5\"},{\"lightness\":21}]},{\"featureType\":\"poi.park\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#dedede\"},{\"lightness\":21}]},{\"elementType\":\"labels.text.stroke\",\"stylers\":[{\"visibility\":\"on\"},{\"color\":\"#ffffff\"},{\"lightness\":16}]},{\"elementType\":\"labels.text.fill\",\"stylers\":[{\"saturation\":36},{\"color\":\"#333333\"},{\"lightness\":40}]},{\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit\",\"elementType\":\"geometry\",\"stylers\":[{\"color\":\"#f2f2f2\"},{\"lightness\":19}]},{\"featureType\":\"administrative\",\"elementType\":\"geometry.fill\",\"stylers\":[{\"color\":\"#fefefe\"},{\"lightness\":20}]},{\"featureType\":\"administrative\",\"elementType\":\"geometry.stroke\",\"stylers\":[{\"color\":\"#fefefe\"},{\"lightness\":17},{\"weight\":1.2}]}]\";s:5:\"views\";i:620653;s:9:\"favorites\";i:1564;s:9:\"createdBy\";a:2:{s:4:\"name\";s:7:\"hawasan\";s:3:\"url\";s:23:\"http://www.haveasign.pl\";}s:9:\"createdOn\";s:23:\"2014-11-04T03:01:33.197\";s:4:\"tags\";a:2:{i:0;s:9:\"greyscale\";i:1;s:5:\"light\";}s:6:\"colors\";a:2:{i:0;s:4:\"gray\";i:1;s:5:\"white\";}}","yes");
INSERT INTO `wp_options` VALUES("16808","fw:ext:cf:fd:fcf90630b1c22b36921c071ceaa874f3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fcf90630b1c22b36921c071ceaa874f3\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16811","fw:ext:cf:fd:5f5413ebb10237d2e2f56464df222527","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5f5413ebb10237d2e2f56464df222527\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16815","fw:ext:cf:fd:199ab5accf1969a8c33704cbf7a24329","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"199ab5accf1969a8c33704cbf7a24329\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16818","fw:ext:cf:fd:1a2c90abf6484753bf3670be93dafa17","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1a2c90abf6484753bf3670be93dafa17\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16821","fw:ext:cf:fd:ab99532f9226a14261fd3809470c04fe","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ab99532f9226a14261fd3809470c04fe\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16825","fw:ext:cf:fd:dcf07c6999df8c317c670b3b4e8ff13f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"dcf07c6999df8c317c670b3b4e8ff13f\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16829","fw:ext:cf:fd:cb28b4f8b6f03712aeac9061144e88fe","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cb28b4f8b6f03712aeac9061144e88fe\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16831","fw:ext:cf:fd:12407291b7d37d39ef90f0112d249cdf","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"12407291b7d37d39ef90f0112d249cdf\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16834","fw:ext:cf:fd:e953aa233af8625ac5fc6f078511cf5f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e953aa233af8625ac5fc6f078511cf5f\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16838","fw:ext:cf:fd:a0c3fa1274a983803359adadddd90ec2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a0c3fa1274a983803359adadddd90ec2\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16841","fw:ext:cf:fd:fdaa5bb645799e75d2d38500ef33ce01","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fdaa5bb645799e75d2d38500ef33ce01\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16844","fw:ext:cf:fd:7ce672bfa4923f32f94936bb28f91c13","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7ce672bfa4923f32f94936bb28f91c13\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16847","fw:ext:cf:fd:e09a16c025d5e22f547fc8020b4b2666","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e09a16c025d5e22f547fc8020b4b2666\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16849","fw:ext:cf:fd:707e6ea34be2b9d4d891484bae2f30ee","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"707e6ea34be2b9d4d891484bae2f30ee\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16853","fw:ext:cf:fd:b15603a51d1eda746e1824ff85b07196","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b15603a51d1eda746e1824ff85b07196\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16856","fw:ext:cf:fd:0823aa63b606411d9be8a0310ebd3820","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0823aa63b606411d9be8a0310ebd3820\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16869","fw:ext:cf:fd:5eeebf26b525a4fea2fe58d1904f3bb2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5eeebf26b525a4fea2fe58d1904f3bb2\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16871","fw:ext:cf:fd:6470d645ba031428fb7359e59a7c6a40","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6470d645ba031428fb7359e59a7c6a40\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16876","fw:ext:cf:fd:634cb8b2fa35e1e19f875b019d20130f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"634cb8b2fa35e1e19f875b019d20130f\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16878","fw:ext:cf:fd:9abccf2778a4864e2e3b12f23da236a2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9abccf2778a4864e2e3b12f23da236a2\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16881","fw:ext:cf:fd:96f149b799caa3d3a5d308f73d6483ce","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"96f149b799caa3d3a5d308f73d6483ce\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16885","fw:ext:cf:fd:cf2d89bb63b4696f7d25a44a7d01be3c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cf2d89bb63b4696f7d25a44a7d01be3c\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16887","fw:ext:cf:fd:0f5e48b9d09e6cdb8502280a65204ad4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0f5e48b9d09e6cdb8502280a65204ad4\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16900","fw:ext:cf:fd:1f1b8e7a57e59c19f674ed1994fe8929","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1f1b8e7a57e59c19f674ed1994fe8929\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16916","fw:ext:cf:fd:ad772b551feb55697c34364bab57b299","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ad772b551feb55697c34364bab57b299\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16919","fw:ext:cf:fd:830ba322498e2122420a1682c20372a1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"830ba322498e2122420a1682c20372a1\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16922","fw:ext:cf:fd:f745a4d793d8cc8752c7f3f543244aa9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f745a4d793d8cc8752c7f3f543244aa9\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16926","fw:ext:cf:fd:60b75e314257a151249f27b265d13889","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"60b75e314257a151249f27b265d13889\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16929","fw:ext:cf:fd:0693eaf0ade7f640fc33152d1c655b1f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0693eaf0ade7f640fc33152d1c655b1f\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16932","fw:ext:cf:fd:421279035e8df97ab102d608a73fcdde","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"421279035e8df97ab102d608a73fcdde\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16978","fw:ext:cf:fd:d2ac7773e4b6fd1bb74645b796773e95","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d2ac7773e4b6fd1bb74645b796773e95\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16981","fw:ext:cf:fd:c7bd65d0448a4309dcfd361ca6c59a7e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c7bd65d0448a4309dcfd361ca6c59a7e\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16983","fw:ext:cf:fd:23388953e5eedc857614d4067c529007","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"23388953e5eedc857614d4067c529007\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16987","fw:ext:cf:fd:46cf71e873e42db9f6233ac617845e31","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"46cf71e873e42db9f6233ac617845e31\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16990","fw:ext:cf:fd:fe8991019625c2108ad98f0a519ae99a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fe8991019625c2108ad98f0a519ae99a\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16992","fw:ext:cf:fd:28810da464f7733723094b292e4697a5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"28810da464f7733723094b292e4697a5\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("16997","fw:ext:cf:fd:34a19655f9b8d254396716e05d40fada","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"34a19655f9b8d254396716e05d40fada\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17000","fw:ext:cf:fd:9fd437fcadffc78f259c992cf54a3285","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9fd437fcadffc78f259c992cf54a3285\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17003","fw:ext:cf:fd:c03d3d2374e93f9a386724d7858f7680","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c03d3d2374e93f9a386724d7858f7680\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17006","fw:ext:cf:fd:54a924b658509217d150f860b632485c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"54a924b658509217d150f860b632485c\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17009","fw:ext:cf:fd:f78e0658d2bca9ba894bde49bdc9a019","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f78e0658d2bca9ba894bde49bdc9a019\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17011","fw:ext:cf:fd:c11de233eb58c9836037901214959ce4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c11de233eb58c9836037901214959ce4\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17015","fw:ext:cf:fd:58c7af8f08f54bcef0f7d707708c1836","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"58c7af8f08f54bcef0f7d707708c1836\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17018","fw:ext:cf:fd:abe20715298f40c0010bb2e62cf15c43","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"abe20715298f40c0010bb2e62cf15c43\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17020","fw:ext:cf:fd:8b9ccdd32b3a0cd75b38364ea9d7add9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8b9ccdd32b3a0cd75b38364ea9d7add9\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17024","fw:ext:cf:fd:ef96657f8eb8750a2af7b102f2fcd588","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ef96657f8eb8750a2af7b102f2fcd588\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17025","fw:ext:cf:fd:da8d8ce6ff5ece6543222ecddbad9424","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"da8d8ce6ff5ece6543222ecddbad9424\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17029","fw:ext:cf:fd:27d7d3a27f55f1bbca6e297c70b3248e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"27d7d3a27f55f1bbca6e297c70b3248e\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17033","fw:ext:cf:fd:69733bc2c84d407f8361049003630895","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"69733bc2c84d407f8361049003630895\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17036","fw:ext:cf:fd:e9625e359335579102fc5b25f9c5c122","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e9625e359335579102fc5b25f9c5c122\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17039","fw:ext:cf:fd:62670a95150a74a693d33bf0d3a76335","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"62670a95150a74a693d33bf0d3a76335\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17049","fw:ext:cf:fd:3aa379649e4d0945ca546f75b9681ac9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3aa379649e4d0945ca546f75b9681ac9\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17053","fw:ext:cf:fd:afe648d26b2fc4db150fb2e28b8f9dd2","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"afe648d26b2fc4db150fb2e28b8f9dd2\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17056","fw:ext:cf:fd:f2b54fdfc3dc6520e6bcd40358032dbf","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f2b54fdfc3dc6520e6bcd40358032dbf\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17062","fw:ext:cf:fd:e66701b3e32472f39dcb294b536213bf","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e66701b3e32472f39dcb294b536213bf\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17063","fw:ext:cf:fd:8d4e5559d495edbf1ec1c4dc48139c2e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8d4e5559d495edbf1ec1c4dc48139c2e\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17176","fw:ext:cf:fd:a23ec7ffb2cfeef6266c23e683e1cb75","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a23ec7ffb2cfeef6266c23e683e1cb75\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17179","fw:ext:cf:fd:8436df4b7e31017539212fb2d648db6c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8436df4b7e31017539212fb2d648db6c\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17182","fw:ext:cf:fd:240758cb6d35ddaefd1fc5d2c478a0a4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"240758cb6d35ddaefd1fc5d2c478a0a4\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17185","fw:ext:cf:fd:81a5df452b98dbc4f5672aa5327afb9a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"81a5df452b98dbc4f5672aa5327afb9a\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17188","fw:ext:cf:fd:724da51bc1017ffac93a196631ddc6d1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"724da51bc1017ffac93a196631ddc6d1\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17191","fw:ext:cf:fd:5f81554b1fbc7d5d3b2f32abbaef3e71","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5f81554b1fbc7d5d3b2f32abbaef3e71\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17229","fw:ext:cf:fd:a1082a801196ef448e2b3aacb4d50693","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a1082a801196ef448e2b3aacb4d50693\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17230","fw:ext:cf:fd:2d32c323f8869a97078f2904299aa845","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2d32c323f8869a97078f2904299aa845\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17234","fw:ext:cf:fd:689018aa07729254c0fb17da61d855cb","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"689018aa07729254c0fb17da61d855cb\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17248","fw:ext:cf:fd:15e12ada8a555f3e0bf0b2cb9a8c731e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"15e12ada8a555f3e0bf0b2cb9a8c731e\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17249","fw:ext:cf:fd:98d547ea84ca968b517bbb4ef758e199","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"98d547ea84ca968b517bbb4ef758e199\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17259","fw:ext:cf:fd:7fa576909c7b03ba4909b45d2aafb46b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7fa576909c7b03ba4909b45d2aafb46b\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17262","fw:ext:cf:fd:4181467596cac3531c23980a29c272f4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4181467596cac3531c23980a29c272f4\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17279","fw:ext:cf:fd:9e78af32ff9e716faa7ee5594d323e22","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9e78af32ff9e716faa7ee5594d323e22\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17371","fw:ext:cf:fd:32a926cc03abfe4d95975ca01babd77f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"32a926cc03abfe4d95975ca01babd77f\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17374","fw:ext:cf:fd:db14e8823db3b14004fb7c520a9dcc7b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"db14e8823db3b14004fb7c520a9dcc7b\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17377","fw:ext:cf:fd:4768e483ddf0002eeb2dd43568b46502","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4768e483ddf0002eeb2dd43568b46502\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17380","fw:ext:cf:fd:9509ba9ab27423e0cd42bce91f375428","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9509ba9ab27423e0cd42bce91f375428\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17391","fw:ext:cf:fd:ca7bdd2e23407733f5ab5b8d0ef42a10","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ca7bdd2e23407733f5ab5b8d0ef42a10\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17480","fw:ext:cf:fd:e3c5b11264d4c99f7ace25f6cc1aae6f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e3c5b11264d4c99f7ace25f6cc1aae6f\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17483","fw:ext:cf:fd:4f4002525a4365a2f6a5aa8f4d73c89f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4f4002525a4365a2f6a5aa8f4d73c89f\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17486","fw:ext:cf:fd:aaa03b1a53d48dbe2beb789a65ab6c9c","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"aaa03b1a53d48dbe2beb789a65ab6c9c\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17489","fw:ext:cf:fd:ebd6e1340618e43a56d5b51d8e7cffd8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ebd6e1340618e43a56d5b51d8e7cffd8\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17492","fw:ext:cf:fd:78c32c65762fd644982a5c72c3a2472d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"78c32c65762fd644982a5c72c3a2472d\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17495","fw:ext:cf:fd:61f7c3941af34ce43fa3e12d43a47a1a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"61f7c3941af34ce43fa3e12d43a47a1a\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17499","fw:ext:cf:fd:eaa8a4bc5f1fce373e18255a9d02c60a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"eaa8a4bc5f1fce373e18255a9d02c60a\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17502","fw:ext:cf:fd:22b2ca03b78e4da039dba60e363626fa","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"22b2ca03b78e4da039dba60e363626fa\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17503","fw:ext:cf:fd:409cc0ebba2a290fb8f95edeeb629892","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"409cc0ebba2a290fb8f95edeeb629892\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17507","fw:ext:cf:fd:95ff84ef413acaca96b7907909c00e93","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"95ff84ef413acaca96b7907909c00e93\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17508","fw:ext:cf:fd:716c7ab68b0bbd71367c3f32dba5e99a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"716c7ab68b0bbd71367c3f32dba5e99a\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17513","fw:ext:cf:fd:3eef24c6194727821a99f0ed2653cdf4","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3eef24c6194727821a99f0ed2653cdf4\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17516","fw:ext:cf:fd:20c817c2dd7d1b9e283691b0a52beb1d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"20c817c2dd7d1b9e283691b0a52beb1d\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17519","fw:ext:cf:fd:adb616b1f855383d374e119c1100026e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"adb616b1f855383d374e119c1100026e\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17522","fw:ext:cf:fd:05dee7e418e47c7da218016025fb474a","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"05dee7e418e47c7da218016025fb474a\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17525","fw:ext:cf:fd:5907aa14ee7265ae2387573947b48d18","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5907aa14ee7265ae2387573947b48d18\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17553","fw:ext:cf:fd:a59e0dc6bc1d044f41a399c51957d369","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a59e0dc6bc1d044f41a399c51957d369\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17556","fw:ext:cf:fd:a0b7a4d16007acccfd7e459c2bc25e1d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a0b7a4d16007acccfd7e459c2bc25e1d\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17560","fw:ext:cf:fd:b5b641f7ff69799f224f05e3ce66b7c6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"b5b641f7ff69799f224f05e3ce66b7c6\";s:4:\"form\";a:1:{s:4:\"json\";s:1310:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_1fcfb46\",\"width\":\"1_3\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_42598d5\",\"width\":\"1_3\",\"options\":{\"label\":\"Your Phone\",\"required\":true,\"placeholder\":\"Your Phone\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"date-time\",\"options\":{\"label\":\"Date\",\"required\":true,\"placeholder\":\"Date\",\"date_time\":\"date\",\"icon\":\"\"},\"shortcode\":\"date_time_42a77ed\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"date-time\",\"options\":{\"label\":\"Time\",\"required\":true,\"placeholder\":\"Time\",\"date_time\":\"time\",\"icon\":\"\"},\"shortcode\":\"date_time_b63914d\",\"_items\":[],\"width\":\"1_6\"},{\"type\":\"textarea\",\"shortcode\":\"textarea_edfe99b\",\"width\":\"1_1\",\"options\":{\"label\":\"Your message\",\"required\":true,\"placeholder\":\"Your message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"5\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"get pass now\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:11:\"wide_button\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("17848","fw-event-taxonomy-name_children","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("17853","pa_color_children","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("17854","pa_size_children","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("17904","product_cat_children","a:3:{i:120;a:2:{i:0;i:18;i:1;i:77;}i:117;a:1:{i:0;i:20;}i:125;a:2:{i:0;i:117;i:1;i:119;}}","yes");
INSERT INTO `wp_options` VALUES("17917","!sbi_header_1067079026","%7B%22data%22:%7B%22id%22:%221745684104%22,%22username%22:%22black_laboratory%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9bb22bf2dda4318b38c51839dffb58c4/5B7FF559/t51.2885-19/22157639_128271337827349_5996359190912696320_n.jpg%22,%22full_name%22:%22Black_Lab%22,%22bio%22:%22Full%20stack%20WordPress%20development%22,%22website%22:%22https://themeforest.net/user/black_lab%22,%22is_business%22:false,%22counts%22:%7B%22media%22:13,%22follows%22:218,%22followed_by%22:160%7D%7D,%22meta%22:%7B%22code%22:200%7D%7D","no");
INSERT INTO `wp_options` VALUES("18299","!sbi_header_3905738328","%7B%22data%22:%7B%22id%22:%223905738328%22,%22username%22:%22modern_web_templates%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22full_name%22:%22%22,%22bio%22:%22MWTemplates%20is%20a%20team%20of%20creative%20professionals.%20We%20aim%20to%20produce%20modern%20web%20templates%20for%20real%20projects!%5CnWhat%20we%20do%20is%20analyse,%20create%20and%20develop.%22,%22website%22:%22http://modernwebtemplates.com%22,%22is_business%22:false,%22counts%22:%7B%22media%22:22,%22follows%22:2,%22followed_by%22:46%7D%7D,%22meta%22:%7B%22code%22:200%7D%7D","no");
INSERT INTO `wp_options` VALUES("18302","!sbi_3905738328","%7B%22pagination%22:%7B%22next_url%22:%5B%5D%7D,%22data%22:%5B%7B%22id%22:%221449214338875034285_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/07cce5ceb9b59730e24ac54527daf571/5BAE8422/t51.2885-15/s150x150/e35/16464739_627492030785500_6457849505562755072_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/c0c860496cf6d767f68dc31a13bde988/5BC84665/t51.2885-15/s320x320/e35/16464739_627492030785500_6457849505562755072_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/45ceddbe926d1a16ee86565ca5f24de5/5BB19F26/t51.2885-15/s640x640/sh0.08/e35/16464739_627492030785500_6457849505562755072_n.jpg%22%7D%7D,%22created_time%22:%221486979833%22,%22caption%22:%7B%22id%22:%2217849713534147421%22,%22text%22:%22#grey%22,%22created_time%22:%221486979833%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQcpMNQDIqt/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449214197728363286_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/b74c62891d67f8e34ef2f671df9a9bce/5BE9F238/t51.2885-15/s150x150/e35/16464151_643258532531643_3544069363252330496_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/71dfdd3b376ebff314ac2567d195ba5d/5BE5647F/t51.2885-15/s320x320/e35/16464151_643258532531643_3544069363252330496_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/3e3f275852741440aafcaca632098569/5BE0A13C/t51.2885-15/s640x640/sh0.08/e35/16464151_643258532531643_3544069363252330496_n.jpg%22%7D%7D,%22created_time%22:%221486979816%22,%22caption%22:%7B%22id%22:%2217861257858108884%22,%22text%22:%22#grey%22,%22created_time%22:%221486979816%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQcpKJzDUMW/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449214063829389124_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/f11b4d999ac936542b7f7d2308b60b1c/5BE4339B/t51.2885-15/s150x150/e35/16465162_169843250177161_804593137140891648_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/f056fe647600b908eb70edd077bff911/5BAE6066/t51.2885-15/s320x320/e35/16465162_169843250177161_804593137140891648_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/c3cf7380a5c133db98fafb6653cf3ec8/5BE624BA/t51.2885-15/s640x640/sh0.08/e35/16465162_169843250177161_804593137140891648_n.jpg%22%7D%7D,%22created_time%22:%221486979800%22,%22caption%22:%7B%22id%22:%2217849108269180356%22,%22text%22:%22#grey%22,%22created_time%22:%221486979800%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQcpINGDQ9E/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449213904621988580_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/55e80c42fe49e8c8b16603fa35066ef6/5BAE2D21/t51.2885-15/s150x150/e35/16464411_1842743525968318_3601200627381698560_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/a83f649bcd627272b5a5140e5bc1a38b/5BB21F11/t51.2885-15/s320x320/e35/16464411_1842743525968318_3601200627381698560_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/1c11fe80946e9724c32ff1ccfa5ab847/5BB4A05C/t51.2885-15/s640x640/sh0.08/e35/16464411_1842743525968318_3601200627381698560_n.jpg%22%7D%7D,%22created_time%22:%221486979781%22,%22caption%22:%7B%22id%22:%2217863359094108028%22,%22text%22:%22#grey%22,%22created_time%22:%221486979781%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQcpF40jOrk/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449213734383579592_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/35a46ef03d4da9aacf481a9aa9fc812f/5BCC2986/t51.2885-15/s150x150/e35/16465809_250690762054318_3511085951449300992_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/3e9391daf5719fd2c4695e764ba04dab/5BE926C1/t51.2885-15/s320x320/e35/16465809_250690762054318_3511085951449300992_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/04d9a4ec6d23eb9aea0d913e2effbe81/5BEB97E3/t51.2885-15/e35/16465809_250690762054318_3511085951449300992_n.jpg%22%7D%7D,%22created_time%22:%221486979761%22,%22caption%22:%7B%22id%22:%2217871997672054511%22,%22text%22:%22#grey%22,%22created_time%22:%221486979761%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQcpDaRjPHI/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449213582977586747_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/4743657e36365ba6c1ac0467e2130e33/5BC55040/t51.2885-15/s150x150/e35/16230129_412244525787323_8327440317015916544_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/023f4d233b0c06509e8bd9a203b6bb93/5BE98F07/t51.2885-15/s320x320/e35/16230129_412244525787323_8327440317015916544_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/8b3e599e07b4b8a16ba21c15f5fe4432/5BE67044/t51.2885-15/s640x640/sh0.08/e35/16230129_412244525787323_8327440317015916544_n.jpg%22%7D%7D,%22created_time%22:%221486979743%22,%22caption%22:%7B%22id%22:%2217860638247126427%22,%22text%22:%22#grey%22,%22created_time%22:%221486979743%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQcpBNRDNY7/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449213408486190588_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/84c19a3a16bf38d5b24eed6831a4a381/5BE898F1/t51.2885-15/s150x150/e35/16230916_384944801866922_6021622450540773376_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/8e0897d234c790f4b609d0ee818e8db9/5BC8A3B6/t51.2885-15/s320x320/e35/16230916_384944801866922_6021622450540773376_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/90fb4861aebdf6ea5c5b65ae603bd920/5BB21EF5/t51.2885-15/s640x640/sh0.08/e35/16230916_384944801866922_6021622450540773376_n.jpg%22%7D%7D,%22created_time%22:%221486979722%22,%22caption%22:%7B%22id%22:%2217861192194129545%22,%22text%22:%22#grey%22,%22created_time%22:%221486979722%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQco-qwjW38/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449213228827471746_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/dab9300d801dd0a0f9d47eef56b7ae1e/5BE5032E/t51.2885-15/s150x150/e35/16583333_1749123868732976_685928632475975680_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/749d679b7a91e3ca68bc552393e76df8/5BCF4669/t51.2885-15/s320x320/e35/16583333_1749123868732976_685928632475975680_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/c4a815ca38a42ea5a6f4baad20f6b4df/5BE2C42A/t51.2885-15/s640x640/sh0.08/e35/16583333_1749123868732976_685928632475975680_n.jpg%22%7D%7D,%22created_time%22:%221486979701%22,%22caption%22:%7B%22id%22:%2217872249300028622%22,%22text%22:%22#grey%22,%22created_time%22:%221486979701%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQco8DcDu-C/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449213032802329864_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/53a11c6564ed0a0c77bb7bc1a293b7db/5BEA0608/t51.2885-15/s150x150/e35/16465110_610020022521080_2360621000632041472_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/5ec1b3847f255a1819f348854e39fd90/5BAD134F/t51.2885-15/s320x320/e35/16465110_610020022521080_2360621000632041472_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/c344e53728cb9b7da53d1426f3d3ae39/5BDF6B0C/t51.2885-15/s640x640/sh0.08/e35/16465110_610020022521080_2360621000632041472_n.jpg%22%7D%7D,%22created_time%22:%221486979677%22,%22caption%22:%7B%22id%22:%2217872934536034290%22,%22text%22:%22#grey%22,%22created_time%22:%221486979677%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQco5M4DKUI/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449212851197346020_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/8bd6d1c0b4c860a24318043ea4139096/5BCA3DE2/t51.2885-15/s150x150/e35/16465126_209239312879053_8635515207306706944_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/8f949f31bf4f80abd4967927cc542f65/5BE836A5/t51.2885-15/s320x320/e35/16465126_209239312879053_8635515207306706944_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/7c5f47827b9c19b03899b0bd19744b4b/5BB155E6/t51.2885-15/s640x640/sh0.08/e35/16465126_209239312879053_8635515207306706944_n.jpg%22%7D%7D,%22created_time%22:%221486979656%22,%22caption%22:%7B%22id%22:%2217860860658126913%22,%22text%22:%22#grey%22,%22created_time%22:%221486979656%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:2%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQco2jvjIDk/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221424663083951604568_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/87a95fc9a19a0278b3646935bd8e8de9/5BD0EDDC/t51.2885-15/s150x150/e35/15802561_356443338044357_583570215963459584_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/ea5e97d6ac6c9ea9139f91984a3b2416/5BEC5321/t51.2885-15/s320x320/e35/15802561_356443338044357_583570215963459584_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/2e68e4a9a0152ae3f4690257e45d7f6a/5BCA3BFD/t51.2885-15/s640x640/sh0.08/e35/15802561_356443338044357_583570215963459584_n.jpg%22%7D%7D,%22created_time%22:%221484053095%22,%22caption%22:%7B%22id%22:%2217869053034041436%22,%22text%22:%22#moveco%22,%22created_time%22:%221484053095%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22moveco%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BPFa4bTjENY/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221424662934282094662_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/292530f89805f7e12c19dabd7466769e/5BC57E27/t51.2885-15/s150x150/e35/15801993_1235075323249902_8542633210931052544_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/264d875ddc85d25e20ea2703baa63344/5BB17717/t51.2885-15/s320x320/e35/15801993_1235075323249902_8542633210931052544_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/9108849468158763daa4d6de78136c19/5BE56F5A/t51.2885-15/s640x640/sh0.08/e35/15801993_1235075323249902_8542633210931052544_n.jpg%22%7D%7D,%22created_time%22:%221484053077%22,%22caption%22:%7B%22id%22:%2217868815188016187%22,%22text%22:%22#moveco%22,%22created_time%22:%221484053077%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22moveco%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BPFa2P6jMhG/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221424662778858173418_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/f187de15c20ddc00d3f8596a5716b42c/5BEBE42E/t51.2885-15/s150x150/e35/15802489_696216263871087_1730641695940280320_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/4f20690e093f2efcfcfd88e24534f6f3/5BC94069/t51.2885-15/s320x320/e35/15802489_696216263871087_1730641695940280320_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/dec6d209a56ff7232954705c891d9da1/5BB5B22A/t51.2885-15/s640x640/sh0.08/e35/15802489_696216263871087_1730641695940280320_n.jpg%22%7D%7D,%22created_time%22:%221484053059%22,%22caption%22:%7B%22id%22:%2217868927511014453%22,%22text%22:%22#moveco%22,%22created_time%22:%221484053059%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22moveco%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BPFaz_Kj_Pq/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221424662642526475103_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/863fa1da10148010d5f9da0ac8f2115e/5BE3EDCB/t51.2885-15/s150x150/e35/15876403_401925890147306_4604494258898993152_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/e2c0378245e86ac5e6b9f86437e6c998/5BB51B8C/t51.2885-15/s320x320/e35/15876403_401925890147306_4604494258898993152_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/ca345690e6c623157b52a9836b383373/5BC54DCF/t51.2885-15/s640x640/sh0.08/e35/15876403_401925890147306_4604494258898993152_n.jpg%22%7D%7D,%22created_time%22:%221484053043%22,%22caption%22:%7B%22id%22:%2217846605462188984%22,%22text%22:%22#moveco%22,%22created_time%22:%221484053043%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22moveco%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BPFayAMj1Nf/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221424662206545293962_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/410a1a664ec101ba5ed4762a65dab63d/5BEA43FB/t51.2885-15/s150x150/e35/15876615_1165360040246864_8650960631257628672_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/3351a7ccbde179ec236ca81ad12aebe9/5BAFF5CB/t51.2885-15/s320x320/e35/15876615_1165360040246864_8650960631257628672_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/4f5ad73b3cd99297c26d19f7d232d4b4/5BE77986/t51.2885-15/s640x640/sh0.08/e35/15876615_1165360040246864_8650960631257628672_n.jpg%22%7D%7D,%22created_time%22:%221484052991%22,%22caption%22:%7B%22id%22:%2217863111747068441%22,%22text%22:%22#moveco%22,%22created_time%22:%221484052991%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22moveco%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BPFarqKDnKK/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221424660153408417747_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/ea07ac5fbeb2ad1d580d0f1ee972d9bc/5BB44496/t51.2885-15/s150x150/e35/15876487_1299006466837762_8618894332411248640_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/7ae58316752108a0dbca8b0e0892c15b/5BDF16A6/t51.2885-15/s320x320/e35/15876487_1299006466837762_8618894332411248640_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/7266a6fdd52cf56e08548955c236574e/5BB07AEB/t51.2885-15/s640x640/sh0.08/e35/15876487_1299006466837762_8618894332411248640_n.jpg%22%7D%7D,%22created_time%22:%221484052746%22,%22caption%22:%7B%22id%22:%2217858611798111309%22,%22text%22:%22#moveco%22,%22created_time%22:%221484052746%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22moveco%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BPFaNyBj-_T/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221385437868831052225_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/1c80a9c23e46e6d7ecc6ed87659014eb/5BEAA1DA/t51.2885-15/s150x150/e35/14515660_1211477842233612_6752394643280756736_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/76ae131b232ab264ab8a026a7d022cfd/5BCCF3EA/t51.2885-15/s320x320/e35/14515660_1211477842233612_6752394643280756736_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/237547fb04a4ae834f441067f27ac861/5BAFEBA7/t51.2885-15/s640x640/sh0.08/e35/14515660_1211477842233612_6752394643280756736_n.jpg%22%7D%7D,%22created_time%22:%221479377085%22,%22caption%22:%7B%22id%22:%2217844428080157430%22,%22text%22:%22#carrepair%22,%22created_time%22:%221479377085%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22carrepair%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BM6EGa-DJHB/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221385437652908415468_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/43247d20fce3a7fec36cc46c29f9414d/5BE2DA3B/t51.2885-15/s150x150/e35/15048140_224309864657370_106138327035412480_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/3867ef186dcfa08e7579a763d217dabd/5BCC7CC6/t51.2885-15/s320x320/e35/15048140_224309864657370_106138327035412480_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/22e8237924f6fa2299c0fe523f8c1a9d/5BC6DA1A/t51.2885-15/s640x640/sh0.08/e35/15048140_224309864657370_106138327035412480_n.jpg%22%7D%7D,%22created_time%22:%221479377060%22,%22caption%22:%7B%22id%22:%2217844392593181626%22,%22text%22:%22#carrepair%22,%22created_time%22:%221479377060%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22carrepair%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BM6EDR4Dpns/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221385437516836677005_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/b48c1edd6d5a503c09ebc708d121e347/5BE3A7A7/t51.2885-15/s150x150/e35/14591141_361608470851473_520533577960521728_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/38fbf2ac3d74cd4f07d08649acb33867/5BEB045A/t51.2885-15/s320x320/e35/14591141_361608470851473_520533577960521728_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/1fa1a31c4e2df8110f0914f76078f31b/5BCC0E86/t51.2885-15/s640x640/sh0.08/e35/14591141_361608470851473_520533577960521728_n.jpg%22%7D%7D,%22created_time%22:%221479377043%22,%22caption%22:%7B%22id%22:%2217855670214114314%22,%22text%22:%22#carrepair%22,%22created_time%22:%221479377043%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22carrepair%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BM6EBTJjKWN/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221385436913125533752_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/67ec091a43e8802e4b01f0cf80b3367a/5BCDE514/t51.2885-15/s150x150/e35/15034840_1628875657406710_2912324191346753536_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/ba8510667b6323e215828229926433b8/5BCA8524/t51.2885-15/s320x320/e35/15034840_1628875657406710_2912324191346753536_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/265ac7e28b01974c99bc2657916bf06d/5BB0F469/t51.2885-15/s640x640/sh0.08/e35/15034840_1628875657406710_2912324191346753536_n.jpg%22%7D%7D,%22created_time%22:%221479376971%22,%22caption%22:%7B%22id%22:%2217860058134069472%22,%22text%22:%22#carrepair%22,%22created_time%22:%221479376971%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22carrepair%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BM6D4g5j6g4/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D%5D,%22meta%22:%7B%22code%22:200%7D%7D","no");
INSERT INTO `wp_options` VALUES("18303","widget_dotdigital_twitter","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("18304","fw_ext_settings_options:social","a:6:{s:15:\"facebook-app-id\";s:0:\"\";s:19:\"facebook-app-secret\";s:0:\"\";s:20:\"twitter-consumer-key\";s:25:\"kL6IDcOaqkUCKstjzK5Ir0P55\";s:23:\"twitter-consumer-secret\";s:50:\"SFmpfMThWsRuXWkvvaK1FqhvHcT1Wu6aFRqKHV8k8yhisTwW9v\";s:20:\"twitter-access-token\";s:50:\"845202520758640641-WXQZqkGogfOSo37n6SAC5ccvwARQvrp\";s:27:\"twitter-access-token-secret\";s:45:\"bZlFKCJ6mcAVKxWuCvv13XE5iSQynpv33nM5R4mp5pT9C\";}","no");
INSERT INTO `wp_options` VALUES("19727","woocommerce_erasure_request_removes_order_data","no","no");
INSERT INTO `wp_options` VALUES("19728","woocommerce_erasure_request_removes_download_data","no","no");
INSERT INTO `wp_options` VALUES("19729","wp_page_for_privacy_policy","","yes");
INSERT INTO `wp_options` VALUES("19730","woocommerce_registration_privacy_policy_text","Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].","yes");
INSERT INTO `wp_options` VALUES("19731","woocommerce_checkout_privacy_policy_text","Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].","yes");
INSERT INTO `wp_options` VALUES("19732","woocommerce_delete_inactive_accounts","a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}","no");
INSERT INTO `wp_options` VALUES("19733","woocommerce_trash_pending_orders","","no");
INSERT INTO `wp_options` VALUES("19734","woocommerce_trash_failed_orders","","no");
INSERT INTO `wp_options` VALUES("19735","woocommerce_trash_cancelled_orders","","no");
INSERT INTO `wp_options` VALUES("19736","woocommerce_anonymize_completed_orders","a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}","no");
INSERT INTO `wp_options` VALUES("19737","woocommerce_checkout_highlight_required_fields","yes","yes");
INSERT INTO `wp_options` VALUES("19795","fw:ext:cf:fd:2c4fb9719dc1a7393623f9ca9b2405e7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"2c4fb9719dc1a7393623f9ca9b2405e7\";s:4:\"form\";a:1:{s:4:\"json\";s:1408:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19797","fw:ext:cf:fd:f0d714ac3d365ad423714e2be1f092c8","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f0d714ac3d365ad423714e2be1f092c8\";s:4:\"form\";a:1:{s:4:\"json\";s:1408:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_2\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_2\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_2\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dafa6b7\",\"width\":\"1_2\",\"options\":{\"label\":\"Your Topic\",\"required\":true,\"placeholder\":\"Your Topic\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19799","fw:ext:cf:fd:1e76482c94cac570b8a7a5cbf689635b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1e76482c94cac570b8a7a5cbf689635b\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19801","fw:ext:cf:fd:4f70b606787073648ecc0fcedf692766","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4f70b606787073648ecc0fcedf692766\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19803","fw:ext:cf:fd:41b5ec70b7a40384375abb1ca1609929","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"41b5ec70b7a40384375abb1ca1609929\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19805","fw:ext:cf:fd:bc3dd56472f1b0a014234bc57f1f0746","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bc3dd56472f1b0a014234bc57f1f0746\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19806","fw:ext:cf:fd:c8120cf0586a30dffe5fbbbd9e0b232b","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"c8120cf0586a30dffe5fbbbd9e0b232b\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19807","fw:ext:cf:fd:036813c5adadbb2a2acfe4cebab96e61","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"036813c5adadbb2a2acfe4cebab96e61\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19809","fw:ext:cf:fd:4e91acbaf80080be759ee1f106a25b81","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4e91acbaf80080be759ee1f106a25b81\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19812","fw:ext:cf:fd:5004651e4d698f466f669a2e76294585","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"5004651e4d698f466f669a2e76294585\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19815","fw:ext:cf:fd:d13c19409f226c3f0ddd2c6be4452dd1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d13c19409f226c3f0ddd2c6be4452dd1\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19817","fw:ext:cf:fd:9ddabdfee287e57e37b7c7aecccece70","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9ddabdfee287e57e37b7c7aecccece70\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19818","fw:ext:cf:fd:8d6d49571ed9c4ac4036d652845bf855","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"8d6d49571ed9c4ac4036d652845bf855\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19822","fw:ext:cf:fd:a36ff496a65ccadab35230d4098197d5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a36ff496a65ccadab35230d4098197d5\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19828","fw:ext:cf:fd:27947a7a54d70bd0238bc138f3d7d8e6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"27947a7a54d70bd0238bc138f3d7d8e6\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19830","fw:ext:cf:fd:a2685724a946760fcb70216815ff1d65","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a2685724a946760fcb70216815ff1d65\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19834","fw:ext:cf:fd:fb27b9ad299f8161c2b023f1f663e299","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"fb27b9ad299f8161c2b023f1f663e299\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19836","fw:ext:cf:fd:7f1cfdbeacc41c0eb30ea7526ce9dccf","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"7f1cfdbeacc41c0eb30ea7526ce9dccf\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("19838","fw:ext:cf:fd:4f898983e342e3948c47ad714d8a5034","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4f898983e342e3948c47ad714d8a5034\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("20131","fw:ext:cf:fd:82969aa7048a2e49e25715fe874c8860","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"82969aa7048a2e49e25715fe874c8860\";s:4:\"form\";a:1:{s:4:\"json\";s:110:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}}]\";}s:16:\"background_color\";s:2:\"ls\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:0:\"\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("20134","fw:ext:cf:fd:0df6805f2f28038e8c4f1e6b550f0fb3","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"0df6805f2f28038e8c4f1e6b550f0fb3\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_d6362b6\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_130d308\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dc3891f\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_1f2a77d\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Ask Question\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("20136","fw:ext:cf:fd:d5ca2a1fa9db0ee11d26032f19b2acba","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d5ca2a1fa9db0ee11d26032f19b2acba\";s:4:\"form\";a:1:{s:4:\"json\";s:110:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}}]\";}s:16:\"background_color\";s:2:\"ls\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:0:\"\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("20140","fw:ext:cf:fd:25d397c88b3511f44557e75b559aecf5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"25d397c88b3511f44557e75b559aecf5\";s:4:\"form\";a:1:{s:4:\"json\";s:110:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}}]\";}s:16:\"background_color\";s:2:\"ls\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:0:\"\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("20142","fw:ext:cf:fd:098851d189584a420dc5ec75446f41f1","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"098851d189584a420dc5ec75446f41f1\";s:4:\"form\";a:1:{s:4:\"json\";s:110:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}}]\";}s:16:\"background_color\";s:2:\"ls\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:0:\"\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("20143","fw:ext:cf:fd:f2a8dddf4fc75730d7d964c8ffce7bef","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"f2a8dddf4fc75730d7d964c8ffce7bef\";s:4:\"form\";a:1:{s:4:\"json\";s:110:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}}]\";}s:16:\"background_color\";s:2:\"ls\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:0:\"\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("20145","fw:ext:cf:fd:a5fa2642a9eff33c647a300a5f7be8e6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"a5fa2642a9eff33c647a300a5f7be8e6\";s:4:\"form\";a:1:{s:4:\"json\";s:110:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}}]\";}s:16:\"background_color\";s:2:\"ls\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:0:\"\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("20149","fw:ext:cf:fd:457ee281e1cddf34357fbecc69666f73","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"457ee281e1cddf34357fbecc69666f73\";s:4:\"form\";a:1:{s:4:\"json\";s:110:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}}]\";}s:16:\"background_color\";s:2:\"ls\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:0:\"\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("20154","fw:ext:cf:fd:cf613901f58ced323b169b465ad49832","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"cf613901f58ced323b169b465ad49832\";s:4:\"form\";a:1:{s:4:\"json\";s:1154:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_d6362b6\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_130d308\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_3ecefc8\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_1f2a77d\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Ask Question\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("20156","fw:ext:cf:fd:6542475938c619a1a9f428fc8391d7e0","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"6542475938c619a1a9f428fc8391d7e0\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_d6362b6\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_130d308\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dc3891f\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_1f2a77d\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Ask Question\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("20158","fw:ext:cf:fd:823ecdce2f1cea5e97b832e69708ba5e","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"823ecdce2f1cea5e97b832e69708ba5e\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_d6362b6\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_130d308\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dc3891f\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_1f2a77d\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Ask Question\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("20160","fw:ext:cf:fd:34ca793af68cf79043ac359cd198cf4f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"34ca793af68cf79043ac359cd198cf4f\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_d6362b6\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_130d308\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dc3891f\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_1f2a77d\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Ask Question\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("20163","fw:ext:cf:fd:352dcec0ad6a0c0688073f6b7107a68d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"352dcec0ad6a0c0688073f6b7107a68d\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_d6362b6\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_130d308\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dc3891f\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_1f2a77d\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Ask Question\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("20165","fw:ext:cf:fd:adbef06caa7c48bf956bf94683ee16ac","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"adbef06caa7c48bf956bf94683ee16ac\";s:4:\"form\";a:1:{s:4:\"json\";s:1131:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_d6362b6\",\"width\":\"1_1\",\"options\":{\"label\":\"Full Name\",\"required\":true,\"placeholder\":\"Full Name\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_130d308\",\"width\":\"1_1\",\"options\":{\"label\":\"Email Address\",\"required\":true,\"placeholder\":\"Email Address\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_dc3891f\",\"width\":\"1_1\",\"options\":{\"label\":\"Phone Number\",\"required\":true,\"placeholder\":\"Phone Number\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_1f2a77d\",\"width\":\"1_1\",\"options\":{\"label\":\"Your Message\",\"required\":true,\"placeholder\":\"Your Message\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Ask Question\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("20262","fw-team-category_children","a:1:{i:161;a:2:{i:0;i:22;i:1;i:162;}}","yes");
INSERT INTO `wp_options` VALUES("20814","wpscss_version","1.2.4","no");
INSERT INTO `wp_options` VALUES("20838","wpscss_options","a:5:{s:8:\"scss_dir\";s:6:\"/scss/\";s:7:\"css_dir\";s:5:\"/css/\";s:17:\"compiling_options\";s:32:\"Leafo\\ScssPhp\\Formatter\\Expanded\";s:17:\"sourcemap_options\";s:15:\"SOURCE_MAP_NONE\";s:6:\"errors\";s:4:\"show\";}","yes");
INSERT INTO `wp_options` VALUES("20895","wp-smush-last_settings","s:187:\"a:10:{s:11:\"networkwide\";b:0;s:4:\"auto\";i:1;s:5:\"lossy\";b:0;s:8:\"original\";b:0;s:9:\"keep_exif\";b:0;s:6:\"resize\";b:0;s:6:\"backup\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;}\";","no");
INSERT INTO `wp_options` VALUES("20896","wdev-frash","a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1530024902;}s:5:\"queue\";a:2:{s:32:\"7de3619981caadc55f30a002bfb299f6\";a:4:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1530024902;s:6:\"sticky\";b:1;}s:32:\"fc50097023d0d34c5a66f6cddcf77694\";a:3:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1530629702;}}s:4:\"done\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("20900","ai1wm_secret_key","mD5mK27jFn8F","yes");
INSERT INTO `wp_options` VALUES("20902","smush_option","a:1:{s:7:\"version\";s:7:\"2.7.9.1\";}","yes");
INSERT INTO `wp_options` VALUES("21058","wp-smush-install-type","new","no");
INSERT INTO `wp_options` VALUES("21154","ai1wm_updater","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("21197","!","%7B%22pagination%22:%7B%22next_url%22:%5B%5D%7D,%22data%22:%5B%7B%22id%22:%221449214338875034285_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/07cce5ceb9b59730e24ac54527daf571/5BAE8422/t51.2885-15/s150x150/e35/16464739_627492030785500_6457849505562755072_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/c0c860496cf6d767f68dc31a13bde988/5BC84665/t51.2885-15/s320x320/e35/16464739_627492030785500_6457849505562755072_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/45ceddbe926d1a16ee86565ca5f24de5/5BB19F26/t51.2885-15/s640x640/sh0.08/e35/16464739_627492030785500_6457849505562755072_n.jpg%22%7D%7D,%22created_time%22:%221486979833%22,%22caption%22:%7B%22id%22:%2217849713534147421%22,%22text%22:%22#grey%22,%22created_time%22:%221486979833%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQcpMNQDIqt/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449214197728363286_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/b74c62891d67f8e34ef2f671df9a9bce/5BE9F238/t51.2885-15/s150x150/e35/16464151_643258532531643_3544069363252330496_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/71dfdd3b376ebff314ac2567d195ba5d/5BE5647F/t51.2885-15/s320x320/e35/16464151_643258532531643_3544069363252330496_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/3e3f275852741440aafcaca632098569/5BE0A13C/t51.2885-15/s640x640/sh0.08/e35/16464151_643258532531643_3544069363252330496_n.jpg%22%7D%7D,%22created_time%22:%221486979816%22,%22caption%22:%7B%22id%22:%2217861257858108884%22,%22text%22:%22#grey%22,%22created_time%22:%221486979816%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQcpKJzDUMW/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449214063829389124_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/f11b4d999ac936542b7f7d2308b60b1c/5BE4339B/t51.2885-15/s150x150/e35/16465162_169843250177161_804593137140891648_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/f056fe647600b908eb70edd077bff911/5BAE6066/t51.2885-15/s320x320/e35/16465162_169843250177161_804593137140891648_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/c3cf7380a5c133db98fafb6653cf3ec8/5BE624BA/t51.2885-15/s640x640/sh0.08/e35/16465162_169843250177161_804593137140891648_n.jpg%22%7D%7D,%22created_time%22:%221486979800%22,%22caption%22:%7B%22id%22:%2217849108269180356%22,%22text%22:%22#grey%22,%22created_time%22:%221486979800%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQcpINGDQ9E/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449213904621988580_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/55e80c42fe49e8c8b16603fa35066ef6/5BAE2D21/t51.2885-15/s150x150/e35/16464411_1842743525968318_3601200627381698560_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/a83f649bcd627272b5a5140e5bc1a38b/5BB21F11/t51.2885-15/s320x320/e35/16464411_1842743525968318_3601200627381698560_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/1c11fe80946e9724c32ff1ccfa5ab847/5BB4A05C/t51.2885-15/s640x640/sh0.08/e35/16464411_1842743525968318_3601200627381698560_n.jpg%22%7D%7D,%22created_time%22:%221486979781%22,%22caption%22:%7B%22id%22:%2217863359094108028%22,%22text%22:%22#grey%22,%22created_time%22:%221486979781%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQcpF40jOrk/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449213734383579592_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/35a46ef03d4da9aacf481a9aa9fc812f/5BCC2986/t51.2885-15/s150x150/e35/16465809_250690762054318_3511085951449300992_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/3e9391daf5719fd2c4695e764ba04dab/5BE926C1/t51.2885-15/s320x320/e35/16465809_250690762054318_3511085951449300992_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/04d9a4ec6d23eb9aea0d913e2effbe81/5BEB97E3/t51.2885-15/e35/16465809_250690762054318_3511085951449300992_n.jpg%22%7D%7D,%22created_time%22:%221486979761%22,%22caption%22:%7B%22id%22:%2217871997672054511%22,%22text%22:%22#grey%22,%22created_time%22:%221486979761%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQcpDaRjPHI/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449213582977586747_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/4743657e36365ba6c1ac0467e2130e33/5BC55040/t51.2885-15/s150x150/e35/16230129_412244525787323_8327440317015916544_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/023f4d233b0c06509e8bd9a203b6bb93/5BE98F07/t51.2885-15/s320x320/e35/16230129_412244525787323_8327440317015916544_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/8b3e599e07b4b8a16ba21c15f5fe4432/5BE67044/t51.2885-15/s640x640/sh0.08/e35/16230129_412244525787323_8327440317015916544_n.jpg%22%7D%7D,%22created_time%22:%221486979743%22,%22caption%22:%7B%22id%22:%2217860638247126427%22,%22text%22:%22#grey%22,%22created_time%22:%221486979743%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQcpBNRDNY7/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449213408486190588_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/84c19a3a16bf38d5b24eed6831a4a381/5BE898F1/t51.2885-15/s150x150/e35/16230916_384944801866922_6021622450540773376_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/8e0897d234c790f4b609d0ee818e8db9/5BC8A3B6/t51.2885-15/s320x320/e35/16230916_384944801866922_6021622450540773376_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/90fb4861aebdf6ea5c5b65ae603bd920/5BB21EF5/t51.2885-15/s640x640/sh0.08/e35/16230916_384944801866922_6021622450540773376_n.jpg%22%7D%7D,%22created_time%22:%221486979722%22,%22caption%22:%7B%22id%22:%2217861192194129545%22,%22text%22:%22#grey%22,%22created_time%22:%221486979722%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQco-qwjW38/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449213228827471746_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/dab9300d801dd0a0f9d47eef56b7ae1e/5BE5032E/t51.2885-15/s150x150/e35/16583333_1749123868732976_685928632475975680_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/749d679b7a91e3ca68bc552393e76df8/5BCF4669/t51.2885-15/s320x320/e35/16583333_1749123868732976_685928632475975680_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/c4a815ca38a42ea5a6f4baad20f6b4df/5BE2C42A/t51.2885-15/s640x640/sh0.08/e35/16583333_1749123868732976_685928632475975680_n.jpg%22%7D%7D,%22created_time%22:%221486979701%22,%22caption%22:%7B%22id%22:%2217872249300028622%22,%22text%22:%22#grey%22,%22created_time%22:%221486979701%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQco8DcDu-C/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449213032802329864_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/53a11c6564ed0a0c77bb7bc1a293b7db/5BEA0608/t51.2885-15/s150x150/e35/16465110_610020022521080_2360621000632041472_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/5ec1b3847f255a1819f348854e39fd90/5BAD134F/t51.2885-15/s320x320/e35/16465110_610020022521080_2360621000632041472_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/0e3706dced2dafa12377c607094272da/5BB7DE0C/t51.2885-15/s640x640/sh0.08/e35/16465110_610020022521080_2360621000632041472_n.jpg%22%7D%7D,%22created_time%22:%221486979677%22,%22caption%22:%7B%22id%22:%2217872934536034290%22,%22text%22:%22#grey%22,%22created_time%22:%221486979677%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:0%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQco5M4DKUI/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221449212851197346020_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/8bd6d1c0b4c860a24318043ea4139096/5BCA3DE2/t51.2885-15/s150x150/e35/16465126_209239312879053_8635515207306706944_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/8f949f31bf4f80abd4967927cc542f65/5BE836A5/t51.2885-15/s320x320/e35/16465126_209239312879053_8635515207306706944_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/7c5f47827b9c19b03899b0bd19744b4b/5BB155E6/t51.2885-15/s640x640/sh0.08/e35/16465126_209239312879053_8635515207306706944_n.jpg%22%7D%7D,%22created_time%22:%221486979656%22,%22caption%22:%7B%22id%22:%2217860860658126913%22,%22text%22:%22#grey%22,%22created_time%22:%221486979656%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:2%7D,%22tags%22:%5B%22grey%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BQco2jvjIDk/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221424663083951604568_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/87a95fc9a19a0278b3646935bd8e8de9/5BD0EDDC/t51.2885-15/s150x150/e35/15802561_356443338044357_583570215963459584_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/ea5e97d6ac6c9ea9139f91984a3b2416/5BEC5321/t51.2885-15/s320x320/e35/15802561_356443338044357_583570215963459584_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/2e68e4a9a0152ae3f4690257e45d7f6a/5BCA3BFD/t51.2885-15/s640x640/sh0.08/e35/15802561_356443338044357_583570215963459584_n.jpg%22%7D%7D,%22created_time%22:%221484053095%22,%22caption%22:%7B%22id%22:%2217869053034041436%22,%22text%22:%22#moveco%22,%22created_time%22:%221484053095%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22moveco%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BPFa4bTjENY/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%7D,%7B%22id%22:%221424662934282094662_3905738328%22,%22user%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D,%22images%22:%7B%22thumbnail%22:%7B%22width%22:150,%22height%22:150,%22url%22:%22https://scontent.cdninstagram.com/vp/292530f89805f7e12c19dabd7466769e/5BC57E27/t51.2885-15/s150x150/e35/15801993_1235075323249902_8542633210931052544_n.jpg%22%7D,%22low_resolution%22:%7B%22width%22:320,%22height%22:320,%22url%22:%22https://scontent.cdninstagram.com/vp/264d875ddc85d25e20ea2703baa63344/5BB17717/t51.2885-15/s320x320/e35/15801993_1235075323249902_8542633210931052544_n.jpg%22%7D,%22standard_resolution%22:%7B%22width%22:640,%22height%22:640,%22url%22:%22https://scontent.cdninstagram.com/vp/9108849468158763daa4d6de78136c19/5BE56F5A/t51.2885-15/s640x640/sh0.08/e35/15801993_1235075323249902_8542633210931052544_n.jpg%22%7D%7D,%22created_time%22:%221484053077%22,%22caption%22:%7B%22id%22:%2217868815188016187%22,%22text%22:%22#moveco%22,%22created_time%22:%221484053077%22,%22from%22:%7B%22id%22:%223905738328%22,%22full_name%22:%22%22,%22profile_picture%22:%22https://scontent.cdninstagram.com/vp/9752391b0ad256ac5267aabab86b443f/5BE3B7EA/t51.2885-19/14368980_608263352684872_1727337897_a.jpg%22,%22username%22:%22modern_web_templates%22%7D%7D,%22user_has_liked%22:false,%22likes%22:%7B%22count%22:1%7D,%22tags%22:%5B%22moveco%22%5D,%22filter%22:%22Normal%22,%22comments%22:%7B%22count%22:0%7D,%22type%22:%22image%22,%22link%22:%22https://www.instagram.com/p/BPFa2P6jMhG/%22,%22location%22:null,%22attribution%22:null,%22users_in_photo%22:%5B%5D%","no");
INSERT INTO `wp_options` VALUES("21312","sb_expired_tokens","a:1:{i:0;s:51:\"3905738328.60c782d.b65ed3f058d64e6ab32c110c6ac12d9b\";}","yes");
INSERT INTO `wp_options` VALUES("21343","wp_user_roles","a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:125:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:24:\"edit_booked_appointments\";b:1;s:21:\"manage_booked_options\";b:1;s:16:\"aiosp_manage_seo\";b:1;s:13:\"wplc_ma_agent\";b:1;s:24:\"edit_wplc_quick_response\";b:1;s:30:\"edit_other_wplc_quick_response\";b:1;s:27:\"publish_wplc_quick_response\";b:1;s:24:\"read_wplc_quick_response\";b:1;s:32:\"read_private_wplc_quick_response\";b:1;s:26:\"delete_wplc_quick_response\";b:1;s:10:\"loco_admin\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:20:\"booked_booking_agent\";a:2:{s:4:\"name\";s:13:\"Booking Agent\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:24:\"edit_booked_appointments\";b:1;}}s:10:\"translator\";a:2:{s:4:\"name\";s:10:\"Translator\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:10:\"loco_admin\";b:1;}}}","yes");
INSERT INTO `wp_options` VALUES("21344","admin_email","mafeshmashakl@gmail.com","yes");
INSERT INTO `wp_options` VALUES("21345","cron","a:13:{i:1572200467;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1572208945;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1572209378;a:1:{s:27:\"check_plugin_updates-booked\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1572210000;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1572252306;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1572252618;a:1:{s:24:\"wp_fastest_cache_Preload\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:15:\"everyfiveminute\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1572255745;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1572265267;a:1:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1572265277;a:1:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1572268012;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1572276067;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1572652800;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}s:7:\"version\";i:2;}","yes");
INSERT INTO `wp_options` VALUES("21346","mailserver_login","login@example.com","yes");
INSERT INTO `wp_options` VALUES("21347","mailserver_pass","password","yes");
INSERT INTO `wp_options` VALUES("21348","mailserver_port","110","yes");
INSERT INTO `wp_options` VALUES("21349","mailserver_url","mail.example.com","yes");
INSERT INTO `wp_options` VALUES("21350","WPLANG","ar","yes");
INSERT INTO `wp_options` VALUES("21351","recently_edited","a:3:{i:0;s:92:\"/home/taherabuzaid1/public_html/atheltree.com/ar/wp-content/themes/dotdigital/css/custom.css\";i:1;s:87:\"/home/taherabuzaid1/public_html/atheltree.com/ar/wp-content/themes/dotdigital/style.css\";i:3;s:0:\"\";}","no");
INSERT INTO `wp_options` VALUES("21352","current_theme","DotDigital","yes");
INSERT INTO `wp_options` VALUES("21353","home","http://www.atheltree.com/ar","yes");
INSERT INTO `wp_options` VALUES("21354","siteurl","http://www.atheltree.com/ar","yes");
INSERT INTO `wp_options` VALUES("21355","date_format","j F، Y","yes");
INSERT INTO `wp_options` VALUES("21356","links_updated_date_format","j F, Y g:i a","yes");
INSERT INTO `wp_options` VALUES("21357","time_format","g:i a","yes");
INSERT INTO `wp_options` VALUES("21358","timezone_string","","yes");
INSERT INTO `wp_options` VALUES("21359","gmt_offset","3","yes");
INSERT INTO `wp_options` VALUES("21360","start_of_week","6","yes");
INSERT INTO `wp_options` VALUES("21362","ping_sites","http://rpc.pingomatic.com/","yes");
INSERT INTO `wp_options` VALUES("21363","upload_path","","yes");
INSERT INTO `wp_options` VALUES("21364","upload_url_path","","yes");
INSERT INTO `wp_options` VALUES("21365","uploads_use_yearmonth_folders","1","yes");
INSERT INTO `wp_options` VALUES("21366","users_can_register","0","yes");
INSERT INTO `wp_options` VALUES("21367","use_smilies","1","yes");
INSERT INTO `wp_options` VALUES("21368","use_trackback","0","yes");
INSERT INTO `wp_options` VALUES("21369","blogname","اثيل","yes");
INSERT INTO `wp_options` VALUES("21370","blogdescription","لتطبيقات الجوال والتصميم والتطوير البرمجى والتسويق فى المملكة العربية السعودية","yes");
INSERT INTO `wp_options` VALUES("21371","blog_charset","UTF-8","yes");
INSERT INTO `wp_options` VALUES("21372","active_plugins","a:18:{i:0;s:57:\"accesspress-social-counter/accesspress-social-counter.php\";i:1;s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";i:2;s:17:\"booked/booked.php\";i:3;s:31:\"envato-market/envato-market.php\";i:4;s:33:\"instagram-feed/instagram-feed.php\";i:5;s:23:\"loco-translate/loco.php\";i:6;s:25:\"mwt-addons/mwt-addons.php\";i:7;s:31:\"mwt-developer/mwt-developer.php\";i:8;s:47:\"mwt-unyson-extensions/mwt-unyson-extensions.php\";i:9;s:24:\"rev-slider/revslider.php\";i:10;s:26:\"snazzy-maps/snazzymaps.php\";i:11;s:34:\"tidio-live-chat/tidio-elements.php\";i:12;s:17:\"unyson/unyson.php\";i:13;s:53:\"velvet-blues-update-urls/velvet-blues-update-urls.php\";i:14;s:41:\"widget-css-classes/widget-css-classes.php\";i:16;s:35:\"wp-fastest-cache/wpFastestCache.php\";i:17;s:19:\"wp-scss/wp-scss.php\";i:18;s:33:\"wp-user-avatar/wp-user-avatar.php\";}","yes");
INSERT INTO `wp_options` VALUES("21373","uninstall_plugins","a:2:{s:33:\"instagram-feed/instagram-feed.php\";s:22:\"sb_instagram_uninstall\";s:49:\"gr-order-category-post/gr-order-category-post.php\";s:29:\"gr_order_category_post_remove\";}","no");
INSERT INTO `wp_options` VALUES("21374","recently_activated","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("21375","moderation_notify","1","yes");
INSERT INTO `wp_options` VALUES("21376","blacklist_keys","","no");
INSERT INTO `wp_options` VALUES("21377","comment_registration","","yes");
INSERT INTO `wp_options` VALUES("21378","default_role","subscriber","yes");
INSERT INTO `wp_options` VALUES("21379","blog_public","1","yes");
INSERT INTO `wp_options` VALUES("21381","template","dotdigital","yes");
INSERT INTO `wp_options` VALUES("21382","stylesheet","dotdigital","yes");
INSERT INTO `wp_options` VALUES("21383","fw:ext:backups:pending_task_collections","a:0:{}","no");
INSERT INTO `wp_options` VALUES("21384","fw:ext:backups-demo:active-demo","a:2:{s:2:\"id\";s:15:\"dotdigital-demo\";s:6:\"result\";N;}","no");
INSERT INTO `wp_options` VALUES("21385","revslider_servers","a:7:{i:0;s:22:\"themepunch-ext-a.tools\";i:1;s:22:\"themepunch-ext-a.tools\";i:2;s:22:\"themepunch-ext-a.tools\";i:3;s:22:\"themepunch-ext-b.tools\";i:4;s:22:\"themepunch-ext-b.tools\";i:5;s:22:\"themepunch-ext-b.tools\";i:6;s:16:\"themepunch.tools\";}","yes");
INSERT INTO `wp_options` VALUES("21386","revslider_server_refresh","1573668536","yes");
INSERT INTO `wp_options` VALUES("21387","revslider-update-check-short","1572457110","yes");
INSERT INTO `wp_options` VALUES("21388","revslider-templates-check","1572252782","yes");
INSERT INTO `wp_options` VALUES("21392","revslider-library-check","1572252809","yes");
INSERT INTO `wp_options` VALUES("21393","revslider_checktables","1","yes");
INSERT INTO `wp_options` VALUES("21394","rs_tables_created","1","yes");
INSERT INTO `wp_options` VALUES("21395","revslider_table_version","1.0.6","yes");
INSERT INTO `wp_options` VALUES("21396","rs-library","a:2:{s:7:\"objects\";a:179:{i:238;a:14:{s:2:\"id\";s:3:\"238\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:237;a:14:{s:2:\"id\";s:3:\"237\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:236;a:14:{s:2:\"id\";s:3:\"236\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:235;a:14:{s:2:\"id\";s:3:\"235\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:234;a:14:{s:2:\"id\";s:3:\"234\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:233;a:14:{s:2:\"id\";s:3:\"233\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:232;a:14:{s:2:\"id\";s:3:\"232\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:231;a:14:{s:2:\"id\";s:3:\"231\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:230;a:14:{s:2:\"id\";s:3:\"230\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:229;a:14:{s:2:\"id\";s:3:\"229\";s:4:\"type\";s:1:\"3\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";}i:198;a:13:{s:2:\"id\";s:3:\"198\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";}i:197;a:13:{s:2:\"id\";s:3:\"197\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:196;a:13:{s:2:\"id\";s:3:\"196\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:195;a:13:{s:2:\"id\";s:3:\"195\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:194;a:13:{s:2:\"id\";s:3:\"194\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:193;a:13:{s:2:\"id\";s:3:\"193\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:192;a:13:{s:2:\"id\";s:3:\"192\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:191;a:13:{s:2:\"id\";s:3:\"191\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:190;a:13:{s:2:\"id\";s:3:\"190\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:189;a:13:{s:2:\"id\";s:3:\"189\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:188;a:13:{s:2:\"id\";s:3:\"188\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";}i:187;a:13:{s:2:\"id\";s:3:\"187\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";}i:186;a:13:{s:2:\"id\";s:3:\"186\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:185;a:13:{s:2:\"id\";s:3:\"185\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:184;a:13:{s:2:\"id\";s:3:\"184\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:183;a:13:{s:2:\"id\";s:3:\"183\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:182;a:13:{s:2:\"id\";s:3:\"182\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:181;a:13:{s:2:\"id\";s:3:\"181\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:180;a:13:{s:2:\"id\";s:3:\"180\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:179;a:13:{s:2:\"id\";s:3:\"179\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:177;a:13:{s:2:\"id\";s:3:\"177\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:175;a:13:{s:2:\"id\";s:3:\"175\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:174;a:13:{s:2:\"id\";s:3:\"174\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:173;a:13:{s:2:\"id\";s:3:\"173\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:172;a:13:{s:2:\"id\";s:3:\"172\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:171;a:13:{s:2:\"id\";s:3:\"171\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:170;a:13:{s:2:\"id\";s:3:\"170\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:169;a:13:{s:2:\"id\";s:3:\"169\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:168;a:13:{s:2:\"id\";s:3:\"168\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:167;a:13:{s:2:\"id\";s:3:\"167\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:166;a:13:{s:2:\"id\";s:3:\"166\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:165;a:13:{s:2:\"id\";s:3:\"165\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:164;a:13:{s:2:\"id\";s:3:\"164\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:163;a:13:{s:2:\"id\";s:3:\"163\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:162;a:13:{s:2:\"id\";s:3:\"162\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:161;a:13:{s:2:\"id\";s:3:\"161\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:160;a:13:{s:2:\"id\";s:3:\"160\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:159;a:13:{s:2:\"id\";s:3:\"159\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:158;a:13:{s:2:\"id\";s:3:\"158\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:157;a:13:{s:2:\"id\";s:3:\"157\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:156;a:13:{s:2:\"id\";s:3:\"156\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:155;a:13:{s:2:\"id\";s:3:\"155\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:154;a:13:{s:2:\"id\";s:3:\"154\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:153;a:13:{s:2:\"id\";s:3:\"153\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:152;a:13:{s:2:\"id\";s:3:\"152\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:151;a:13:{s:2:\"id\";s:3:\"151\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:150;a:13:{s:2:\"id\";s:3:\"150\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:149;a:13:{s:2:\"id\";s:3:\"149\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:148;a:13:{s:2:\"id\";s:3:\"148\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:147;a:13:{s:2:\"id\";s:3:\"147\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:146;a:13:{s:2:\"id\";s:3:\"146\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:145;a:13:{s:2:\"id\";s:3:\"145\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:144;a:13:{s:2:\"id\";s:3:\"144\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:143;a:13:{s:2:\"id\";s:3:\"143\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:142;a:13:{s:2:\"id\";s:3:\"142\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:141;a:13:{s:2:\"id\";s:3:\"141\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:140;a:13:{s:2:\"id\";s:3:\"140\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:139;a:13:{s:2:\"id\";s:3:\"139\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:138;a:13:{s:2:\"id\";s:3:\"138\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:137;a:13:{s:2:\"id\";s:3:\"137\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:136;a:13:{s:2:\"id\";s:3:\"136\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:135;a:13:{s:2:\"id\";s:3:\"135\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:134;a:13:{s:2:\"id\";s:3:\"134\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:133;a:13:{s:2:\"id\";s:3:\"133\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:132;a:13:{s:2:\"id\";s:3:\"132\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:131;a:13:{s:2:\"id\";s:3:\"131\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:130;a:13:{s:2:\"id\";s:3:\"130\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:129;a:13:{s:2:\"id\";s:3:\"129\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:128;a:13:{s:2:\"id\";s:3:\"128\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:127;a:13:{s:2:\"id\";s:3:\"127\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:126;a:13:{s:2:\"id\";s:3:\"126\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:125;a:13:{s:2:\"id\";s:3:\"125\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:124;a:13:{s:2:\"id\";s:3:\"124\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:123;a:13:{s:2:\"id\";s:3:\"123\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:122;a:13:{s:2:\"id\";s:3:\"122\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:121;a:13:{s:2:\"id\";s:3:\"121\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:120;a:13:{s:2:\"id\";s:3:\"120\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:119;a:13:{s:2:\"id\";s:3:\"119\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:118;a:13:{s:2:\"id\";s:3:\"118\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:117;a:13:{s:2:\"id\";s:3:\"117\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:116;a:13:{s:2:\"id\";s:3:\"116\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:115;a:13:{s:2:\"id\";s:3:\"115\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:114;a:13:{s:2:\"id\";s:3:\"114\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:113;a:13:{s:2:\"id\";s:3:\"113\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:112;a:13:{s:2:\"id\";s:3:\"112\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:111;a:13:{s:2:\"id\";s:3:\"111\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:110;a:13:{s:2:\"id\";s:3:\"110\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:109;a:13:{s:2:\"id\";s:3:\"109\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:108;a:13:{s:2:\"id\";s:3:\"108\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:107;a:13:{s:2:\"id\";s:3:\"107\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:106;a:13:{s:2:\"id\";s:3:\"106\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:105;a:13:{s:2:\"id\";s:3:\"105\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:104;a:13:{s:2:\"id\";s:3:\"104\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:103;a:13:{s:2:\"id\";s:3:\"103\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:102;a:13:{s:2:\"id\";s:3:\"102\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:101;a:13:{s:2:\"id\";s:3:\"101\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:100;a:13:{s:2:\"id\";s:3:\"100\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:99;a:13:{s:2:\"id\";s:2:\"99\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:98;a:13:{s:2:\"id\";s:2:\"98\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:97;a:13:{s:2:\"id\";s:2:\"97\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:96;a:13:{s:2:\"id\";s:2:\"96\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:95;a:13:{s:2:\"id\";s:2:\"95\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:94;a:13:{s:2:\"id\";s:2:\"94\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:93;a:13:{s:2:\"id\";s:2:\"93\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:92;a:13:{s:2:\"id\";s:2:\"92\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:91;a:13:{s:2:\"id\";s:2:\"91\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:90;a:13:{s:2:\"id\";s:2:\"90\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:89;a:13:{s:2:\"id\";s:2:\"89\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:88;a:13:{s:2:\"id\";s:2:\"88\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:87;a:13:{s:2:\"id\";s:2:\"87\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:86;a:13:{s:2:\"id\";s:2:\"86\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:85;a:13:{s:2:\"id\";s:2:\"85\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:84;a:13:{s:2:\"id\";s:2:\"84\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:83;a:13:{s:2:\"id\";s:2:\"83\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:82;a:13:{s:2:\"id\";s:2:\"82\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:81;a:13:{s:2:\"id\";s:2:\"81\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:80;a:13:{s:2:\"id\";s:2:\"80\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:79;a:13:{s:2:\"id\";s:2:\"79\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:78;a:13:{s:2:\"id\";s:2:\"78\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:77;a:13:{s:2:\"id\";s:2:\"77\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:76;a:13:{s:2:\"id\";s:2:\"76\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:75;a:13:{s:2:\"id\";s:2:\"75\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:74;a:13:{s:2:\"id\";s:2:\"74\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:73;a:13:{s:2:\"id\";s:2:\"73\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:72;a:13:{s:2:\"id\";s:2:\"72\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:71;a:13:{s:2:\"id\";s:2:\"71\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:70;a:13:{s:2:\"id\";s:2:\"70\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:69;a:13:{s:2:\"id\";s:2:\"69\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:68;a:13:{s:2:\"id\";s:2:\"68\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:67;a:13:{s:2:\"id\";s:2:\"67\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:66;a:13:{s:2:\"id\";s:2:\"66\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:65;a:13:{s:2:\"id\";s:2:\"65\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:64;a:13:{s:2:\"id\";s:2:\"64\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:63;a:13:{s:2:\"id\";s:2:\"63\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:62;a:13:{s:2:\"id\";s:2:\"62\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:49;a:13:{s:2:\"id\";s:2:\"49\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:48;a:13:{s:2:\"id\";s:2:\"48\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:47;a:13:{s:2:\"id\";s:2:\"47\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:46;a:13:{s:2:\"id\";s:2:\"46\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:45;a:13:{s:2:\"id\";s:2:\"45\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:44;a:13:{s:2:\"id\";s:2:\"44\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:43;a:13:{s:2:\"id\";s:2:\"43\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:42;a:13:{s:2:\"id\";s:2:\"42\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:41;a:13:{s:2:\"id\";s:2:\"41\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:40;a:13:{s:2:\"id\";s:2:\"40\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:39;a:13:{s:2:\"id\";s:2:\"39\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:38;a:13:{s:2:\"id\";s:2:\"38\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:37;a:13:{s:2:\"id\";s:2:\"37\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:36;a:13:{s:2:\"id\";s:2:\"36\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:35;a:13:{s:2:\"id\";s:2:\"35\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:34;a:13:{s:2:\"id\";s:2:\"34\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:33;a:13:{s:2:\"id\";s:2:\"33\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:32;a:13:{s:2:\"id\";s:2:\"32\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:31;a:13:{s:2:\"id\";s:2:\"31\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:30;a:13:{s:2:\"id\";s:2:\"30\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:29;a:13:{s:2:\"id\";s:2:\"29\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:28;a:13:{s:2:\"id\";s:2:\"28\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:27;a:13:{s:2:\"id\";s:2:\"27\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:26;a:13:{s:2:\"id\";s:2:\"26\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:25;a:13:{s:2:\"id\";s:2:\"25\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:24;a:13:{s:2:\"id\";s:2:\"24\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:23;a:13:{s:2:\"id\";s:2:\"23\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:22;a:13:{s:2:\"id\";s:2:\"22\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:21;a:13:{s:2:\"id\";s:2:\"21\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:20;a:13:{s:2:\"id\";s:2:\"20\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:11;a:13:{s:2:\"id\";s:2:\"11\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:10;a:13:{s:2:\"id\";s:2:\"10\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:9;a:13:{s:2:\"id\";s:1:\"9\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:8;a:13:{s:2:\"id\";s:1:\"8\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"data\";s:0:\"\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:14:\"plugin_version\";s:0:\"\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}","no");
INSERT INTO `wp_options` VALUES("21397","revslider_update_version","5.2.5.5","yes");
INSERT INTO `wp_options` VALUES("21400","_transient_woocommerce_webhook_ids","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("21401","widget_rev-slider-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("21402","_transient_wc_attribute_taxonomies","a:2:{i:0;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"1\";s:14:\"attribute_name\";s:5:\"color\";s:15:\"attribute_label\";s:5:\"color\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}i:1;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"2\";s:14:\"attribute_name\";s:4:\"size\";s:15:\"attribute_label\";s:4:\"size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}}","yes");
INSERT INTO `wp_options` VALUES("21405","envato_market","a:1:{s:17:\"installed_version\";s:5:\"2.0.1\";}","yes");
INSERT INTO `wp_options` VALUES("21406","_transient_shipping-transient-version","1538385430","yes");
INSERT INTO `wp_options` VALUES("21461","woocommerce_db_version","3.4.5","yes");
INSERT INTO `wp_options` VALUES("21475","revslider-valid-notice","false","yes");
INSERT INTO `wp_options` VALUES("21517","fw:bt:f:page-builder:3ea3fd32c5ff99403139758c3e38d273","a:3:{s:5:\"title\";s:12:\"service-page\";s:4:\"json\";s:8900:\"[{\"type\":\"section\",\"atts\":{\"section_name\":\"Service\",\"is_fullwidth\":false,\"horizontal_paddings\":\"\",\"background_color\":\"ls\",\"top_padding\":\"section_padding_top_100\",\"bottom_padding\":\"section_padding_bottom_100\",\"columns_padding\":\"columns_padding_30\",\"background_image\":{\"type\":\"custom\",\"custom\":\"\",\"predefined\":\"\",\"data\":{\"icon\":\"\",\"css\":[]}},\"background_cover\":false,\"parallax\":false,\"section_overlay\":false,\"is_table\":false,\"section_id\":\"\",\"custom_class\":\"\",\"enable_onehalf_media\":\"\",\"side_media_image\":[],\"side_media_link\":\"\",\"side_media_video\":\"\",\"side_media_position\":\"image_cover_left\"},\"_items\":[{\"type\":\"column\",\"width\":\"1_2\",\"atts\":{\"column_align\":\"\",\"column_padding\":\"\",\"background_color\":\"\",\"background_image\":{\"type\":\"custom\",\"custom\":\"\",\"predefined\":\"\",\"data\":{\"icon\":\"\",\"css\":[]}},\"background_cover\":false,\"column_animation\":\"fadeInRight\",\"custom_class\":\"float-right-text\"},\"_items\":[{\"type\":\"simple\",\"shortcode\":\"divider\",\"atts\":{\"style\":{\"ruler_type\":\"space\",\"space\":{\"height\":\"5\"}},\"responsive\":{\"hidden_lg\":{\"selected\":\"yes\"},\"hidden_md\":{\"selected\":\"yes\"},\"hidden_sm\":{\"selected\":\"yes\"},\"hidden_xs\":{\"selected\":\"yes\"}}},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"special_heading\",\"atts\":{\"heading_align\":\"text-right\",\"headings\":[{\"heading_tag\":\"h6\",\"heading_text\":\"التجارة الإلكترونية\",\"heading_text_color\":\"darkgrey\",\"heading_text_weight\":\"medium\",\"heading_text_transform\":\"text-transform-none\",\"heading_custom_class\":\"\"}]},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"divider\",\"atts\":{\"style\":{\"ruler_type\":\"space\",\"space\":{\"height\":\"30\"}},\"responsive\":{\"hidden_lg\":{\"selected\":\"yes\"},\"hidden_md\":{\"selected\":\"yes\"},\"hidden_sm\":{\"selected\":\"yes\"},\"hidden_xs\":{\"selected\":\"yes\"}}},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"text_block\",\"atts\":{\"text\":\"يقوم الكثير من رجال الأعمال بقيادة أعمالهم من خلال التجارة الإلكترونية لأنها تساعدهم على إضافة الأرباح وتعززعائد الاستثمار. واليوم تتبنى الشركات الكبرى بعض هذه الحلول الحديثة لأعمالها للتأكد من أنها ستحصل على ما تبحث عنه.
تصميمات حديثة
وسائل دفع متنوعة
التكامل مع أكثر من وسيلة شحن
قدرة عالية على التطويع مع أنظمة العمل
سهولة ادارة المتاجر
\",\"text_custom_class\":\"\"},\"_items\":[]}]},{\"type\":\"column\",\"width\":\"1_2\",\"atts\":{\"column_align\":\"\",\"column_padding\":\"\",\"background_color\":\"\",\"background_image\":{\"type\":\"custom\",\"custom\":\"\",\"predefined\":\"\",\"data\":{\"icon\":\"\",\"css\":[]}},\"background_cover\":false,\"column_animation\":\"fadeInLeft\",\"custom_class\":\"\"},\"_items\":[{\"type\":\"simple\",\"shortcode\":\"divider\",\"atts\":{\"style\":{\"ruler_type\":\"space\",\"space\":{\"height\":\"5\"}},\"responsive\":{\"hidden_lg\":{\"selected\":\"yes\"},\"hidden_md\":{\"selected\":\"yes\"},\"hidden_sm\":{\"selected\":\"yes\"},\"hidden_xs\":{\"selected\":\"yes\"}}},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"media_image\",\"atts\":{\"image\":{\"attachment_id\":\"6860\",\"url\":\"//localhost/beta/wp-content/uploads/2018/03/img_3-1.jpg\"},\"width\":\"\",\"height\":\"\",\"link\":\"\",\"target\":\"_self\",\"responsive\":{\"hidden_lg\":{\"selected\":\"yes\"},\"hidden_md\":{\"selected\":\"yes\"},\"hidden_sm\":{\"selected\":\"yes\"},\"hidden_xs\":{\"selected\":\"yes\"}},\"custom_class\":\"\"},\"_items\":[]}]},{\"type\":\"column\",\"width\":\"1_1\",\"atts\":{\"column_align\":\"\",\"column_padding\":\"\",\"background_color\":\"\",\"background_image\":{\"type\":\"custom\",\"custom\":\"\",\"predefined\":\"\",\"data\":{\"icon\":\"\",\"css\":[]}},\"background_cover\":false,\"column_animation\":\"fadeInUp\",\"custom_class\":\"\"},\"fw-visibility\":false,\"_items\":[{\"type\":\"simple\",\"shortcode\":\"divider\",\"atts\":{\"style\":{\"ruler_type\":\"space\",\"space\":{\"height\":\"25\"}},\"responsive\":{\"hidden_lg\":{\"selected\":\"yes\"},\"hidden_md\":{\"selected\":\"yes\"},\"hidden_sm\":{\"selected\":\"yes\"},\"hidden_xs\":{\"selected\":\"yes\"}}},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"text_block\",\"atts\":{\"text\":\"Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna. Aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
- It can answer common questions
- It can demonstrate how a product or service works
- It can discuss current trends
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur.
\",\"text_custom_class\":\"\"},\"_items\":[]}]}]},{\"type\":\"section\",\"atts\":{\"section_name\":\"Testimonials\",\"is_fullwidth\":false,\"horizontal_paddings\":\"horizontal-paddings-0\",\"background_color\":\"ls ms\",\"top_padding\":\"section_padding_top_100\",\"bottom_padding\":\"section_padding_bottom_150\",\"columns_padding\":\"columns_padding_15\",\"background_image\":{\"type\":\"custom\",\"custom\":\"\",\"predefined\":\"\",\"data\":{\"icon\":\"\",\"css\":[]}},\"background_cover\":false,\"parallax\":false,\"section_overlay\":false,\"is_table\":false,\"section_id\":\"\",\"custom_class\":\"\",\"enable_onehalf_media\":\"\",\"side_media_image\":[],\"side_media_link\":\"\",\"side_media_video\":\"\",\"side_media_position\":\"image_cover_left\"},\"fw-visibility\":false,\"_items\":[{\"type\":\"column\",\"width\":\"1_1\",\"atts\":{\"column_align\":\"\",\"column_padding\":\"\",\"background_color\":\"\",\"background_image\":\"\",\"background_cover\":false,\"column_animation\":\"\",\"custom_class\":\"\"},\"_items\":[{\"type\":\"simple\",\"shortcode\":\"divider\",\"atts\":{\"style\":{\"ruler_type\":\"space\",\"space\":{\"height\":\"5\"}},\"responsive\":{\"hidden_lg\":{\"selected\":\"yes\"},\"hidden_md\":{\"selected\":\"yes\"},\"hidden_sm\":{\"selected\":\"yes\"},\"hidden_xs\":{\"selected\":\"yes\"}}},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"special_heading\",\"atts\":{\"heading_align\":\"text-center\",\"headings\":[{\"heading_tag\":\"h4\",\"heading_text\":\"Testimonials\",\"heading_text_color\":\"\",\"heading_text_weight\":\"medium\",\"heading_text_transform\":\"text-transform-none\",\"heading_custom_class\":\"\"}]},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"divider\",\"atts\":{\"style\":{\"ruler_type\":\"space\",\"space\":{\"height\":\"35\"}},\"responsive\":{\"hidden_lg\":{\"selected\":\"yes\"},\"hidden_md\":{\"selected\":\"yes\"},\"hidden_sm\":{\"selected\":\"yes\"},\"hidden_xs\":{\"selected\":\"yes\"}}},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"testimonials\",\"atts\":{\"title\":\"\",\"testimonials_group\":{\"testimonials_layout\":\"testimonials_carousel\",\"testimonials_carousel\":{\"testimonials\":[{\"author_avatar\":{\"attachment_id\":\"6087\",\"url\":\"//localhost/beta/wp-content/uploads/2018/02/face_1.jpg\"},\"author_name\":\"Josephine B. Anderson\",\"author_job\":\"\",\"site_name\":\"\",\"site_url\":\"\",\"content\":\"This guys are awesome! It is hard to find a web design company who can actually understand what you need.\"},{\"author_avatar\":{\"attachment_id\":\"6088\",\"url\":\"//localhost/beta/wp-content/uploads/2018/02/face_2.jpg\"},\"author_name\":\"George M. Baty\",\"author_job\":\"\",\"site_name\":\"\",\"site_url\":\"\",\"content\":\"I needed more leads for my services. PPC, banners of maybe even broschures. They made an analysis of my existing site.\"},{\"author_avatar\":{\"attachment_id\":\"6089\",\"url\":\"//localhost/beta/wp-content/uploads/2018/02/fece_3.jpg\"},\"author_name\":\"Jeffrey P. McAllister\",\"author_job\":\"\",\"site_name\":\"\",\"site_url\":\"\",\"content\":\"I highly recommend this company for all. I’m very happy with the new redesigned and restructured website.\"},{\"author_avatar\":{\"attachment_id\":\"6090\",\"url\":\"//localhost/beta/wp-content/uploads/2018/02/face_4.jpg\"},\"author_name\":\"Hilary Stilwell\",\"author_job\":\"\",\"site_name\":\"\",\"site_url\":\"\",\"content\":\"This guys are awesome! It is hard to find a web design company who can actually listen and understand what you need. I’m 100% satisfied with this guys.\"}]},\"testimonials_single_carousel\":{\"testimonials\":[]},\"testimonials_grid\":{\"testimonials\":[]},\"testimonials_grid_2\":{\"testimonials\":[]}}},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"divider\",\"atts\":{\"style\":{\"ruler_type\":\"space\",\"space\":{\"height\":\"35\"}},\"responsive\":{\"hidden_lg\":{\"selected\":\"yes\"},\"hidden_md\":{\"selected\":\"yes\"},\"hidden_sm\":{\"selected\":\"yes\"},\"hidden_xs\":{\"selected\":\"yes\"}}},\"_items\":[]}]}]}]\";s:7:\"created\";i:1538399325;}","no");
INSERT INTO `wp_options` VALUES("21610","fw:bt:s:page-builder:7bb795562dc41ea14e5f9f2eceef061a","a:3:{s:5:\"title\";s:11:\"map-section\";s:4:\"json\";s:1332:\"{\"type\":\"section\",\"atts\":{\"section_name\":\"Map\",\"is_fullwidth\":true,\"horizontal_paddings\":\"horizontal-paddings-0\",\"background_color\":\"ls\",\"top_padding\":\"section_padding_top_0\",\"bottom_padding\":\"section_padding_bottom_0\",\"columns_padding\":\"columns_padding_0\",\"background_image\":{\"type\":\"custom\",\"custom\":\"\",\"predefined\":\"\",\"data\":{\"icon\":\"\",\"css\":[]}},\"background_cover\":false,\"parallax\":false,\"section_overlay\":false,\"is_table\":false,\"section_id\":\"\",\"custom_class\":\"\",\"enable_onehalf_media\":\"\",\"side_media_image\":[],\"side_media_link\":\"\",\"side_media_video\":\"\",\"side_media_position\":\"image_cover_left\"},\"_items\":[{\"type\":\"simple\",\"shortcode\":\"map\",\"atts\":{\"data_provider\":{\"population_method\":\"custom\",\"custom\":{\"locations\":[{\"location\":{\"location\":\"Grenier Street, Spring Hill, Queensland, Australia, 4000\",\"venue\":\"Conference Hall Christian Assembly\",\"address\":\"Grenier Street\",\"city\":\"Spring Hill\",\"state\":\"Queensland\",\"country\":\"Australia\",\"zip\":\"4000\",\"coordinates\":{\"lat\":-27.4570546,\"lng\":153.0297634}},\"title\":\"\",\"description\":\"\",\"url\":\"\",\"thumb\":\"\"}]},\"events\":{\"events_category\":\"\"}},\"gmap-key\":\"AIzaSyDTwYSMRGuTsmfl2z_zZDStYqMlKtrybxo\",\"map_type\":\"roadmap\",\"map_height\":\"\",\"disable_scrolling\":false,\"initial_zoom\":\"14\",\"map_pin\":\"\",\"overlay_group\":{\"map_overlay\":\"hidden\",\"show_overlay\":{\"info_box_text\":\"\"}}},\"_items\":[]}]}\";s:7:\"created\";i:1538413393;}","no");
INSERT INTO `wp_options` VALUES("21633","fw_ext_settings_options:mailer","a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}","no");
INSERT INTO `wp_options` VALUES("21634","fw:ext:cf:fd:9dc6129ec9016fc3bcb09987be37e56d","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9dc6129ec9016fc3bcb09987be37e56d\";s:4:\"form\";a:1:{s:4:\"json\";s:1487:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":true,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:12:\"Send message\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("21637","fw:ext:cf:fd:84774d9cd43ea514ac6421aca8234821","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"84774d9cd43ea514ac6421aca8234821\";s:4:\"form\";a:1:{s:4:\"json\";s:1487:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":true,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("21639","fw:ext:cf:fd:9b553169cc466cac3aa49cbab883ec7f","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9b553169cc466cac3aa49cbab883ec7f\";s:4:\"form\";a:1:{s:4:\"json\";s:1487:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":true,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:10:\"text-right\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:6:\"حذف\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("21740","revslider-connection","1","yes");
INSERT INTO `wp_options` VALUES("21741","revslider-latest-version","6.1.3","yes");
INSERT INTO `wp_options` VALUES("21742","revslider-stable-version","4.2","yes");
INSERT INTO `wp_options` VALUES("21743","revslider-notices","a:1:{i:0;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.9.9\";s:4:\"text\";s:478:\"\";s:4:\"code\";s:10:\"TPRS600-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}}","yes");
INSERT INTO `wp_options` VALUES("21744","revslider-dashboard","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("21745","revslider-addons","O:8:\"stdClass\":26:{s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"1.0.6\";s:10:\"background\";s:71:\"//updates.themepunch-ext-b.tools/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch-ext-b.tools/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:22:\"revslider-backup-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:63:\"//updates.themepunch-ext-b.tools/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:66:\"//updates.themepunch-ext-b.tools/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:66:\"//updates.themepunch-ext-b.tools/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"5.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"1.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch-ext-b.tools/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"1.1.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-b.tools/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"1.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-b.tools/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"1.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:61:\"//updates.themepunch-ext-b.tools/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"1.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:66:\"//updates.themepunch-ext-b.tools/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:65:\"//updates.themepunch-ext-b.tools/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:60:\"//updates.themepunch-ext-b.tools/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch-ext-b.tools/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:66:\"//updates.themepunch-ext-b.tools/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:62:\"//updates.themepunch-ext-b.tools/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch-ext-b.tools/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:63:\"//updates.themepunch-ext-b.tools/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"1.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:68:\"//updates.themepunch-ext-b.tools/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"1.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:64:\"//updates.themepunch-ext-b.tools/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:23:\"Display images in 360°\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:65:\"//updates.themepunch-ext-b.tools/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:64:\"//updates.themepunch-ext-b.tools/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:63:\"//updates.themepunch-ext-b.tools/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:63:\"//updates.themepunch-ext-b.tools/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:68:\"//updates.themepunch-ext-b.tools/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch-ext-b.tools/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:66:\"//updates.themepunch-ext-b.tools/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch-ext-b.tools/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}}","yes");
INSERT INTO `wp_options` VALUES("21900","fw:ext:cf:fd:9a88fe9259fad38c45dfb542f8753704","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9a88fe9259fad38c45dfb542f8753704\";s:4:\"form\";a:1:{s:4:\"json\";s:1487:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":true,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:10:\"text-right\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:6:\"حذف\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("21902","fw:ext:cf:fd:76dbb5056717a07f5eb172e23d2a0bfe","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"76dbb5056717a07f5eb172e23d2a0bfe\";s:4:\"form\";a:1:{s:4:\"json\";s:1487:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":true,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:10:\"text-right\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:6:\"حذف\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("21904","fw:ext:cf:fd:ca3741a0e75facb70e8dce932b10eb40","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"ca3741a0e75facb70e8dce932b10eb40\";s:4:\"form\";a:1:{s:4:\"json\";s:1487:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":true,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:10:\"text-right\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:6:\"حذف\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("21906","fw:ext:cf:fd:e56264a2df6ec94e3dcd4c3e6af77aed","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"e56264a2df6ec94e3dcd4c3e6af77aed\";s:4:\"form\";a:1:{s:4:\"json\";s:1487:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":true,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:10:\"text-right\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:6:\"حذف\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("21907","fw:ext:cf:fd:bdd2117fd6cf78ed6aa8cbe929303e58","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bdd2117fd6cf78ed6aa8cbe929303e58\";s:4:\"form\";a:1:{s:4:\"json\";s:1487:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_cca5d1a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0625\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_dbac577\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_2e4368a\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":true,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_b135db1\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"6\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:10:\"text-right\";s:15:\"columns_padding\";s:18:\"columns_padding_10\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:6:\"حذف\";s:11:\"button_size\";s:12:\"large_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("21909","fw:bt:f:page-builder:d735042fcfb541caa385ab4300f49762","a:3:{s:5:\"title\";s:10:\"contact-us\";s:4:\"json\";s:6465:\"[{\"type\":\"section\",\"atts\":{\"section_name\":\"Map\",\"is_fullwidth\":true,\"horizontal_paddings\":\"horizontal-paddings-0\",\"background_color\":\"ls\",\"top_padding\":\"section_padding_top_0\",\"bottom_padding\":\"section_padding_bottom_0\",\"columns_padding\":\"columns_padding_0\",\"background_image\":{\"type\":\"custom\",\"custom\":\"\",\"predefined\":\"\",\"data\":{\"icon\":\"\",\"css\":[]}},\"background_cover\":false,\"parallax\":false,\"section_overlay\":false,\"is_table\":false,\"section_id\":\"\",\"custom_class\":\"\",\"enable_onehalf_media\":\"\",\"side_media_image\":[],\"side_media_link\":\"\",\"side_media_video\":\"\",\"side_media_position\":\"image_cover_left\"},\"_items\":[{\"type\":\"simple\",\"shortcode\":\"divider\",\"atts\":{\"style\":{\"ruler_type\":\"space\",\"space\":{\"height\":\"-70\"}},\"responsive\":{\"hidden_lg\":{\"selected\":\"yes\"},\"hidden_md\":{\"selected\":\"yes\"},\"hidden_sm\":{\"selected\":\"yes\"},\"hidden_xs\":{\"selected\":\"yes\"}}},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"map\",\"atts\":{\"data_provider\":{\"population_method\":\"custom\",\"custom\":{\"locations\":[{\"location\":{\"location\":\"Grenier Street, Spring Hill, Queensland, Australia, 4000\",\"venue\":\"Conference Hall Christian Assembly\",\"address\":\"Grenier Street\",\"city\":\"Spring Hill\",\"state\":\"Queensland\",\"country\":\"Australia\",\"zip\":\"4000\",\"coordinates\":{\"lat\":-27.4570546,\"lng\":153.0297634}},\"title\":\"\",\"description\":\"2231 Sycamore, Green Bay, WI 54304
\\r\\n1-800-123-4567
\\r\\nexample@example.com\",\"url\":\"\",\"thumb\":\"\"}]},\"events\":{\"events_category\":\"\"}},\"gmap-key\":\"AIzaSyDTwYSMRGuTsmfl2z_zZDStYqMlKtrybxo\",\"map_type\":\"roadmap\",\"map_height\":\"\",\"disable_scrolling\":false,\"initial_zoom\":\"14\",\"map_pin\":\"\",\"overlay_group\":{\"map_overlay\":\"show_overlay\",\"show_overlay\":{\"info_box_text\":\"2231 Sycamore, Green Bay, WI 54304
\\r\\n1-800-123-4567
\\r\\nexample@example.com\"}}},\"_items\":[]}]},{\"type\":\"section\",\"atts\":{\"section_name\":\"Contact Form\",\"is_fullwidth\":false,\"horizontal_paddings\":\"\",\"background_color\":\"ls\",\"top_padding\":\"section_padding_top_100\",\"bottom_padding\":\"section_padding_bottom_150\",\"columns_padding\":\"columns_padding_30\",\"background_image\":{\"type\":\"custom\",\"custom\":\"\",\"predefined\":\"\",\"data\":{\"icon\":\"\",\"css\":[]}},\"background_cover\":false,\"parallax\":false,\"section_overlay\":false,\"is_table\":false,\"section_id\":\"\",\"custom_class\":\"\",\"enable_onehalf_media\":\"\",\"side_media_image\":[],\"side_media_link\":\"\",\"side_media_video\":\"\",\"side_media_position\":\"image_cover_left\"},\"_items\":[{\"type\":\"column\",\"width\":\"1_1\",\"atts\":{\"column_align\":\"text-center\",\"column_padding\":\"\",\"background_color\":\"\",\"background_image\":{\"type\":\"custom\",\"custom\":\"\",\"predefined\":\"\",\"data\":{\"icon\":\"\",\"css\":[]}},\"background_cover\":false,\"column_animation\":\"fadeInUp\",\"custom_class\":\"col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2\"},\"fw-collapse\":true,\"_items\":[{\"type\":\"simple\",\"shortcode\":\"divider\",\"atts\":{\"style\":{\"ruler_type\":\"space\",\"space\":{\"height\":\"7\"}},\"responsive\":{\"hidden_lg\":{\"selected\":\"yes\"},\"hidden_md\":{\"selected\":\"yes\"},\"hidden_sm\":{\"selected\":\"yes\"},\"hidden_xs\":{\"selected\":\"yes\"}}},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"special_heading\",\"atts\":{\"heading_align\":\"text-center\",\"headings\":[{\"heading_tag\":\"h4\",\"heading_text\":\"اتصل بنا\",\"heading_text_color\":\"\",\"heading_text_weight\":\"medium\",\"heading_text_transform\":\"text-transform-none\",\"heading_custom_class\":\"\"}]},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"divider\",\"atts\":{\"style\":{\"ruler_type\":\"space\",\"space\":{\"height\":\"23\"}},\"responsive\":{\"hidden_lg\":{\"selected\":\"yes\"},\"hidden_md\":{\"selected\":\"yes\"},\"hidden_sm\":{\"selected\":\"yes\"},\"hidden_xs\":{\"selected\":\"yes\"}}},\"_items\":[]},{\"type\":\"contact-form\",\"atts\":{\"id\":\"5ff4673e96990928f41ad23f7122117b\",\"form\":{\"json\":\"[{\\\"type\\\":\\\"form-header-title\\\",\\\"shortcode\\\":\\\"form_header_title\\\",\\\"width\\\":\\\"\\\",\\\"options\\\":{\\\"title\\\":\\\"\\\",\\\"subtitle\\\":\\\"\\\"}},{\\\"type\\\":\\\"text\\\",\\\"shortcode\\\":\\\"text_cca5d1a\\\",\\\"width\\\":\\\"1_1\\\",\\\"options\\\":{\\\"label\\\":\\\"\\\\u0627\\\\u0644\\\\u0625\\\\u0633\\\\u0645\\\",\\\"required\\\":true,\\\"placeholder\\\":\\\"\\\\u0627\\\\u0644\\\\u0625\\\\u0633\\\\u0645\\\",\\\"default_value\\\":\\\"\\\",\\\"constraints\\\":{\\\"constraint\\\":\\\"characters\\\",\\\"characters\\\":{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"\\\"},\\\"words\\\":{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"\\\"}},\\\"info\\\":\\\"\\\",\\\"icon\\\":\\\"\\\"}},{\\\"type\\\":\\\"email\\\",\\\"shortcode\\\":\\\"email_dbac577\\\",\\\"width\\\":\\\"1_1\\\",\\\"options\\\":{\\\"label\\\":\\\"\\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0627\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u0649\\\",\\\"required\\\":true,\\\"placeholder\\\":\\\"\\\\u0627\\\\u0644\\\\u0628\\\\u0631\\\\u064a\\\\u062f \\\\u0627\\\\u0644\\\\u0627\\\\u0644\\\\u0643\\\\u062a\\\\u0631\\\\u0648\\\\u0646\\\\u0649\\\",\\\"info\\\":\\\"\\\",\\\"icon\\\":\\\"\\\"}},{\\\"type\\\":\\\"text\\\",\\\"shortcode\\\":\\\"text_2e4368a\\\",\\\"width\\\":\\\"1_1\\\",\\\"options\\\":{\\\"label\\\":\\\"\\\\u0631\\\\u0642\\\\u0645 \\\\u0627\\\\u0644\\\\u0647\\\\u0627\\\\u062a\\\\u0641\\\",\\\"required\\\":true,\\\"placeholder\\\":\\\"\\\\u0631\\\\u0642\\\\u0645 \\\\u0627\\\\u0644\\\\u0647\\\\u0627\\\\u062a\\\\u0641\\\",\\\"default_value\\\":\\\"\\\",\\\"constraints\\\":{\\\"constraint\\\":\\\"characters\\\",\\\"characters\\\":{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"\\\"},\\\"words\\\":{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"\\\"}},\\\"info\\\":\\\"\\\",\\\"icon\\\":\\\"\\\"}},{\\\"type\\\":\\\"textarea\\\",\\\"shortcode\\\":\\\"textarea_b135db1\\\",\\\"width\\\":\\\"1_1\\\",\\\"options\\\":{\\\"label\\\":\\\"\\\\u0627\\\\u0644\\\\u0631\\\\u0633\\\\u0627\\\\u0644\\\\u0629\\\",\\\"required\\\":true,\\\"placeholder\\\":\\\"\\\\u0627\\\\u0644\\\\u0631\\\\u0633\\\\u0627\\\\u0644\\\\u0629\\\",\\\"default_value\\\":\\\"\\\",\\\"constraints\\\":{\\\"constraint\\\":\\\"characters\\\",\\\"characters\\\":{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"\\\"},\\\"words\\\":{\\\"min\\\":\\\"0\\\",\\\"max\\\":\\\"\\\"}},\\\"info\\\":\\\"\\\",\\\"rows_num\\\":\\\"6\\\",\\\"icon\\\":\\\"\\\"}}]\"},\"background_color\":\"\",\"field_text_align\":\"text-right\",\"columns_padding\":\"columns_padding_10\",\"email_to\":\"\",\"subject_message\":\"Contact Form\",\"submit_button_text\":\"ارسال\",\"reset_button_text\":\"حذف\",\"button_size\":\"large_height\",\"button_color\":\"color1\",\"button_align\":\"text-center\",\"success_message\":\"تم ارسال الرسالة بنجاح\",\"failure_message\":\"لم يتم ارسال الرسالة\",\"mailer\":{\"method\":\"wpmail\",\"smtp\":{\"host\":\"\",\"username\":\"\",\"password\":\"\",\"secure\":\"no\",\"port\":\"\"},\"general\":{\"from_name\":\"\",\"from_address\":\"\"},\"test-connection\":{\"test-connection\":\"\"}}},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"divider\",\"atts\":{\"style\":{\"ruler_type\":\"space\",\"space\":{\"height\":\"35\"}},\"responsive\":{\"hidden_lg\":{\"selected\":\"yes\"},\"hidden_md\":{\"selected\":\"yes\"},\"hidden_sm\":{\"selected\":\"yes\"},\"hidden_xs\":{\"selected\":\"yes\"}}},\"_items\":[]}]}]}]\";s:7:\"created\";i:1538647908;}","no");
INSERT INTO `wp_options` VALUES("21913","fw:ext:cf:fd:4cdafc997aa990d38075dd6ffa465275","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"4cdafc997aa990d38075dd6ffa465275\";s:4:\"form\";a:1:{s:4:\"json\";s:1488:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_d5798ec\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_a372e1d\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_7a25f01\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":false,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_8ebb9f7\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:9:\"text-left\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:4:\"Send\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:9:\"text-left\";s:15:\"success_message\";s:13:\"Message sent!\";s:15:\"failure_message\";s:26:\"Oops something went wrong.\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("21916","fw:ext:cf:fd:15b1ec164da3a89e9d708fdd428ebba7","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"15b1ec164da3a89e9d708fdd428ebba7\";s:4:\"form\";a:1:{s:4:\"json\";s:1488:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_9399baf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_089d1bf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_263c6be\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":false,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_d705c93\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:11:\"text-center\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:17:\"msh@atheltree.com\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("21952","fw:ext:cf:fd:9bf12b80f4a1cf99961794498ef27494","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"9bf12b80f4a1cf99961794498ef27494\";s:4:\"form\";a:1:{s:4:\"json\";s:1488:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_9399baf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_089d1bf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_263c6be\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":false,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_d705c93\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:11:\"text-center\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("21966","fw:ext:cf:fd:af302f7e8b2f174d562706e7d45e2219","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"af302f7e8b2f174d562706e7d45e2219\";s:4:\"form\";a:1:{s:4:\"json\";s:1488:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_9399baf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_089d1bf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_263c6be\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":false,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_d705c93\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:11:\"text-center\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("21967","fw:ext:cf:fd:1f52340870e5067e2b150170d3a3fda5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"1f52340870e5067e2b150170d3a3fda5\";s:4:\"form\";a:1:{s:4:\"json\";s:1488:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_9399baf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_089d1bf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_263c6be\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":false,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_d705c93\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:11:\"text-center\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:0:\"\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("21969","fw:ext:cf:fd:d0fccfb68a8b76b2611aafa0351372f5","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"d0fccfb68a8b76b2611aafa0351372f5\";s:4:\"form\";a:1:{s:4:\"json\";s:1488:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_9399baf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_089d1bf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_263c6be\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":false,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_d705c93\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:11:\"text-center\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:17:\"msh@atheltree.com\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("21973","fw:ext:cf:fd:bcde15442da1d86fe522919bd6de83f9","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bcde15442da1d86fe522919bd6de83f9\";s:4:\"form\";a:1:{s:4:\"json\";s:1488:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_9399baf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_089d1bf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_263c6be\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":false,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_d705c93\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:11:\"text-center\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:17:\"msh@atheltree.com\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("22105","WpFc_api_key","492512bfcffe7cf8112c254574502cd4","yes");
INSERT INTO `wp_options` VALUES("22106","WpFastestCachePreLoad","{\"homepage\":-1,\"post\":-1,\"category\":0,\"page\":5,\"tag\":0,\"attachment\":-1,\"number\":\"4\"}","yes");
INSERT INTO `wp_options` VALUES("22107","WpFastestCache","{\"wpFastestCacheStatus\":\"on\",\"wpFastestCachePreload\":\"on\",\"wpFastestCachePreload_homepage\":\"on\",\"wpFastestCachePreload_post\":\"on\",\"wpFastestCachePreload_category\":\"on\",\"wpFastestCachePreload_page\":\"on\",\"wpFastestCachePreload_tag\":\"on\",\"wpFastestCachePreload_attachment\":\"on\",\"wpFastestCachePreload_number\":\"4\",\"wpFastestCacheLoggedInUser\":\"on\",\"wpFastestCacheMobile\":\"on\",\"wpFastestCacheNewPost\":\"on\",\"wpFastestCacheNewPost_type\":\"all\",\"wpFastestCacheUpdatePost\":\"on\",\"wpFastestCacheUpdatePost_type\":\"all\",\"wpFastestCacheMinifyHtml\":\"on\",\"wpFastestCacheMinifyCss\":\"on\",\"wpFastestCacheCombineCss\":\"on\",\"wpFastestCacheCombineJs\":\"on\",\"wpFastestCacheGzip\":\"on\",\"wpFastestCacheLBC\":\"on\",\"wpFastestCacheDisableEmojis\":\"on\",\"wpFastestCacheLanguage\":\"eng\"}","yes");
INSERT INTO `wp_options` VALUES("22127","_transient_product-transient-version","1538936118","yes");
INSERT INTO `wp_options` VALUES("22936","aioseop_options","a:97:{s:16:\"aiosp_home_title\";s:97:\"شركة أثل تري للتقنية | لتصميم المواقع وتطبيقات الجوال\";s:22:\"aiosp_home_description\";s:294:\"تعتبر شركة أثيل تري السعودية الأفضل فى مجال تصميم المواقع الالكترونية وتطبيقات الجوال. نعدك بالحصول على موقع الكتروني لشركتك بشكل احترافي بأقل سعر وفى أسرع وقت\r\n\";s:20:\"aiosp_togglekeywords\";s:1:\"0\";s:19:\"aiosp_home_keywords\";s:0:\"\";s:26:\"aiosp_use_static_home_info\";s:1:\"0\";s:9:\"aiosp_can\";s:2:\"on\";s:30:\"aiosp_no_paged_canonical_links\";s:0:\"\";s:31:\"aiosp_customize_canonical_links\";s:0:\"\";s:20:\"aiosp_rewrite_titles\";s:1:\"1\";s:20:\"aiosp_force_rewrites\";s:1:\"1\";s:24:\"aiosp_use_original_title\";s:1:\"0\";s:28:\"aiosp_home_page_title_format\";s:12:\"%page_title%\";s:23:\"aiosp_page_title_format\";s:12:\"%page_title%\";s:23:\"aiosp_post_title_format\";s:12:\"%post_title%\";s:27:\"aiosp_category_title_format\";s:56:\"%category_title% | شركة أثل تري للتقنية\";s:26:\"aiosp_archive_title_format\";s:15:\"%archive_title%\";s:23:\"aiosp_date_title_format\";s:6:\"%date%\";s:25:\"aiosp_author_title_format\";s:8:\"%author%\";s:22:\"aiosp_tag_title_format\";s:5:\"%tag%\";s:25:\"aiosp_search_title_format\";s:8:\"%search%\";s:24:\"aiosp_description_format\";s:13:\"%description%\";s:22:\"aiosp_404_title_format\";s:33:\"Nothing found for %request_words%\";s:18:\"aiosp_paged_format\";s:14:\" - Part %page%\";s:17:\"aiosp_enablecpost\";s:2:\"on\";s:17:\"aiosp_cpostactive\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"fw-portfolio\";i:3;s:15:\"fw-event-search\";i:4;s:11:\"fw-services\";}s:19:\"aiosp_cpostadvanced\";s:2:\"on\";s:18:\"aiosp_cpostnoindex\";s:0:\"\";s:19:\"aiosp_cpostnofollow\";s:0:\"\";s:17:\"aiosp_cposttitles\";s:2:\"on\";s:21:\"aiosp_posttypecolumns\";a:5:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:12:\"fw-portfolio\";i:3;s:15:\"fw-event-search\";i:4;s:11:\"fw-services\";}s:19:\"aiosp_google_verify\";s:43:\"KywoJeR-bkZ6jcaNPm60gxpJC5oWGYgrir31oBZsvNc\";s:17:\"aiosp_bing_verify\";s:0:\"\";s:22:\"aiosp_pinterest_verify\";s:0:\"\";s:22:\"aiosp_google_publisher\";s:0:\"\";s:28:\"aiosp_google_disable_profile\";s:0:\"\";s:29:\"aiosp_google_sitelinks_search\";s:0:\"\";s:26:\"aiosp_google_set_site_name\";s:0:\"\";s:30:\"aiosp_google_specify_site_name\";s:0:\"\";s:28:\"aiosp_google_author_advanced\";s:1:\"0\";s:28:\"aiosp_google_author_location\";a:1:{i:0;s:3:\"all\";}s:29:\"aiosp_google_enable_publisher\";s:2:\"on\";s:30:\"aiosp_google_specify_publisher\";s:0:\"\";s:25:\"aiosp_google_analytics_id\";s:0:\"\";s:25:\"aiosp_ga_advanced_options\";s:2:\"on\";s:15:\"aiosp_ga_domain\";s:0:\"\";s:21:\"aiosp_ga_multi_domain\";s:0:\"\";s:21:\"aiosp_ga_addl_domains\";s:0:\"\";s:21:\"aiosp_ga_anonymize_ip\";s:0:\"\";s:28:\"aiosp_ga_display_advertising\";s:0:\"\";s:22:\"aiosp_ga_exclude_users\";s:0:\"\";s:29:\"aiosp_ga_track_outbound_links\";s:0:\"\";s:25:\"aiosp_ga_link_attribution\";s:0:\"\";s:27:\"aiosp_ga_enhanced_ecommerce\";s:0:\"\";s:20:\"aiosp_use_categories\";s:2:\"on\";s:26:\"aiosp_use_tags_as_keywords\";s:2:\"on\";s:32:\"aiosp_dynamic_postspage_keywords\";s:2:\"on\";s:22:\"aiosp_category_noindex\";s:2:\"on\";s:26:\"aiosp_archive_date_noindex\";s:2:\"on\";s:28:\"aiosp_archive_author_noindex\";s:2:\"on\";s:18:\"aiosp_tags_noindex\";s:0:\"\";s:20:\"aiosp_search_noindex\";s:0:\"\";s:17:\"aiosp_404_noindex\";s:2:\"on\";s:17:\"aiosp_tax_noindex\";s:0:\"\";s:23:\"aiosp_paginated_noindex\";s:0:\"\";s:24:\"aiosp_paginated_nofollow\";s:0:\"\";s:27:\"aiosp_generate_descriptions\";s:2:\"on\";s:18:\"aiosp_skip_excerpt\";s:2:\"on\";s:20:\"aiosp_run_shortcodes\";s:0:\"\";s:33:\"aiosp_hide_paginated_descriptions\";s:0:\"\";s:32:\"aiosp_dont_truncate_descriptions\";s:0:\"\";s:19:\"aiosp_schema_markup\";s:2:\"on\";s:20:\"aiosp_unprotect_meta\";s:0:\"\";s:33:\"aiosp_redirect_attachement_parent\";s:0:\"\";s:14:\"aiosp_ex_pages\";s:0:\"\";s:20:\"aiosp_post_meta_tags\";s:0:\"\";s:20:\"aiosp_page_meta_tags\";s:0:\"\";s:21:\"aiosp_front_meta_tags\";s:0:\"\";s:20:\"aiosp_home_meta_tags\";s:0:\"\";s:12:\"aiosp_do_log\";s:0:\"\";s:19:\"last_active_version\";s:6:\"2.10.1\";s:7:\"modules\";a:3:{s:29:\"aiosp_feature_manager_options\";a:7:{s:36:\"aiosp_feature_manager_enable_sitemap\";s:2:\"on\";s:38:\"aiosp_feature_manager_enable_opengraph\";s:2:\"on\";s:35:\"aiosp_feature_manager_enable_robots\";s:2:\"on\";s:40:\"aiosp_feature_manager_enable_file_editor\";s:2:\"on\";s:46:\"aiosp_feature_manager_enable_importer_exporter\";s:2:\"on\";s:39:\"aiosp_feature_manager_enable_bad_robots\";s:2:\"on\";s:40:\"aiosp_feature_manager_enable_performance\";s:2:\"on\";}s:21:\"aiosp_sitemap_options\";a:65:{s:24:\"aiosp_sitemap_daily_cron\";s:1:\"0\";s:21:\"aiosp_sitemap_indexes\";s:0:\"\";s:23:\"aiosp_sitemap_max_posts\";s:5:\"50000\";s:23:\"aiosp_sitemap_posttypes\";a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:11:\"fw-services\";}s:24:\"aiosp_sitemap_taxonomies\";a:2:{i:0;s:8:\"category\";i:1;s:21:\"fw-portfolio-category\";}s:21:\"aiosp_sitemap_archive\";s:0:\"\";s:20:\"aiosp_sitemap_author\";s:0:\"\";s:20:\"aiosp_sitemap_images\";s:0:\"\";s:21:\"aiosp_sitemap_gzipped\";s:2:\"on\";s:20:\"aiosp_sitemap_robots\";s:2:\"on\";s:21:\"aiosp_sitemap_rewrite\";s:2:\"on\";s:24:\"aiosp_sitemap_addl_pages\";a:1:{s:38:\"http://atheltree.com/ar/category/blog/\";a:3:{s:4:\"prio\";s:3:\"0.0\";s:4:\"freq\";s:6:\"always\";s:3:\"mod\";s:10:\"2018-12-13\";}}s:29:\"aiosp_sitemap_excl_categories\";s:0:\"\";s:24:\"aiosp_sitemap_excl_pages\";s:0:\"\";s:27:\"aiosp_sitemap_prio_homepage\";s:2:\"no\";s:23:\"aiosp_sitemap_prio_post\";s:2:\"no\";s:31:\"aiosp_sitemap_prio_post_fw-team\";s:2:\"no\";s:35:\"aiosp_sitemap_prio_post_fw-services\";s:2:\"no\";s:36:\"aiosp_sitemap_prio_post_fw-portfolio\";s:2:\"no\";s:31:\"aiosp_sitemap_prio_post_product\";s:2:\"no\";s:32:\"aiosp_sitemap_prio_post_fw-event\";s:2:\"no\";s:34:\"aiosp_sitemap_prio_post_attachment\";s:2:\"no\";s:28:\"aiosp_sitemap_prio_post_page\";s:2:\"no\";s:28:\"aiosp_sitemap_prio_post_post\";s:2:\"no\";s:29:\"aiosp_sitemap_prio_taxonomies\";s:2:\"no\";s:46:\"aiosp_sitemap_prio_taxonomies_fw-team-category\";s:2:\"no\";s:50:\"aiosp_sitemap_prio_taxonomies_fw-services-category\";s:2:\"no\";s:51:\"aiosp_sitemap_prio_taxonomies_fw-portfolio-category\";s:2:\"no\";s:53:\"aiosp_sitemap_prio_taxonomies_booked_custom_calendars\";s:2:\"no\";s:52:\"aiosp_sitemap_prio_taxonomies_product_shipping_class\";s:2:\"no\";s:41:\"aiosp_sitemap_prio_taxonomies_product_tag\";s:2:\"no\";s:41:\"aiosp_sitemap_prio_taxonomies_product_cat\";s:2:\"no\";s:42:\"aiosp_sitemap_prio_taxonomies_fw-event-tag\";s:2:\"no\";s:52:\"aiosp_sitemap_prio_taxonomies_fw-event-taxonomy-name\";s:2:\"no\";s:41:\"aiosp_sitemap_prio_taxonomies_post_format\";s:2:\"no\";s:38:\"aiosp_sitemap_prio_taxonomies_post_tag\";s:2:\"no\";s:38:\"aiosp_sitemap_prio_taxonomies_category\";s:2:\"no\";s:26:\"aiosp_sitemap_prio_archive\";s:2:\"no\";s:25:\"aiosp_sitemap_prio_author\";s:2:\"no\";s:27:\"aiosp_sitemap_freq_homepage\";s:2:\"no\";s:23:\"aiosp_sitemap_freq_post\";s:2:\"no\";s:31:\"aiosp_sitemap_freq_post_fw-team\";s:2:\"no\";s:35:\"aiosp_sitemap_freq_post_fw-services\";s:2:\"no\";s:36:\"aiosp_sitemap_freq_post_fw-portfolio\";s:2:\"no\";s:31:\"aiosp_sitemap_freq_post_product\";s:2:\"no\";s:32:\"aiosp_sitemap_freq_post_fw-event\";s:2:\"no\";s:34:\"aiosp_sitemap_freq_post_attachment\";s:2:\"no\";s:28:\"aiosp_sitemap_freq_post_page\";s:2:\"no\";s:28:\"aiosp_sitemap_freq_post_post\";s:2:\"no\";s:29:\"aiosp_sitemap_freq_taxonomies\";s:2:\"no\";s:46:\"aiosp_sitemap_freq_taxonomies_fw-team-category\";s:2:\"no\";s:50:\"aiosp_sitemap_freq_taxonomies_fw-services-category\";s:2:\"no\";s:51:\"aiosp_sitemap_freq_taxonomies_fw-portfolio-category\";s:2:\"no\";s:53:\"aiosp_sitemap_freq_taxonomies_booked_custom_calendars\";s:2:\"no\";s:52:\"aiosp_sitemap_freq_taxonomies_product_shipping_class\";s:2:\"no\";s:41:\"aiosp_sitemap_freq_taxonomies_product_tag\";s:2:\"no\";s:41:\"aiosp_sitemap_freq_taxonomies_product_cat\";s:2:\"no\";s:42:\"aiosp_sitemap_freq_taxonomies_fw-event-tag\";s:2:\"no\";s:52:\"aiosp_sitemap_freq_taxonomies_fw-event-taxonomy-name\";s:2:\"no\";s:41:\"aiosp_sitemap_freq_taxonomies_post_format\";s:2:\"no\";s:38:\"aiosp_sitemap_freq_taxonomies_post_tag\";s:2:\"no\";s:38:\"aiosp_sitemap_freq_taxonomies_category\";s:2:\"no\";s:26:\"aiosp_sitemap_freq_archive\";s:2:\"no\";s:25:\"aiosp_sitemap_freq_author\";s:2:\"no\";s:25:\"aiosp_sitemap_rss_sitemap\";s:0:\"\";}s:23:\"aiosp_opengraph_options\";a:63:{s:27:\"aiosp_opengraph_scan_header\";s:0:\"\";s:23:\"aiosp_opengraph_setmeta\";s:0:\"\";s:19:\"aiosp_opengraph_key\";s:16:\"2136549303339948\";s:21:\"aiosp_opengraph_appid\";s:0:\"\";s:32:\"aiosp_opengraph_title_shortcodes\";s:0:\"\";s:38:\"aiosp_opengraph_description_shortcodes\";s:0:\"\";s:24:\"aiosp_opengraph_sitename\";s:98:\"شركة أثل تري للتقنية | لتصميم المواقع وتطبيقات الجوال\t\";s:25:\"aiosp_opengraph_hometitle\";s:98:\"شركة أثل تري للتقنية | لتصميم المواقع وتطبيقات الجوال\t\";s:27:\"aiosp_opengraph_description\";s:293:\"تعتبر شركة أثيل تري السعودية الأفضل فى مجال تصميم المواقع الالكترونية وتطبيقات الجوال. نعدك بالحصول على موقع الكتروني لشركتك بشكل احترافي بأقل سعر وفى أسرع وقت.\";s:25:\"aiosp_opengraph_homeimage\";s:63:\"http://atheltree.com/ar/wp-content/uploads/2018/11/Header-2.png\";s:37:\"aiosp_opengraph_generate_descriptions\";s:0:\"\";s:22:\"aiosp_opengraph_defimg\";s:0:\"\";s:24:\"aiosp_opengraph_fallback\";s:0:\"\";s:20:\"aiosp_opengraph_dimg\";s:92:\"http://atheltree.com/ar/wp-content/plugins/all-in-one-seo-pack/images/default-user-image.png\";s:25:\"aiosp_opengraph_dimgwidth\";s:0:\"\";s:26:\"aiosp_opengraph_dimgheight\";s:0:\"\";s:24:\"aiosp_opengraph_meta_key\";s:0:\"\";s:21:\"aiosp_opengraph_image\";N;s:25:\"aiosp_opengraph_customimg\";N;s:26:\"aiosp_opengraph_imagewidth\";s:0:\"\";s:27:\"aiosp_opengraph_imageheight\";s:0:\"\";s:21:\"aiosp_opengraph_video\";N;s:26:\"aiosp_opengraph_videowidth\";s:0:\"\";s:27:\"aiosp_opengraph_videoheight\";s:0:\"\";s:23:\"aiosp_opengraph_defcard\";s:7:\"summary\";s:23:\"aiosp_opengraph_setcard\";N;s:28:\"aiosp_opengraph_twitter_site\";s:31:\"https://twitter.com/atheltreeco\";s:31:\"aiosp_opengraph_twitter_creator\";s:0:\"\";s:30:\"aiosp_opengraph_twitter_domain\";s:0:\"\";s:33:\"aiosp_opengraph_customimg_twitter\";N;s:24:\"aiosp_opengraph_gen_tags\";s:0:\"\";s:28:\"aiosp_opengraph_gen_keywords\";s:2:\"on\";s:30:\"aiosp_opengraph_gen_categories\";s:2:\"on\";s:29:\"aiosp_opengraph_gen_post_tags\";s:2:\"on\";s:21:\"aiosp_opengraph_types\";a:3:{i:0;s:4:\"page\";i:1;s:12:\"fw-portfolio\";i:2;s:11:\"fw-services\";}s:21:\"aiosp_opengraph_title\";s:0:\"\";s:20:\"aiosp_opengraph_desc\";s:0:\"\";s:24:\"aiosp_opengraph_category\";s:0:\"\";s:23:\"aiosp_opengraph_section\";s:0:\"\";s:19:\"aiosp_opengraph_tag\";s:0:\"\";s:34:\"aiosp_opengraph_facebook_publisher\";s:0:\"\";s:31:\"aiosp_opengraph_facebook_author\";s:0:\"\";s:29:\"aiosp_opengraph_profile_links\";s:69:\"https://twitter.com/atheltreeco\r\nhttps://www.facebook.com/atheltreeco\";s:29:\"aiosp_opengraph_person_or_org\";s:3:\"org\";s:27:\"aiosp_opengraph_social_name\";s:0:\"\";s:35:\"aiosp_opengraph_post_fb_object_type\";s:7:\"article\";s:35:\"aiosp_opengraph_page_fb_object_type\";s:7:\"website\";s:41:\"aiosp_opengraph_attachment_fb_object_type\";s:7:\"article\";s:43:\"aiosp_opengraph_oembed_cache_fb_object_type\";s:7:\"article\";s:43:\"aiosp_opengraph_user_request_fb_object_type\";s:7:\"article\";s:39:\"aiosp_opengraph_fw-event_fb_object_type\";s:7:\"article\";s:47:\"aiosp_opengraph_scheduled-action_fb_object_type\";s:7:\"article\";s:38:\"aiosp_opengraph_product_fb_object_type\";s:7:\"article\";s:48:\"aiosp_opengraph_product_variation_fb_object_type\";s:7:\"article\";s:41:\"aiosp_opengraph_shop_order_fb_object_type\";s:7:\"article\";s:48:\"aiosp_opengraph_shop_order_refund_fb_object_type\";s:7:\"article\";s:42:\"aiosp_opengraph_shop_coupon_fb_object_type\";s:7:\"article\";s:50:\"aiosp_opengraph_booked_appointments_fb_object_type\";s:7:\"article\";s:40:\"aiosp_opengraph_fw-slider_fb_object_type\";s:7:\"article\";s:43:\"aiosp_opengraph_fw-portfolio_fb_object_type\";s:7:\"website\";s:46:\"aiosp_opengraph_fw-event-search_fb_object_type\";s:7:\"article\";s:42:\"aiosp_opengraph_fw-services_fb_object_type\";s:7:\"website\";s:38:\"aiosp_opengraph_fw-team_fb_object_type\";s:7:\"article\";}}s:29:\"aiosp_attachment_title_format\";s:27:\"%post_title% | %blog_title%\";s:31:\"aiosp_oembed_cache_title_format\";s:27:\"%post_title% | %blog_title%\";s:31:\"aiosp_user_request_title_format\";s:27:\"%post_title% | %blog_title%\";s:27:\"aiosp_fw-event_title_format\";s:27:\"%post_title% | %blog_title%\";s:26:\"aiosp_product_title_format\";s:27:\"%post_title% | %blog_title%\";s:36:\"aiosp_product_variation_title_format\";s:27:\"%post_title% | %blog_title%\";s:29:\"aiosp_shop_order_title_format\";s:27:\"%post_title% | %blog_title%\";s:36:\"aiosp_shop_order_refund_title_format\";s:27:\"%post_title% | %blog_title%\";s:30:\"aiosp_shop_coupon_title_format\";s:27:\"%post_title% | %blog_title%\";s:38:\"aiosp_booked_appointments_title_format\";s:27:\"%post_title% | %blog_title%\";s:28:\"aiosp_fw-slider_title_format\";s:27:\"%post_title% | %blog_title%\";s:31:\"aiosp_fw-portfolio_title_format\";s:52:\"%post_title% | شركة أثل تري للتقنية\";s:34:\"aiosp_fw-event-search_title_format\";s:27:\"%post_title% | %blog_title%\";s:30:\"aiosp_fw-services_title_format\";s:53:\"%post_title% | شركة أثل تري للتقنية\";s:26:\"aiosp_fw-team_title_format\";s:27:\"%post_title% | %blog_title%\";s:35:\"aiosp_scheduled-action_title_format\";s:27:\"%post_title% | %blog_title%\";}","yes");
INSERT INTO `wp_options` VALUES("23421","wplc_db_version","8.0.18","yes");
INSERT INTO `wp_options` VALUES("23422","WPLC_SETTINGS","a:60:{s:19:\"wplc_settings_align\";s:1:\"2\";s:16:\"wplc_settings_bg\";s:10:\"cloudy.jpg\";s:16:\"wplc_environment\";s:1:\"1\";s:20:\"wplc_settings_color1\";s:6:\"ED832F\";s:18:\"wplc_settings_fill\";s:6:\"ED832F\";s:20:\"wplc_settings_color2\";s:6:\"FFFFFF\";s:18:\"wplc_settings_font\";s:6:\"FFFFFF\";s:20:\"wplc_settings_color3\";s:6:\"EEEEEE\";s:20:\"wplc_settings_color4\";s:6:\"666666\";s:21:\"wplc_settings_enabled\";s:1:\"1\";s:22:\"wplc_require_user_info\";s:1:\"1\";s:30:\"wplc_user_default_visitor_name\";s:5:\"Guest\";s:23:\"wplc_loggedin_user_info\";s:1:\"1\";s:26:\"wplc_user_alternative_text\";s:70:\"Please click \\'Start Chat\\' to initiate a chat with an agent\";s:22:\"wplc_enabled_on_mobile\";s:1:\"1\";s:27:\"wplc_redirect_thank_you_url\";s:0:\"\";s:27:\"wplc_preferred_gif_provider\";s:1:\"1\";s:18:\"wplc_giphy_api_key\";s:0:\"\";s:18:\"wplc_tenor_api_key\";s:0:\"\";s:19:\"wplc_disable_emojis\";b:0;s:22:\"wplc_record_ip_address\";s:1:\"0\";s:21:\"wplc_enable_msg_sound\";s:1:\"1\";s:25:\"wplc_enable_visitor_sound\";s:1:\"1\";s:24:\"wplc_enable_font_awesome\";s:1:\"1\";s:27:\"wplc_enable_all_admin_pages\";s:1:\"1\";s:11:\"wplc_pro_na\";s:29:\"Chat offline. Leave a message\";s:27:\"wplc_pro_chat_email_address\";s:23:\"mafeshmashakl@gmail.com\";s:35:\"wplc_pro_chat_email_offline_subject\";s:0:\"\";s:17:\"wplc_pro_offline1\";s:89:\"We are currently offline. Please leave a message and we\\'ll get back to you shortly.\";s:17:\"wplc_pro_offline2\";s:18:\"Sending message...\";s:17:\"wplc_pro_offline3\";s:55:\"Thank you for your message. We will be in contact soon.\";s:20:\"wplc_pro_offline_btn\";s:15:\"Leave a message\";s:25:\"wplc_pro_offline_btn_send\";s:12:\"Send message\";s:13:\"wplc_pro_fst1\";s:10:\"Questions?\";s:13:\"wplc_pro_fst2\";s:12:\"Chat with us\";s:13:\"wplc_pro_sst1\";s:10:\"Start Chat\";s:20:\"wplc_pro_sst1_survey\";s:23:\"Or chat to an agent now\";s:21:\"wplc_pro_sst1e_survey\";s:10:\"Chat ended\";s:13:\"wplc_pro_sst2\";s:32:\"Connecting. Please be patient...\";s:13:\"wplc_pro_tst1\";s:34:\"Reactivating your previous chat...\";s:14:\"wplc_pro_intro\";s:56:\"Hello. Please input your details so that I may help you.\";s:15:\"wplc_user_enter\";s:32:\"Press ENTER to send your message\";s:20:\"wplc_text_chat_ended\";s:40:\"The chat has been ended by the operator.\";s:16:\"wplc_welcome_msg\";s:84:\"Please standby for an agent. While you wait for the agent you may type your message.\";s:10:\"wplc_theme\";s:13:\"theme-default\";s:13:\"wplc_newtheme\";s:7:\"theme-2\";s:24:\"wplc_elem_trigger_action\";s:1:\"0\";s:22:\"wplc_elem_trigger_type\";s:1:\"0\";s:20:\"wplc_elem_trigger_id\";s:0:\"\";s:14:\"wplc_show_date\";s:1:\"0\";s:14:\"wplc_show_time\";s:1:\"0\";s:14:\"wplc_show_name\";s:1:\"0\";s:16:\"wplc_show_avatar\";s:1:\"0\";s:20:\"wplc_use_node_server\";s:1:\"1\";s:26:\"wplc_new_chat_ringer_count\";i:5;s:17:\"wplc_gdpr_enabled\";s:1:\"1\";s:24:\"wplc_gdpr_notice_company\";s:8:\"اثيل\";s:34:\"wplc_gdpr_notice_retention_purpose\";s:12:\"Chat/Support\";s:33:\"wplc_gdpr_notice_retention_period\";s:2:\"30\";s:19:\"wplc_user_no_answer\";s:43:\"There is No Answer. Please Try Again Later.\";}","yes");
INSERT INTO `wp_options` VALUES("23423","WPLC_HIDE_CHAT","","yes");
INSERT INTO `wp_options` VALUES("23424","wplc_api_secret_token","5c15276b37587828db8cfa9a708d5b75","yes");
INSERT INTO `wp_options` VALUES("23425","wplc_node_server_secret_token","6e6a10e9965a529dc3d6d930749ee7e1","yes");
INSERT INTO `wp_options` VALUES("23426","WPLC_V8_FIRST_TIME","","yes");
INSERT INTO `wp_options` VALUES("23427","wplc_current_version","8.0.18","yes");
INSERT INTO `wp_options` VALUES("23428","WPLC_GDPR_ENABLED_AT_LEAST_ONCE","true","yes");
INSERT INTO `wp_options` VALUES("23429","WPLC_ET_SETTINGS","a:6:{s:23:\"wplc_enable_transcripts\";s:1:\"1\";s:24:\"wplc_send_transcripts_to\";s:4:\"user\";s:36:\"wplc_send_transcripts_when_chat_ends\";i:0;s:20:\"wplc_et_email_header\";s:240:\"<a title=\\"اثيل\\" href=\\"http://atheltree.com/ar\\" style=\\"font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #FFF; font-weight: bold; text-decoration: underline;\\">اثيل</a> \";s:20:\"wplc_et_email_footer\";s:453:\"<span style=\\'font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #FFF; font-weight: normal;\\'>Thank you for chatting with us. If you have any questions, please <a href=\\"mailto:mafeshmashakl@gmail.com\\" target=\\"_blank\\" style=\\"font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #FFF; font-weight: bold; text-decoration: underline;\\">contact us</a></span> \";s:18:\"wplc_et_email_body\";s:3478:\"<!DOCTYPE HTML PUBLIC \\"-//W3C//DTD HTML 4.01 Transitional//EN\\" \\"http://www.w3.org/TR/html4/loose.dtd\\">\t\t\r\n\t<html>\r\n\t\r\n\t<body>\r\n\r\n\r\n\r\n\t\t<table id=\\"\\" border=\\"0\\" cellpadding=\\"0\\" cellspacing=\\"0\\" width=\\"100%\\" style=\\"background-color: #ec822c;\\">\r\n\t <tbody>\r\n\t <tr>\r\n\t <td width=\\"100%\\" style=\\"padding: 30px 20px 100px 20px;\\">\r\n\t <table align=\\"center\\" cellpadding=\\"0\\" cellspacing=\\"0\\" class=\\"\\" width=\\"100%\\" style=\\"border-collapse: separate; max-width:600px;\\">\r\n\t <tbody>\r\n\t <tr>\r\n\t <td style=\\"text-align: center; padding-bottom: 20px;\\">\r\n\t \r\n\t <p>[wplc_et_transcript_header_text]</p>\r\n\t </td>\r\n\t </tr>\r\n\t </tbody>\r\n\t </table>\r\n\r\n\t <table id=\\"\\" align=\\"center\\" cellpadding=\\"0\\" cellspacing=\\"0\\" class=\\"\\" width=\\"100%\\" style=\\"border-collapse: separate; max-width: 600px; font-family: Georgia, serif; font-size: 12px; color: rgb(51, 62, 72); border: 0px solid rgb(255, 255, 255); border-radius: 10px; background-color: rgb(255, 255, 255);\\">\r\n\t <tbody>\r\n\t <tr>\r\n\t <td class=\\"sortable-list ui-sortable\\" style=\\"padding:20px;\\">\r\n\t [wplc_et_transcript]\r\n\t </td>\r\n\t </tr>\r\n\t </tbody>\r\n\t </table>\r\n\r\n\t <table align=\\"center\\" cellpadding=\\"0\\" cellspacing=\\"0\\" class=\\"\\" width=\\"100%\\" style=\\"border-collapse: separate; max-width:100%;\\">\r\n\t <tbody>\r\n\t <tr>\r\n\t <td style=\\"padding:20px;\\">\r\n\t <table border=\\"0\\" cellpadding=\\"0\\" cellspacing=\\"0\\" class=\\"\\" width=\\"100%\\">\r\n\t <tbody>\r\n\t <tr>\r\n\t <td id=\\"\\" align=\\"center\\">\r\n\t <p>[wplc_et_transcript_footer_text]</p>\r\n\t </td>\r\n\t </tr>\r\n\t </tbody>\r\n\t </table>\r\n\t </td>\r\n\t </tr>\r\n\t </tbody>\r\n\t </table>\r\n\t </td>\r\n\t </tr>\r\n\t </tbody>\r\n\t </table>\r\n\r\n\r\n\t\t\r\n\t\t</div>\r\n\t</body>\r\n<script>\\'undefined\\'=== typeof _trfq || (window._trfq = []);\\'undefined\\'=== typeof _trfd && (window._trfd=[]),_trfd.push({\\'tccl.baseHost\\':\\'secureserver.net\\'}),_trfd.push({\\'ap\\':\\'cpbh\\'},{\\'server\\':\\'a2plvcpnl120128\\'}) // Monitoring performance to make your website faster. If you want to opt-out, please contact web hosting support.</script><script src=\\'https://img1.wsimg.com/tcc/tcc_l.combined.1.0.6.min.js\\'></script></html>\r\n\t\t\t \";}","yes");
INSERT INTO `wp_options` VALUES("23430","WPLC_ET_FIRST_RUN","1","yes");
INSERT INTO `wp_options` VALUES("23436","wplc_stats","a:1:{s:8:\"settings\";a:3:{s:5:\"views\";i:3;s:13:\"last_accessed\";s:19:\"2018-11-06 12:09:35\";s:14:\"first_accessed\";s:19:\"2018-11-06 12:08:07\";}}","yes");
INSERT INTO `wp_options` VALUES("23437","WPLC_POWERED_BY","0","yes");
INSERT INTO `wp_options` VALUES("23438","WPLC_CUSTOM_CSS","","yes");
INSERT INTO `wp_options` VALUES("23439","WPLC_CUSTOM_JS","","yes");
INSERT INTO `wp_options` VALUES("23440","WPLC_SURVEY_SETTINGS","a:5:{s:19:\"wplc_enable_surveys\";i:0;s:6:\"survey\";N;s:9:\"lead_form\";N;s:11:\"survey_user\";N;s:14:\"survey_display\";s:1:\"1\";}","yes");
INSERT INTO `wp_options` VALUES("23441","WPLC_GA_SETTINGS","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("23442","wplc_gutenberg_settings","a:7:{s:21:\"wplc_gutenberg_enable\";i:1;s:19:\"wplc_gutenberg_logo\";s:53:\"https://bleeper.io/app/assets/images/wplc_loading.png\";s:19:\"wplc_gutenberg_size\";s:1:\"2\";s:19:\"wplc_gutenberg_text\";s:9:\"Live Chat\";s:19:\"wplc_gutenberg_icon\";s:15:\"fa-commenting-o\";s:26:\"wplc_gutenberg_enable_icon\";i:1;s:16:\"wplc_custom_html\";s:29:\"\t\t \t\t\t \";}","yes");
INSERT INTO `wp_options` VALUES("23443","WPLC_BANNED_IP_ADDRESSES","s:17:\"a:1:{i:0;s:0:\"\";}\";","yes");
INSERT INTO `wp_options` VALUES("23444","wplc_end_point_override","","yes");
INSERT INTO `wp_options` VALUES("23445","wplc_server_location","eu1","yes");
INSERT INTO `wp_options` VALUES("23446","WPLC_GDPR_DISABLED_WARNING_DISMISSED","false","yes");
INSERT INTO `wp_options` VALUES("23447","wplc_advanced_settings","a:2:{s:15:\"wplc_iterations\";s:2:\"55\";s:24:\"wplc_delay_between_loops\";s:6:\"500000\";}","yes");
INSERT INTO `wp_options` VALUES("23448","wplc_mail_type","wp_mail","yes");
INSERT INTO `wp_options` VALUES("23449","wplc_mail_host","","yes");
INSERT INTO `wp_options` VALUES("23450","wplc_mail_port","","yes");
INSERT INTO `wp_options` VALUES("23451","wplc_mail_username","","yes");
INSERT INTO `wp_options` VALUES("23452","wplc_mail_password","","yes");
INSERT INTO `wp_options` VALUES("23456","tidio-one-private-key","ubatyxai8vtyg2g80u0yc6nkpg3ruvos","yes");
INSERT INTO `wp_options` VALUES("23457","tidio-one-public-key","ouovic5a5rsqhb0hp4oggny7g1rcyepj","yes");
INSERT INTO `wp_options` VALUES("23630","fw:ext:cf:fd:751a53a9aacf3ca84d108aaf13c57c21","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"751a53a9aacf3ca84d108aaf13c57c21\";s:4:\"form\";a:1:{s:4:\"json\";s:1488:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_9399baf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_089d1bf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_263c6be\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":false,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_d705c93\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:11:\"text-center\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:17:\"msh@atheltree.com\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("23633","fw:ext:cf:fd:588598aecf34be6bac1e3b7955b377da","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"588598aecf34be6bac1e3b7955b377da\";s:4:\"form\";a:1:{s:4:\"json\";s:1488:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_9399baf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_089d1bf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_263c6be\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":false,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_d705c93\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:11:\"text-center\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:17:\"msh@atheltree.com\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("23661","fw:ext:cf:fd:3564a45f3ccd3b87888f43d156f2d1d6","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"3564a45f3ccd3b87888f43d156f2d1d6\";s:4:\"form\";a:1:{s:4:\"json\";s:1488:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_9399baf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_089d1bf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_263c6be\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":false,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_d705c93\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:11:\"text-center\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:17:\"msh@atheltree.com\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("23664","fw:ext:cf:fd:bc9b00576d6488dff50986c20b05c154","a:16:{s:5:\"width\";s:3:\"1_1\";s:2:\"id\";s:32:\"bc9b00576d6488dff50986c20b05c154\";s:4:\"form\";a:1:{s:4:\"json\";s:1488:\"[{\"type\":\"form-header-title\",\"shortcode\":\"form_header_title\",\"width\":\"\",\"options\":{\"title\":\"\",\"subtitle\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_9399baf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0627\\u0633\\u0645\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"email\",\"shortcode\":\"email_089d1bf\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0627\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u0649\",\"info\":\"\",\"icon\":\"\"}},{\"type\":\"text\",\"shortcode\":\"text_263c6be\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"required\":false,\"placeholder\":\"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0647\\u0627\\u062a\\u0641\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"icon\":\"\"}},{\"type\":\"textarea\",\"shortcode\":\"textarea_d705c93\",\"width\":\"1_1\",\"options\":{\"label\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"required\":true,\"placeholder\":\"\\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\"default_value\":\"\",\"constraints\":{\"constraint\":\"characters\",\"characters\":{\"min\":\"0\",\"max\":\"\"},\"words\":{\"min\":\"0\",\"max\":\"\"}},\"info\":\"\",\"rows_num\":\"7\",\"icon\":\"\"}}]\";}s:16:\"background_color\";s:0:\"\";s:16:\"field_text_align\";s:11:\"text-center\";s:15:\"columns_padding\";s:18:\"columns_padding_15\";s:8:\"email_to\";s:17:\"msh@atheltree.com\";s:15:\"subject_message\";s:12:\"Contact Form\";s:18:\"submit_button_text\";s:10:\"ارسال\";s:17:\"reset_button_text\";s:5:\"Clear\";s:11:\"button_size\";s:13:\"medium_height\";s:12:\"button_color\";s:6:\"color1\";s:12:\"button_align\";s:11:\"text-center\";s:15:\"success_message\";s:41:\"تم ارسال الرسالة بنجاح\";s:15:\"failure_message\";s:37:\"لم يتم ارسال الرسالة\";s:6:\"mailer\";a:4:{s:6:\"method\";s:6:\"wpmail\";s:4:\"smtp\";a:5:{s:4:\"host\";s:0:\"\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"secure\";s:2:\"no\";s:4:\"port\";s:0:\"\";}s:7:\"general\";a:2:{s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";}s:15:\"test-connection\";a:1:{s:15:\"test-connection\";s:0:\"\";}}}","no");
INSERT INTO `wp_options` VALUES("23665","rs_cache_overlay","5.4.7.3","yes");
INSERT INTO `wp_options` VALUES("23926","woocommerce_placeholder_image","","yes");
INSERT INTO `wp_options` VALUES("24154","fw-services-category_children","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("26979","page_for_posts","0","yes");
INSERT INTO `wp_options` VALUES("26983","show_comments_cookies_opt_in","","yes");
INSERT INTO `wp_options` VALUES("26997","category_children","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("27043","trp_settings","a:12:{s:16:\"default-language\";s:2:\"ar\";s:21:\"translation-languages\";a:1:{i:0;s:2:\"ar\";}s:17:\"publish-languages\";a:1:{i:0;s:2:\"ar\";}s:22:\"native_or_english_name\";s:12:\"english_name\";s:36:\"add-subdirectory-to-default-language\";s:2:\"no\";s:30:\"force-language-to-custom-links\";s:3:\"yes\";s:11:\"g-translate\";s:2:\"no\";s:14:\"trp-ls-floater\";s:3:\"yes\";s:17:\"shortcode-options\";s:16:\"flags-full-names\";s:12:\"menu-options\";s:16:\"flags-full-names\";s:15:\"floater-options\";s:16:\"flags-full-names\";s:9:\"url-slugs\";a:2:{s:5:\"en_US\";s:2:\"en\";i:0;s:0:\"\";}}","yes");
INSERT INTO `wp_options` VALUES("27044","trp_plugin_version","1.3.7","yes");
INSERT INTO `wp_options` VALUES("27058","polylang","a:14:{s:7:\"browser\";i:1;s:7:\"rewrite\";i:1;s:12:\"hide_default\";i:1;s:10:\"force_lang\";i:1;s:13:\"redirect_lang\";i:0;s:13:\"media_support\";i:1;s:9:\"uninstall\";i:0;s:4:\"sync\";a:0:{}s:10:\"post_types\";a:0:{}s:10:\"taxonomies\";a:0:{}s:7:\"domains\";a:0:{}s:7:\"version\";s:3:\"2.5\";s:16:\"first_activation\";i:1544100055;s:12:\"default_lang\";s:2:\"ar\";}","yes");
INSERT INTO `wp_options` VALUES("27059","polylang_wpml_strings","a:0:{}","yes");
INSERT INTO `wp_options` VALUES("27060","widget_polylang","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO `wp_options` VALUES("27067","_transient_pll_languages_list","a:1:{i:0;a:27:{s:7:\"term_id\";i:172;s:4:\"name\";s:14:\"العربية\";s:4:\"slug\";s:2:\"ar\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:172;s:8:\"taxonomy\";s:8:\"language\";s:11:\"description\";s:2:\"ar\";s:6:\"parent\";i:0;s:5:\"count\";i:0;s:10:\"tl_term_id\";i:173;s:19:\"tl_term_taxonomy_id\";i:173;s:8:\"tl_count\";i:1;s:6:\"locale\";R:9;s:6:\"is_rtl\";i:1;s:3:\"w3c\";s:2:\"ar\";s:8:\"facebook\";s:5:\"ar_AR\";s:8:\"flag_url\";s:66:\"http://atheltree.com/ar/wp-content/plugins/polylang/flags/arab.png\";s:4:\"flag\";s:616:\"
\";s:8:\"home_url\";s:24:\"http://atheltree.com/ar/\";s:10:\"search_url\";s:24:\"http://atheltree.com/ar/\";s:4:\"host\";N;s:5:\"mo_id\";s:4:\"7110\";s:13:\"page_on_front\";b:0;s:14:\"page_for_posts\";b:0;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"0\";s:9:\"flag_code\";s:4:\"arab\";}}","yes");
INSERT INTO `wp_options` VALUES("27076","rewrite_rules","a:266:{s:14:\"sitemap.xml.gz\";s:60:\"index.php?aiosp_sitemap_gzipped=1&aiosp_sitemap_path=root.gz\";s:25:\"sitemap_(.+)_(\\d+).xml.gz\";s:74:\"index.php?aiosp_sitemap_path=$matches[1].gz&aiosp_sitemap_page=$matches[2]\";s:19:\"sitemap_(.+).xml.gz\";s:43:\"index.php?aiosp_sitemap_path=$matches[1].gz\";s:11:\"sitemap.xml\";s:33:\"index.php?aiosp_sitemap_path=root\";s:22:\"sitemap_(.+)_(\\d+).xml\";s:71:\"index.php?aiosp_sitemap_path=$matches[1]&aiosp_sitemap_page=$matches[2]\";s:16:\"sitemap_(.+).xml\";s:40:\"index.php?aiosp_sitemap_path=$matches[1]\";s:8:\"event/?$\";s:28:\"index.php?post_type=fw-event\";s:38:\"event/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=fw-event&feed=$matches[1]\";s:33:\"event/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=fw-event&feed=$matches[1]\";s:25:\"event/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=fw-event&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:12:\"fw-slider/?$\";s:29:\"index.php?post_type=fw-slider\";s:42:\"fw-slider/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=fw-slider&feed=$matches[1]\";s:37:\"fw-slider/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=fw-slider&feed=$matches[1]\";s:29:\"fw-slider/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=fw-slider&paged=$matches[1]\";s:11:\"projects/?$\";s:32:\"index.php?post_type=fw-portfolio\";s:41:\"projects/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=fw-portfolio&feed=$matches[1]\";s:36:\"projects/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=fw-portfolio&feed=$matches[1]\";s:28:\"projects/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=fw-portfolio&paged=$matches[1]\";s:11:\"services/?$\";s:31:\"index.php?post_type=fw-services\";s:41:\"services/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=fw-services&feed=$matches[1]\";s:36:\"services/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=fw-services&feed=$matches[1]\";s:28:\"services/page/([0-9]{1,})/?$\";s:49:\"index.php?post_type=fw-services&paged=$matches[1]\";s:9:\"member/?$\";s:27:\"index.php?post_type=fw-team\";s:39:\"member/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=fw-team&feed=$matches[1]\";s:34:\"member/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=fw-team&feed=$matches[1]\";s:26:\"member/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=fw-team&paged=$matches[1]\";s:33:\"event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"event/([^/]+)/embed/?$\";s:41:\"index.php?fw-event=$matches[1]&embed=true\";s:26:\"event/([^/]+)/trackback/?$\";s:35:\"index.php?fw-event=$matches[1]&tb=1\";s:46:\"event/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?fw-event=$matches[1]&feed=$matches[2]\";s:41:\"event/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?fw-event=$matches[1]&feed=$matches[2]\";s:34:\"event/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?fw-event=$matches[1]&paged=$matches[2]\";s:41:\"event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?fw-event=$matches[1]&cpage=$matches[2]\";s:30:\"event/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?fw-event=$matches[1]&page=$matches[2]\";s:22:\"event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:47:\"events/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?fw-event-taxonomy-name=$matches[1]&feed=$matches[2]\";s:42:\"events/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?fw-event-taxonomy-name=$matches[1]&feed=$matches[2]\";s:23:\"events/([^/]+)/embed/?$\";s:55:\"index.php?fw-event-taxonomy-name=$matches[1]&embed=true\";s:35:\"events/([^/]+)/page/?([0-9]{1,})/?$\";s:62:\"index.php?fw-event-taxonomy-name=$matches[1]&paged=$matches[2]\";s:17:\"events/([^/]+)/?$\";s:44:\"index.php?fw-event-taxonomy-name=$matches[1]\";s:50:\"event-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?fw-event-tag=$matches[1]&feed=$matches[2]\";s:45:\"event-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?fw-event-tag=$matches[1]&feed=$matches[2]\";s:26:\"event-tag/([^/]+)/embed/?$\";s:45:\"index.php?fw-event-tag=$matches[1]&embed=true\";s:38:\"event-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?fw-event-tag=$matches[1]&paged=$matches[2]\";s:20:\"event-tag/([^/]+)/?$\";s:34:\"index.php?fw-event-tag=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:47:\"booked_appointments/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"booked_appointments/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"booked_appointments/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"booked_appointments/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"booked_appointments/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"booked_appointments/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"booked_appointments/([^/]+)/embed/?$\";s:52:\"index.php?booked_appointments=$matches[1]&embed=true\";s:40:\"booked_appointments/([^/]+)/trackback/?$\";s:46:\"index.php?booked_appointments=$matches[1]&tb=1\";s:48:\"booked_appointments/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?booked_appointments=$matches[1]&paged=$matches[2]\";s:55:\"booked_appointments/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?booked_appointments=$matches[1]&cpage=$matches[2]\";s:44:\"booked_appointments/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?booked_appointments=$matches[1]&page=$matches[2]\";s:36:\"booked_appointments/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"booked_appointments/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"booked_appointments/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"booked_appointments/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"booked_appointments/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"booked_appointments/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:56:\"custom-calendar/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?booked_custom_calendars=$matches[1]&feed=$matches[2]\";s:51:\"custom-calendar/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?booked_custom_calendars=$matches[1]&feed=$matches[2]\";s:32:\"custom-calendar/([^/]+)/embed/?$\";s:56:\"index.php?booked_custom_calendars=$matches[1]&embed=true\";s:44:\"custom-calendar/([^/]+)/page/?([0-9]{1,})/?$\";s:63:\"index.php?booked_custom_calendars=$matches[1]&paged=$matches[2]\";s:26:\"custom-calendar/([^/]+)/?$\";s:45:\"index.php?booked_custom_calendars=$matches[1]\";s:37:\"fw-slider/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"fw-slider/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"fw-slider/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"fw-slider/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"fw-slider/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"fw-slider/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"fw-slider/([^/]+)/embed/?$\";s:42:\"index.php?fw-slider=$matches[1]&embed=true\";s:30:\"fw-slider/([^/]+)/trackback/?$\";s:36:\"index.php?fw-slider=$matches[1]&tb=1\";s:50:\"fw-slider/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?fw-slider=$matches[1]&feed=$matches[2]\";s:45:\"fw-slider/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?fw-slider=$matches[1]&feed=$matches[2]\";s:38:\"fw-slider/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?fw-slider=$matches[1]&paged=$matches[2]\";s:45:\"fw-slider/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?fw-slider=$matches[1]&cpage=$matches[2]\";s:34:\"fw-slider/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?fw-slider=$matches[1]&page=$matches[2]\";s:26:\"fw-slider/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"fw-slider/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"fw-slider/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"fw-slider/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"fw-slider/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"fw-slider/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"projects/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"projects/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"projects/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"projects/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"projects/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"projects/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"projects/([^/]+)/embed/?$\";s:45:\"index.php?fw-portfolio=$matches[1]&embed=true\";s:29:\"projects/([^/]+)/trackback/?$\";s:39:\"index.php?fw-portfolio=$matches[1]&tb=1\";s:49:\"projects/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?fw-portfolio=$matches[1]&feed=$matches[2]\";s:44:\"projects/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?fw-portfolio=$matches[1]&feed=$matches[2]\";s:37:\"projects/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?fw-portfolio=$matches[1]&paged=$matches[2]\";s:44:\"projects/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?fw-portfolio=$matches[1]&cpage=$matches[2]\";s:33:\"projects/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?fw-portfolio=$matches[1]&page=$matches[2]\";s:25:\"projects/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"projects/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"projects/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"projects/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"projects/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"projects/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:50:\"portfolio/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?fw-portfolio-category=$matches[1]&feed=$matches[2]\";s:45:\"portfolio/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?fw-portfolio-category=$matches[1]&feed=$matches[2]\";s:26:\"portfolio/([^/]+)/embed/?$\";s:54:\"index.php?fw-portfolio-category=$matches[1]&embed=true\";s:38:\"portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:61:\"index.php?fw-portfolio-category=$matches[1]&paged=$matches[2]\";s:20:\"portfolio/([^/]+)/?$\";s:43:\"index.php?fw-portfolio-category=$matches[1]\";s:38:\"event-search/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"event-search/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"event-search/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"event-search/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"event-search/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"event-search/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"event-search/(.+?)/embed/?$\";s:67:\"index.php?post_type=fw-event-search&pagename=$matches[1]&embed=true\";s:31:\"event-search/(.+?)/trackback/?$\";s:61:\"index.php?post_type=fw-event-search&pagename=$matches[1]&tb=1\";s:39:\"event-search/(.+?)/page/?([0-9]{1,})/?$\";s:74:\"index.php?post_type=fw-event-search&pagename=$matches[1]&paged=$matches[2]\";s:46:\"event-search/(.+?)/comment-page-([0-9]{1,})/?$\";s:74:\"index.php?post_type=fw-event-search&pagename=$matches[1]&cpage=$matches[2]\";s:35:\"event-search/(.+?)(?:/([0-9]+))?/?$\";s:73:\"index.php?post_type=fw-event-search&pagename=$matches[1]&page=$matches[2]\";s:36:\"services/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"services/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"services/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"services/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"services/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"services/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"services/([^/]+)/embed/?$\";s:44:\"index.php?fw-services=$matches[1]&embed=true\";s:29:\"services/([^/]+)/trackback/?$\";s:38:\"index.php?fw-services=$matches[1]&tb=1\";s:49:\"services/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?fw-services=$matches[1]&feed=$matches[2]\";s:44:\"services/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?fw-services=$matches[1]&feed=$matches[2]\";s:37:\"services/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?fw-services=$matches[1]&paged=$matches[2]\";s:44:\"services/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?fw-services=$matches[1]&cpage=$matches[2]\";s:33:\"services/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?fw-services=$matches[1]&page=$matches[2]\";s:25:\"services/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"services/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"services/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"services/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"services/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"services/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"services-cat/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?fw-services-category=$matches[1]&feed=$matches[2]\";s:48:\"services-cat/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?fw-services-category=$matches[1]&feed=$matches[2]\";s:29:\"services-cat/([^/]+)/embed/?$\";s:53:\"index.php?fw-services-category=$matches[1]&embed=true\";s:41:\"services-cat/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?fw-services-category=$matches[1]&paged=$matches[2]\";s:23:\"services-cat/([^/]+)/?$\";s:42:\"index.php?fw-services-category=$matches[1]\";s:34:\"member/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"member/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"member/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"member/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"member/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"member/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"member/([^/]+)/embed/?$\";s:40:\"index.php?fw-team=$matches[1]&embed=true\";s:27:\"member/([^/]+)/trackback/?$\";s:34:\"index.php?fw-team=$matches[1]&tb=1\";s:47:\"member/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?fw-team=$matches[1]&feed=$matches[2]\";s:42:\"member/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?fw-team=$matches[1]&feed=$matches[2]\";s:35:\"member/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?fw-team=$matches[1]&paged=$matches[2]\";s:42:\"member/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?fw-team=$matches[1]&cpage=$matches[2]\";s:31:\"member/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?fw-team=$matches[1]&page=$matches[2]\";s:23:\"member/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"member/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"member/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"member/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"member/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"member/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"team/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?fw-team-category=$matches[1]&feed=$matches[2]\";s:40:\"team/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?fw-team-category=$matches[1]&feed=$matches[2]\";s:21:\"team/([^/]+)/embed/?$\";s:49:\"index.php?fw-team-category=$matches[1]&embed=true\";s:33:\"team/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?fw-team-category=$matches[1]&paged=$matches[2]\";s:15:\"team/([^/]+)/?$\";s:38:\"index.php?fw-team-category=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=7&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}","yes");
INSERT INTO `wp_options` VALUES("27080","loco_settings","a:3:{s:1:\"c\";s:18:\"Loco_data_Settings\";s:1:\"v\";i:0;s:1:\"d\";a:12:{s:7:\"version\";s:5:\"2.2.0\";s:8:\"gen_hash\";b:0;s:9:\"use_fuzzy\";b:1;s:11:\"num_backups\";i:1;s:9:\"pot_alias\";a:3:{i:0;s:10:\"default.po\";i:1;s:8:\"en_US.po\";i:2;s:5:\"en.po\";}s:9:\"php_alias\";a:2:{i:0;s:3:\"php\";i:1;s:4:\"twig\";}s:9:\"jsx_alias\";a:0:{}s:10:\"fs_persist\";b:0;s:10:\"fs_protect\";i:1;s:12:\"max_php_size\";s:4:\"100K\";s:11:\"po_utf8_bom\";b:0;s:8:\"po_width\";s:2:\"79\";}}","yes");
INSERT INTO `wp_options` VALUES("27081","_transient_loco_po_2e5a702bee3e487469c27fd5d56c402f","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:51:\"plugins/loco-translate/languages/loco-translate.pot\";s:5:\"bytes\";i:42818;s:5:\"mtime\";i:1544100345;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:379;s:1:\"p\";i:0;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("27091","loco_recent","a:3:{s:1:\"c\";s:21:\"Loco_data_RecentItems\";s:1:\"v\";i:0;s:1:\"d\";a:1:{s:6:\"bundle\";a:2:{s:30:\"plugin.loco-translate/loco.php\";i:1544100530;s:16:\"theme.dotdigital\";i:1544345849;}}}","no");
INSERT INTO `wp_options` VALUES("27104","_transient_loco_po_fa8eef12e4ef6caa57a5e3669a5f94ae","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:42:\"themes/dotdigital/languages/dotdigital.pot\";s:5:\"bytes\";i:257790;s:5:\"mtime\";i:1530828248;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:1002;s:1:\"p\";i:0;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("27118","_transient_wc_count_comments","O:8:\"stdClass\":7:{s:14:\"total_comments\";i:16;s:3:\"all\";i:16;s:8:\"approved\";s:2:\"16\";s:12:\"post-trashed\";s:1:\"7\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;}","yes");
INSERT INTO `wp_options` VALUES("27119","_transient_as_comment_count","O:8:\"stdClass\":7:{s:8:\"approved\";s:2:\"16\";s:12:\"post-trashed\";s:1:\"7\";s:14:\"total_comments\";i:16;s:3:\"all\";i:16;s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;}","yes");
INSERT INTO `wp_options` VALUES("27329","woocommerce_version","3.5.2","yes");
INSERT INTO `wp_options` VALUES("27348","db_upgraded","","yes");
INSERT INTO `wp_options` VALUES("27351","can_compress_scripts","0","no");
INSERT INTO `wp_options` VALUES("27481","_transient_loco_po_36ae53fefa554842377b6d5ffc74af59","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:33:\"languages/themes/dotdigital-ar.po\";s:5:\"bytes\";i:262956;s:5:\"mtime\";i:1544345849;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:1002;s:1:\"p\";i:62;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("28674","fw:bt:c:page-builder:60fc7b0b0d7290cdd07ad72762766841","a:3:{s:5:\"title\";s:3:\"123\";s:4:\"json\";s:1221:\"{\"type\":\"column\",\"width\":\"1_1\",\"_items\":[{\"type\":\"simple\",\"shortcode\":\"special_heading\",\"atts\":{\"heading_align\":\"text-right\",\"headings\":[{\"heading_tag\":\"h5\",\"heading_text\":\"شمال كارولينا: AvidXchange – 1.4 مليار دولار\",\"heading_text_color\":\"\",\"heading_text_weight\":\"medium\",\"heading_text_transform\":\"text-transform-none\",\"heading_custom_class\":\"\"},{\"heading_tag\":\"h5\",\"heading_text\":\"\",\"heading_text_color\":\"\",\"heading_text_weight\":\"medium\",\"heading_text_transform\":\"text-transform-none\",\"heading_custom_class\":\"\"}]},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"media_image\",\"atts\":{\"image\":{\"attachment_id\":\"7349\",\"url\":\"//atheltree.com/ar/wp-content/uploads/2018/12/8-1.jpg\"},\"width\":\"\",\"height\":\"\",\"link\":\"\",\"target\":\"_self\",\"responsive\":{\"hidden_lg\":{\"selected\":\"yes\"},\"hidden_md\":{\"selected\":\"yes\"},\"hidden_sm\":{\"selected\":\"yes\"},\"hidden_xs\":{\"selected\":\"yes\"}},\"custom_class\":\"\"},\"_items\":[]},{\"type\":\"simple\",\"shortcode\":\"text_block\",\"atts\":{\"text\":\"ما تقدمه الشركة: برنامج ادارة الفواتير المدفوعة
المقر الرئيسي: شارلوت، شمال كارولينا
\",\"text_custom_class\":\"\"},\"_items\":[]}]}\";s:7:\"created\";i:1545661903;}","no");
INSERT INTO `wp_options` VALUES("36750","_transient_loco_po_a75bacbb3d06a5b8ff708fe62671a9c6","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:56:\"plugins/all-in-one-seo-pack/i18n/all-in-one-seo-pack.pot\";s:5:\"bytes\";i:81553;s:5:\"mtime\";i:1545291039;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:770;s:1:\"p\";i:0;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("36751","_transient_loco_po_3cb76040d0a085c78a90ecba58a86120","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:35:\"plugins/booked/languages/booked.pot\";s:5:\"bytes\";i:66136;s:5:\"mtime\";i:1544271644;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:605;s:1:\"p\";i:0;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("36752","_transient_loco_po_ddcb71d9b0694c55e6c2c871a89a4ef8","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:49:\"plugins/envato-market/languages/envato-market.pot\";s:5:\"bytes\";i:12721;s:5:\"mtime\";i:1538415948;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:96;s:1:\"p\";i:0;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("36753","_transient_loco_po_2a739cf59631934755b7ade5660127a1","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:51:\"plugins/instagram-feed/languages/instagram-feed.pot\";s:5:\"bytes\";i:28909;s:5:\"mtime\";i:1544271644;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:260;s:1:\"p\";i:0;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("36754","_transient_loco_po_3fe71c2dc3df77ff956005a97f0a3628","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:77:\"plugins/translatepress-multilingual/languages/translatepress-multilingual.pot\";s:5:\"bytes\";i:22261;s:5:\"mtime\";i:1545291040;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:142;s:1:\"p\";i:0;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("36755","_transient_loco_po_5ce75fd32d3c5ba65d269fd068924825","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:41:\"plugins/unyson/framework/languages/fw.pot\";s:5:\"bytes\";i:235290;s:5:\"mtime\";i:1545291042;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:1300;s:1:\"p\";i:0;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("36756","_transient_loco_po_6ef84253457a06074312333c573a39de","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:71:\"plugins/velvet-blues-update-urls/languages/velvet-blues-update-urls.pot\";s:5:\"bytes\";i:5489;s:5:\"mtime\";i:1538569424;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:50;s:1:\"p\";i:0;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("36757","_transient_loco_po_dea45b11224cc2122bf922b8a1afe60e","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:59:\"plugins/widget-css-classes/languages/widget-css-classes.pot\";s:5:\"bytes\";i:4099;s:5:\"mtime\";i:1545291047;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:32;s:1:\"p\";i:0;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("36758","_transient_loco_po_5f89f4a1b28d76a9c25e34a6b0daf33c","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:50:\"plugins/woocommerce/i18n/languages/woocommerce.pot\";s:5:\"bytes\";i:771788;s:5:\"mtime\";i:1545548425;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:5637;s:1:\"p\";i:0;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("36759","_transient_loco_po_ef668b111b3e111d91a2cc0b9f8de60f","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:55:\"plugins/wp-fastest-cache/languages/wp-fastest-cache.pot\";s:5:\"bytes\";i:1581;s:5:\"mtime\";i:1545723704;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:15;s:1:\"p\";i:0;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("36760","_transient_loco_po_716c4869eef2e2dc00a960bccd93b7d5","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:76:\"plugins/velvet-blues-update-urls/languages/velvet-blues-update-urls-en_US.po\";s:5:\"bytes\";i:11881;s:5:\"mtime\";i:1538569424;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:45;s:1:\"p\";i:44;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("36761","_transient_loco_po_344eeb2de39204195355ef31376d9183","a:3:{s:1:\"c\";s:21:\"Loco_gettext_Metadata\";s:1:\"v\";i:0;s:1:\"d\";a:5:{s:5:\"rpath\";s:51:\"plugins/wp-user-avatar/lang/wp-user-avatar-en_US.po\";s:5:\"bytes\";i:17158;s:5:\"mtime\";i:1540892872;s:5:\"valid\";b:1;s:5:\"stats\";a:3:{s:1:\"t\";i:92;s:1:\"p\";i:0;s:1:\"f\";i:0;}}}","yes");
INSERT INTO `wp_options` VALUES("38423","wpfc-group","","yes");
INSERT INTO `wp_options` VALUES("40025","adminhash","a:2:{s:4:\"hash\";s:32:\"d467661c3ab4c5044372e00f8bacf3bb\";s:8:\"newemail\";s:17:\"msh@atheltree.com\";}","yes");
INSERT INTO `wp_options` VALUES("40321","fw-portfolio-category_children","a:1:{i:79;a:6:{i:0;i:166;i:1;i:167;i:2;i:168;i:3;i:169;i:4;i:171;i:5;i:185;}}","yes");
INSERT INTO `wp_options` VALUES("40359","_transient_is_multi_author","0","yes");
INSERT INTO `wp_options` VALUES("40839","_transient_timeout_apsc_facebook","1572278235","no");
INSERT INTO `wp_options` VALUES("40840","_transient_apsc_facebook","35.4","no");
INSERT INTO `wp_options` VALUES("41233","_transient_doing_cron","1574176865.6070630550384521484375","yes");
INSERT INTO `wp_options` VALUES("41268","_site_transient_update_core","O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:62:\"https://downloads.wordpress.org/release/ar/wordpress-5.2.4.zip\";s:6:\"locale\";s:2:\"ar\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:62:\"https://downloads.wordpress.org/release/ar/wordpress-5.2.4.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.4\";s:7:\"version\";s:5:\"5.2.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.4\";s:7:\"version\";s:5:\"5.2.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.4\";s:7:\"version\";s:5:\"5.2.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.1.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.1.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.1.3\";s:7:\"version\";s:5:\"5.1.3\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1572183980;s:15:\"version_checked\";s:5:\"5.0.7\";s:12:\"translations\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("41379","_transient_timeout_apsc_twitter","1572234754","no");
INSERT INTO `wp_options` VALUES("41380","_transient_apsc_twitter","0","no");
INSERT INTO `wp_options` VALUES("41390","_site_transient_timeout_theme_roots","1572185781","no");
INSERT INTO `wp_options` VALUES("41391","_site_transient_theme_roots","a:5:{s:10:\"dotdigital\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}","no");
INSERT INTO `wp_options` VALUES("41392","_site_transient_update_themes","O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1572183982;s:7:\"checked\";a:5:{s:10:\"dotdigital\";s:5:\"1.1.0\";s:13:\"twentyfifteen\";s:3:\"2.2\";s:14:\"twentynineteen\";s:3:\"1.1\";s:15:\"twentyseventeen\";s:3:\"1.9\";s:13:\"twentysixteen\";s:3:\"1.7\";}s:8:\"response\";a:4:{s:13:\"twentyfifteen\";a:6:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"2.5\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.2.5.zip\";s:8:\"requires\";s:3:\"4.1\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.1.4.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.2.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:13:\"twentysixteen\";a:6:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.2.0.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("41393","_site_transient_update_plugins","O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1572183982;s:7:\"checked\";a:25:{s:57:\"accesspress-social-counter/accesspress-social-counter.php\";s:5:\"1.7.5\";s:19:\"akismet/akismet.php\";s:3:\"4.1\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:6:\"2.10.1\";s:17:\"booked/booked.php\";s:5:\"2.2.2\";s:45:\"taxonomy-terms-order/taxonomy-terms-order.php\";s:5:\"1.5.5\";s:31:\"envato-market/envato-market.php\";s:5:\"2.0.1\";s:9:\"hello.php\";s:3:\"1.7\";s:33:\"instagram-feed/instagram-feed.php\";s:6:\"1.10.2\";s:23:\"loco-translate/loco.php\";s:5:\"2.2.0\";s:25:\"mwt-addons/mwt-addons.php\";s:5:\"1.0.2\";s:47:\"mwt-unyson-extensions/mwt-unyson-extensions.php\";s:3:\"1.0\";s:31:\"mwt-developer/mwt-developer.php\";s:5:\"1.0.1\";s:21:\"polylang/polylang.php\";s:3:\"2.5\";s:24:\"rev-slider/revslider.php\";s:7:\"5.4.7.3\";s:26:\"snazzy-maps/snazzymaps.php\";s:5:\"1.1.5\";s:34:\"tidio-live-chat/tidio-elements.php\";s:5:\"3.3.3\";s:37:\"translatepress-multilingual/index.php\";s:5:\"1.3.9\";s:17:\"unyson/unyson.php\";s:6:\"2.7.21\";s:53:\"velvet-blues-update-urls/velvet-blues-update-urls.php\";s:5:\"3.2.8\";s:41:\"widget-css-classes/widget-css-classes.php\";s:5:\"1.5.3\";s:27:\"woocommerce/woocommerce.php\";s:5:\"3.5.3\";s:19:\"wp-scss/wp-scss.php\";s:5:\"1.2.4\";s:35:\"wp-fastest-cache/wpFastestCache.php\";s:7:\"0.8.8.9\";s:45:\"wp-live-chat-support/wp-live-chat-support.php\";s:6:\"8.0.21\";s:33:\"wp-user-avatar/wp-user-avatar.php\";s:5:\"2.1.6\";}s:8:\"response\";a:17:{s:57:\"accesspress-social-counter/accesspress-social-counter.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:40:\"w.org/plugins/accesspress-social-counter\";s:4:\"slug\";s:26:\"accesspress-social-counter\";s:6:\"plugin\";s:57:\"accesspress-social-counter/accesspress-social-counter.php\";s:11:\"new_version\";s:5:\"1.8.4\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/accesspress-social-counter/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/accesspress-social-counter.1.8.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/accesspress-social-counter/assets/icon-256x256.jpg?rev=2129658\";s:2:\"1x\";s:79:\"https://ps.w.org/accesspress-social-counter/assets/icon-128x128.jpg?rev=2129658\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/accesspress-social-counter/assets/banner-1544x500.png?rev=2138076\";s:2:\"1x\";s:81:\"https://ps.w.org/accesspress-social-counter/assets/banner-772x250.png?rev=2138076\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:33:\"w.org/plugins/all-in-one-seo-pack\";s:4:\"slug\";s:19:\"all-in-one-seo-pack\";s:6:\"plugin\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:11:\"new_version\";s:6:\"3.2.10\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/all-in-one-seo-pack/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/all-in-one-seo-pack.3.2.10.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/all-in-one-seo-pack/assets/icon-256x256.png?rev=2075006\";s:2:\"1x\";s:72:\"https://ps.w.org/all-in-one-seo-pack/assets/icon-128x128.png?rev=2075006\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-1544x500.png?rev=1354894\";s:2:\"1x\";s:74:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-772x250.png?rev=1354894\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";s:5:\"5.2.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:45:\"taxonomy-terms-order/taxonomy-terms-order.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:34:\"w.org/plugins/taxonomy-terms-order\";s:4:\"slug\";s:20:\"taxonomy-terms-order\";s:6:\"plugin\";s:45:\"taxonomy-terms-order/taxonomy-terms-order.php\";s:11:\"new_version\";s:5:\"1.5.7\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/taxonomy-terms-order/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/taxonomy-terms-order.1.5.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/taxonomy-terms-order/assets/icon-256x256.png?rev=1564412\";s:2:\"1x\";s:73:\"https://ps.w.org/taxonomy-terms-order/assets/icon-128x128.png?rev=1564412\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/taxonomy-terms-order/assets/banner-1544x500.png?rev=1564412\";s:2:\"1x\";s:75:\"https://ps.w.org/taxonomy-terms-order/assets/banner-772x250.png?rev=1564412\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:9:\"hello.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:33:\"instagram-feed/instagram-feed.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/instagram-feed\";s:4:\"slug\";s:14:\"instagram-feed\";s:6:\"plugin\";s:33:\"instagram-feed/instagram-feed.php\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/instagram-feed/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/instagram-feed.2.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/instagram-feed/assets/icon-128x128.png?rev=2137676\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/instagram-feed/assets/banner-772x250.png?rev=2137676\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:23:\"loco-translate/loco.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/loco-translate\";s:4:\"slug\";s:14:\"loco-translate\";s:6:\"plugin\";s:23:\"loco-translate/loco.php\";s:11:\"new_version\";s:5:\"2.3.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/loco-translate/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/loco-translate.2.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/loco-translate/assets/icon-256x256.png?rev=1000676\";s:2:\"1x\";s:67:\"https://ps.w.org/loco-translate/assets/icon-128x128.png?rev=1000676\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/loco-translate/assets/banner-772x250.jpg?rev=745046\";}s:11:\"banners_rtl\";a:0:{}s:14:\"upgrade_notice\";s:54:\"\n- Various bug fixes and improvements
\n
\";s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";s:5:\"5.2.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:21:\"polylang/polylang.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:22:\"w.org/plugins/polylang\";s:4:\"slug\";s:8:\"polylang\";s:6:\"plugin\";s:21:\"polylang/polylang.php\";s:11:\"new_version\";s:5:\"2.6.5\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/polylang/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/polylang.2.6.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/polylang/assets/icon-256x256.png?rev=1331499\";s:2:\"1x\";s:61:\"https://ps.w.org/polylang/assets/icon-128x128.png?rev=1331499\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/polylang/assets/banner-1544x500.png?rev=1405299\";s:2:\"1x\";s:63:\"https://ps.w.org/polylang/assets/banner-772x250.png?rev=1405299\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:34:\"tidio-live-chat/tidio-elements.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/tidio-live-chat\";s:4:\"slug\";s:15:\"tidio-live-chat\";s:6:\"plugin\";s:34:\"tidio-live-chat/tidio-elements.php\";s:11:\"new_version\";s:5:\"4.1.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/tidio-live-chat/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/tidio-live-chat.4.1.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/tidio-live-chat/assets/icon-256x256.jpg?rev=1703686\";s:2:\"1x\";s:68:\"https://ps.w.org/tidio-live-chat/assets/icon-128x128.jpg?rev=1703686\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/tidio-live-chat/assets/banner-1544x500.jpg?rev=1703745\";s:2:\"1x\";s:70:\"https://ps.w.org/tidio-live-chat/assets/banner-772x250.jpg?rev=1703745\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:37:\"translatepress-multilingual/index.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:41:\"w.org/plugins/translatepress-multilingual\";s:4:\"slug\";s:27:\"translatepress-multilingual\";s:6:\"plugin\";s:37:\"translatepress-multilingual/index.php\";s:11:\"new_version\";s:5:\"1.6.1\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/translatepress-multilingual/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/translatepress-multilingual.1.6.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/translatepress-multilingual/assets/icon-256x256.png?rev=1722670\";s:2:\"1x\";s:80:\"https://ps.w.org/translatepress-multilingual/assets/icon-128x128.png?rev=1722670\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/translatepress-multilingual/assets/banner-1544x500.png?rev=1722670\";s:2:\"1x\";s:82:\"https://ps.w.org/translatepress-multilingual/assets/banner-772x250.png?rev=1722670\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:17:\"unyson/unyson.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:20:\"w.org/plugins/unyson\";s:4:\"slug\";s:6:\"unyson\";s:6:\"plugin\";s:17:\"unyson/unyson.php\";s:11:\"new_version\";s:6:\"2.7.22\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/unyson/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/unyson.2.7.22.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/unyson/assets/icon-256x256.jpg?rev=1034261\";s:2:\"1x\";s:59:\"https://ps.w.org/unyson/assets/icon-128x128.jpg?rev=1034260\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/unyson/assets/banner-1544x500.png?rev=1034271\";s:2:\"1x\";s:61:\"https://ps.w.org/unyson/assets/banner-772x250.png?rev=1034270\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.0.7\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:53:\"velvet-blues-update-urls/velvet-blues-update-urls.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:38:\"w.org/plugins/velvet-blues-update-urls\";s:4:\"slug\";s:24:\"velvet-blues-update-urls\";s:6:\"plugin\";s:53:\"velvet-blues-update-urls/velvet-blues-update-urls.php\";s:11:\"new_version\";s:5:\"3.2.9\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/velvet-blues-update-urls/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/velvet-blues-update-urls.3.2.9.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:75:\"https://s.w.org/plugins/geopattern-icon/velvet-blues-update-urls_727172.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/velvet-blues-update-urls/assets/banner-772x250.jpg?rev=486343\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.1.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:41:\"widget-css-classes/widget-css-classes.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:32:\"w.org/plugins/widget-css-classes\";s:4:\"slug\";s:18:\"widget-css-classes\";s:6:\"plugin\";s:41:\"widget-css-classes/widget-css-classes.php\";s:11:\"new_version\";s:5:\"1.5.4\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/widget-css-classes/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/widget-css-classes.1.5.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/widget-css-classes/assets/icon-256x256.jpg?rev=1130657\";s:2:\"1x\";s:71:\"https://ps.w.org/widget-css-classes/assets/icon-128x128.jpg?rev=1130657\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/widget-css-classes/assets/banner-1544x500.jpg?rev=1130650\";s:2:\"1x\";s:73:\"https://ps.w.org/widget-css-classes/assets/banner-772x250.jpg?rev=1130650\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";s:5:\"5.2.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"3.7.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2075035\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2075035\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2075035\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2075035\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:35:\"wp-fastest-cache/wpFastestCache.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/wp-fastest-cache\";s:4:\"slug\";s:16:\"wp-fastest-cache\";s:6:\"plugin\";s:35:\"wp-fastest-cache/wpFastestCache.php\";s:11:\"new_version\";s:7:\"0.8.9.9\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/wp-fastest-cache/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wp-fastest-cache.0.8.9.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wp-fastest-cache/assets/icon-256x256.png?rev=2064586\";s:2:\"1x\";s:69:\"https://ps.w.org/wp-fastest-cache/assets/icon-128x128.png?rev=1068904\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/wp-fastest-cache/assets/banner-772x250.jpg?rev=1064099\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:45:\"wp-live-chat-support/wp-live-chat-support.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:34:\"w.org/plugins/wp-live-chat-support\";s:4:\"slug\";s:20:\"wp-live-chat-support\";s:6:\"plugin\";s:45:\"wp-live-chat-support/wp-live-chat-support.php\";s:11:\"new_version\";s:5:\"8.1.2\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/wp-live-chat-support/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/wp-live-chat-support.8.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wp-live-chat-support/assets/icon-256x256.png?rev=2173483\";s:2:\"1x\";s:73:\"https://ps.w.org/wp-live-chat-support/assets/icon-128x128.png?rev=2173483\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/wp-live-chat-support/assets/banner-1544x500.jpg?rev=2173483\";s:2:\"1x\";s:75:\"https://ps.w.org/wp-live-chat-support/assets/banner-772x250.jpg?rev=2173483\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";s:3:\"5.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:33:\"wp-user-avatar/wp-user-avatar.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/wp-user-avatar\";s:4:\"slug\";s:14:\"wp-user-avatar\";s:6:\"plugin\";s:33:\"wp-user-avatar/wp-user-avatar.php\";s:11:\"new_version\";s:5:\"2.2.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/wp-user-avatar/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/wp-user-avatar.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-user-avatar/assets/icon-256x256.png?rev=1755722\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-user-avatar/assets/icon-128x128.png?rev=1755722\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/wp-user-avatar/assets/banner-772x250.png?rev=882713\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:26:\"snazzy-maps/snazzymaps.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/snazzy-maps\";s:4:\"slug\";s:11:\"snazzy-maps\";s:6:\"plugin\";s:26:\"snazzy-maps/snazzymaps.php\";s:11:\"new_version\";s:5:\"1.1.5\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/snazzy-maps/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/snazzy-maps.1.1.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/snazzy-maps/assets/icon-256x256.png?rev=1130667\";s:2:\"1x\";s:64:\"https://ps.w.org/snazzy-maps/assets/icon-128x128.png?rev=1130680\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/snazzy-maps/assets/banner-1544x500.png?rev=1102757\";s:2:\"1x\";s:66:\"https://ps.w.org/snazzy-maps/assets/banner-772x250.png?rev=1102757\";}s:11:\"banners_rtl\";a:0:{}}s:19:\"wp-scss/wp-scss.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/wp-scss\";s:4:\"slug\";s:7:\"wp-scss\";s:6:\"plugin\";s:19:\"wp-scss/wp-scss.php\";s:11:\"new_version\";s:5:\"1.2.4\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/wp-scss/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/wp-scss.1.2.4.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:58:\"https://s.w.org/plugins/geopattern-icon/wp-scss_222222.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/wp-scss/assets/banner-772x250.png?rev=810420\";}s:11:\"banners_rtl\";a:0:{}}}}","no");
INSERT INTO `wp_options` VALUES("41406","_site_transient_timeout_envato_market_themes","1572256059","no");
INSERT INTO `wp_options` VALUES("41407","_site_transient_envato_market_themes","a:4:{s:9:\"purchased\";a:0:{}s:6:\"active\";a:0:{}s:9:\"installed\";a:0:{}s:7:\"install\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("41408","_site_transient_timeout_envato_market_plugins","1572256059","no");
INSERT INTO `wp_options` VALUES("41409","_site_transient_envato_market_plugins","a:4:{s:9:\"purchased\";a:0:{}s:6:\"active\";a:0:{}s:9:\"installed\";a:0:{}s:7:\"install\";a:0:{}}","no");
INSERT INTO `wp_options` VALUES("41412","rs-templates-new","","no");
INSERT INTO `wp_options` VALUES("41413","rs-templates","a:2:{s:6:\"slider\";a:389:{i:0;a:21:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"Our classic, full-width carousel example. Drag, swipe or click to navigate!\r\n\";s:11:\"setup_notes\";s:284:\"This is a \"Default\" content carousel. Just edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:21:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" A classic slideshow example with timer, bullets and arrow navigation.\r\n\";s:11:\"setup_notes\";s:282:\"This is a \"Default\" content slider. Just edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:21:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.\r\n\";s:11:\"setup_notes\";s:282:\"This is a \"Default\" content slider. Just edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:21:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\" This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!\r\n\";s:11:\"setup_notes\";s:415:\"The content source is set to \"Facebook Stream\". Make sure to input your correct API information in the slider settings.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:21:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\" A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.\r\n\";s:11:\"setup_notes\";s:415:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:21:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!\r\n\";s:11:\"setup_notes\";s:413:\"The content source is set to \"Flickr Stream\". Make sure to input your correct API information in the slider settings.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:21:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.\r\n\";s:11:\"setup_notes\";s:583:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nInstructions for changing the menu.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:21:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\" A swipe-controlled carousel with an additional tab-based navigation.\r\n\r\n\";s:11:\"setup_notes\";s:282:\"This is a \"Default\" content slider. Just edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:21:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"A tab-based navigation, a slideshow timer and cool animations make this slider interesting!\r\n\";s:11:\"setup_notes\";s:282:\"This is a \"Default\" content slider. Just edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:21:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"A commonly used full-width image hero block with texts.\r\n\";s:11:\"setup_notes\";s:300:\"This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:21:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!\r\n\";s:11:\"setup_notes\";s:416:\"The content source is set to \"Instagram Stream\". Make sure to input your correct API information in the slider settings.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:21:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.\r\n\";s:11:\"setup_notes\";s:583:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nInstructions for changing the menu.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:21:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" A slightly stripped down version of the main preview slider.\r\n\";s:11:\"setup_notes\";s:282:\"This is a \"Default\" content slider. Just edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:21:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"A media gallery example with Vimeo, HTML5 and Youtube videos.\r\n\";s:11:\"setup_notes\";s:282:\"This is a \"Default\" content slider. Just edit the slides to change media and titles.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:21:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.\r\n\";s:11:\"setup_notes\";s:289:\"This is a \"Default\" content slider. Just edit the slides to change media and caption texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:21:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"A hero block with HTML5 background video that plays when entering the screen.\r\n\";s:11:\"setup_notes\";s:300:\"This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:21:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"A news gallery slideshow with tab navigation. Great for any blog!\r\n\";s:11:\"setup_notes\";s:282:\"This is a \"Default\" content slider. Just edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:21:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\" This slider is automatically populated by WordPress posts.\r\n\";s:11:\"setup_notes\";s:423:\"The content source is set to \"Post-Based Slider\". Make sure to select the post type you want to display in the slider settings.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:21:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"A image hero block with ken burns effect.\r\n\";s:11:\"setup_notes\";s:300:\"This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:21:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"A Vimeo background video hero block with play / pause buttons.\r\n\";s:11:\"setup_notes\";s:289:\"This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:21:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"This hero block uses a custom styled Mailchimp newsletter signup field.\r\n\";s:11:\"setup_notes\";s:435:\"This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and Mailchimp code.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:21:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"A full-screen slider with a layer based navigation and sleek content elements.\r\n\";s:11:\"setup_notes\";s:583:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nInstructions for changing the menu.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:21:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.\r\n\";s:11:\"setup_notes\";s:583:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nInstructions for changing the menu.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:21:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.\r\n\";s:11:\"setup_notes\";s:583:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nInstructions for changing the menu.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:21:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"This hero block uses a custom styled input field to show search results on a WordPress site.\r\n\";s:11:\"setup_notes\";s:320:\"This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:21:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"A fancy carousel that rotates, fades and scales slider items.\r\n\r\n\";s:11:\"setup_notes\";s:284:\"This is a \"Default\" content carousel. Just edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:21:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"An sports themed image hero block with buttons.\r\n\";s:11:\"setup_notes\";s:300:\"This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:21:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!\r\n\";s:11:\"setup_notes\";s:414:\"The content source is set to \"Twitter Stream\". Make sure to input your correct API information in the slider settings.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:21:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!\r\n\";s:11:\"setup_notes\";s:412:\"The content source is set to \"Vimeo Stream\". Make sure to input your correct API information in the slider settings.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:21:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"A commonly used Vimeo video background hero block.\r\n\";s:11:\"setup_notes\";s:464:\"This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.
\r\nScreencast for mobile video considerations.\r\n
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:21:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.\r\n\";s:11:\"setup_notes\";s:583:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nInstructions for changing the menu.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:21:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"A modern hero block with three common devices. The screens of each device can be changed easily!\r\n\";s:11:\"setup_notes\";s:300:\"This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:21:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"A modern hero block with three common devices. The screens of each device can be changed easily!\r\n\";s:11:\"setup_notes\";s:289:\"This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:21:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.\r\n\";s:11:\"setup_notes\";s:583:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nInstructions for changing the menu.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:21:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\" This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!\r\n\";s:11:\"setup_notes\";s:414:\"The content source is set to \"YouTube Stream\". Make sure to input your correct API information in the slider settings.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:21:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:104:\"A YouTube video background hero block.\r\n\";s:11:\"setup_notes\";s:633:\"This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.
\r\nScreencast for mobile video considerations.\r\n
\r\nLearn how to enable sound for the background video
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:21:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"A full-screen slider with a unique scroll effect and big, bold text.\r\n\";s:11:\"setup_notes\";s:485:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
For further configuration options please view the \"Custom CSS/JS\" section in the slider settings.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:21:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"A very unique full-width slider that uses \"Layer Actions\" to their potential.\r\n\";s:11:\"setup_notes\";s:371:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:21:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"A fancy carousel with detail content on each slide. \"Layer Actions\" are used to show and hide layers.\r\n\";s:11:\"setup_notes\";s:371:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:21:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"A full-screen hero block with unique animated text and blur effects.\r\n\";s:11:\"setup_notes\";s:495:\"This is a \"Default\" hero slider. Edit the slide to change the background media and texts.
For further configuration options please view the \"Custom CSS/JS\" section in the slider settings.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:21:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"A slideshow example with static captions layers above a rotating image background.\r\n\";s:11:\"setup_notes\";s:415:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:21:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"A full-screen slider that uses \"Layer Actions\" to their potential.\r\n\";s:11:\"setup_notes\";s:371:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:21:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"A slider with a full-screen button that uses \"Layer Actions\" to their potential.\r\n\";s:11:\"setup_notes\";s:297:\"This is a \"Default\" content slider. Just edit the slides to change the background images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:21:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"A full-screen slider with a unique vertical navigation and 3D-parallax effects.\r\n\";s:11:\"setup_notes\";s:290:\"This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:21:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using \"Layer Actions\".\r\n\r\n\";s:11:\"setup_notes\";s:300:\"This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:21:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"A 3D-parallax effect full-screen slider.\r\n\";s:11:\"setup_notes\";s:446:\"This is a \"Default\" content slider. Just edit the slides to change images and texts.
\r\nScreencast for mobile video considerations.\r\n
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:21:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.\r\n\";s:11:\"setup_notes\";s:282:\"This is a \"Default\" content slider. Just edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:21:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!\r\n\";s:11:\"setup_notes\";s:420:\"The content source is set to \"WooCommerce Slider\". Make sure to select the products you want to show in the slider settings.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:21:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!\r\n\";s:11:\"setup_notes\";s:420:\"The content source is set to \"WooCommerce Slider\". Make sure to select the products you want to show in the slider settings.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:21:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"A full-screen hero block slider that shows different background layers on button hover using \"Layer Actions\".\r\n\";s:11:\"setup_notes\";s:464:\"This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.
\r\nScreencast for mobile video considerations.\r\n
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:21:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" A full-screen hero block slider with ken burns effect and video modal on button click. \"Layer Actions\" are used to achieve this effect.\r\n\";s:11:\"setup_notes\";s:371:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:21:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"A team slider that changes slides and displays additional information on thumbnail hover. It uses \"Layer Actions\" to achieve this effect.\r\n\";s:11:\"setup_notes\";s:657:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.
Some content is in \"Static / Global Layers\"
\r\nLearn how to modify the thumbnails
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:21:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" A team carousel that changes slides and displays additional information on thumbnail hover. It uses \"Layer Actions\" to achieve this effect.\r\n\";s:11:\"setup_notes\";s:659:\"This is a \"Default\" content carousel. Edit the slides to change images and texts.
It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.
Some content is in \"Static / Global Layers\"
\r\nLearn how to modify the thumbnails
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:21:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" A full-screen youtube gallery with 4K videos as an example. \"Layer Actions\" are used to breathe life into navigation elements.\r\n\";s:11:\"setup_notes\";s:535:\"This is a \"Default\" content slider. Edit the slides to change videos and texts.
It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.
\r\nScreencast for mobile video considerations.\r\n
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:21:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" A very unique full-screen slider that uses \"Layer Actions\" to their potential.\r\n\";s:11:\"setup_notes\";s:509:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.
Some content is in \"Static / Global Layers\"
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:21:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"A full-screen slider that can be used as a \"Coming Soon\" page. \"Layer Actions\" are used to achieve various interaction possibilities.\r\n\";s:11:\"setup_notes\";s:638:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
For further configuration options please view the \"Custom CSS/JS\" section in the slider settings.
\r\nInstructions for how to change the date.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:21:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"A slider with multiple christmas themed slides and a neat snow fall effect.\r\n\";s:11:\"setup_notes\";s:485:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
For further configuration options please view the \"Custom CSS/JS\" section in the slider settings.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:21:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" A rock band themed hero block slider with an embedded SoundCloud element.\r\n\";s:11:\"setup_notes\";s:464:\"This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.
\r\nScreencast for mobile video considerations.\r\n
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:21:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.\r\n\";s:11:\"setup_notes\";s:415:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:21:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"A full-screen hero block that can be used as an app landing page. The detail view is build using \"Layer Actions\".\r\n\";s:11:\"setup_notes\";s:371:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:21:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"A beautiful desk scene with a cool reveal effect when scrolling down.\r\n\";s:11:\"setup_notes\";s:300:\"This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:21:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"A slideshow example with clean content and thumbnail navigation.\r\n\r\n\";s:11:\"setup_notes\";s:282:\"This is a \"Default\" content slider. Just edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:21:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"A photo gallery suitable to display your images using \"Layer Actions\" to their potential.\r\n\";s:11:\"setup_notes\";s:415:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:21:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.\r\n\";s:11:\"setup_notes\";s:407:\"Please follow the setup guide on the \"Standard WP Gallery\" add-on page.
Some content is in \"Static / Global Layers\"
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:21:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\" This slider is automatically populated by WordPress posts.\r\n\";s:11:\"setup_notes\";s:423:\"The content source is set to \"Post-Based Slider\". Make sure to select the post type you want to display in the slider settings.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:21:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"This is the example slider from the Whiteboard add-on preview.
\"Layer Actions\" are used to achieve certain effects.\r\n\";s:11:\"setup_notes\";s:541:\"This slider template requires the Whiteboard add-on to be installed. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:21:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"A full-screen slider with an elegant fade-out parallax effect. \"Layer Actions\" are used for links on layers.\r\n\";s:11:\"setup_notes\";s:493:\"This is a \"Default\" content slider. Edit the slides to change images, videos and texts.
For further configuration options please view the \"Custom CSS/JS\" section in the slider settings.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:24:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:24:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:24:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:24:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:24:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:422:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:24:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:24:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:24:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:24:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:24:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:24:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:24:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:24:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:24:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:24:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:24:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:21:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"A full-width slider with navigation direction-based transitions.\r\n\";s:11:\"setup_notes\";s:277:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:21:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"A full-width slider with navigation direction-based transitions.\r\n\";s:11:\"setup_notes\";s:277:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:21:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"A full-screen slider that contains a menu with slide blur effect.\r\n\";s:11:\"setup_notes\";s:415:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:21:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"A full-screen slider with hidden slides that are triggered via \"Layer Actions\".\r\n\";s:11:\"setup_notes\";s:415:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:24:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:24:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:24:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:24:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:24:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:24:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:24:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:24:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:21:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"A full-screen slider with mouse controlled parallax effects. \"Layer Actions\" are used for links on layers.\r\n\";s:11:\"setup_notes\";s:415:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
Some content is in \"Static / Global Layers\"
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:21:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"A full-screen slider with unique parallax scroll effect. \"Layer Actions\" are used for links on layers.\r\n\";s:11:\"setup_notes\";s:277:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:24:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:890:\"\r\nIn the Custom JavaScript section of the \"Minimal Menu\" Template you can scroll down to the color change section.
\r\nFor any elements you want to background color change in addition to the sites body, add this class to the Layers Attributes \".tp-colorchange\".
\r\nIf you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:24:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:890:\"\r\nIn the Custom JavaScript section of the \"Minimal Menu\" Template you can scroll down to the color change section.
\r\nFor any elements you want to background color change in addition to the sites body, add this class to the Layers Attributes \".tp-colorchange\".
\r\nIf you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:24:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:890:\"\r\nIn the Custom JavaScript section of the \"Minimal Menu\" Template you can scroll down to the color change section.
\r\nFor any elements you want to background color change in addition to the sites body, add this class to the Layers Attributes \".tp-colorchange\".
\r\nIf you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:24:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:890:\"\r\nIn the Custom JavaScript section of the \"Minimal Menu\" Template you can scroll down to the color change section.
\r\nFor any elements you want to background color change in addition to the sites body, add this class to the Layers Attributes \".tp-colorchange\".
\r\nIf you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:24:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:890:\"\r\nIn the Custom JavaScript section of the \"Minimal Menu\" Template you can scroll down to the color change section.
\r\nFor any elements you want to background color change in addition to the sites body, add this class to the Layers Attributes \".tp-colorchange\".
\r\nIf you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:21:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"This full-screen hero slider features sequentially animated texts and cool parallax elements.\r\n\";s:11:\"setup_notes\";s:300:\"This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:21:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! \"Layer Actions\" are used for links on layers.\r\n\";s:11:\"setup_notes\";s:277:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:21:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/wordpress-news-header/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"A full-screen slider that is a perfect fit for displaying news on your websites header! Check out \"Layer Actions\" to add links to buttons.\r\n\";s:11:\"setup_notes\";s:277:\"This is a \"Default\" content slider. Edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:24:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:181:\"The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.\r\n\";s:11:\"setup_notes\";s:890:\"\r\nIn the Custom JavaScript section of the \"Minimal Menu\" Template you can scroll down to the color change section.
\r\nFor any elements you want to background color change in addition to the sites body, add this class to the Layers Attributes \".tp-colorchange\".
\r\nIf you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:24:{s:2:\"id\";s:3:\"108\";s:5:\"title\";s:23:\"Website Builder Package\";s:5:\"alias\";s:22:\"websitebuilder-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"websitebuilder-package\";s:3:\"img\";s:29:\"packages/template_group_2.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:191:\"The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:24:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"This Minimal Website Template has some sleek parallax effects and on-demand loading modules.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:24:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"This Minimal Website Template has some sleek parallax effects and on-demand loading modules.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:21:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-typewriter-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"This is the example slider from the Typewriter add-on preview.
\"Layer Actions\" are used for links on buttons.\r\n\";s:11:\"setup_notes\";s:403:\"This slider template requires the Typewriter add-on to be installed. Edit the slides to change images and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:21:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/blend-mode-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.\r\n\";s:11:\"setup_notes\";s:300:\"This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.
\r\nCheckout our Documentation for basic help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:24:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:112;a:24:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:113;a:24:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:114;a:24:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:115;a:24:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:116;a:24:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:117;a:24:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:118;a:24:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:119;a:24:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:120;a:24:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:121;a:24:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:122;a:24:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:123;a:24:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:24:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:125;a:24:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:126;a:24:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:127;a:24:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:128;a:24:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:129;a:24:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:130;a:24:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"You can use this slider as a module on your website or install it as part of a slider pack.\r\n\";s:11:\"setup_notes\";s:542:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nFor using the social sharing buttons, please install the social sharing add-on.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:131;a:21:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/80s-style-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"This intro hero block takes you back to the 80\'s with some funky effects.\r\n\";s:11:\"setup_notes\";s:317:\"This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:21:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/blur-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"This slider makes use of the brand new blur effects available with version 5.3.1.\r\n\";s:11:\"setup_notes\";s:315:\"This is a \"Default\" content slider. Just edit the slides to change the background images and texts.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:21:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/coming-soon-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"This slider template makes use of the brand new Coming Soon Add-On.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:24:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:135;a:21:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/snow-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:21:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/particle-effect-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"A unique particle effect that can serve as a stunning intro for your website.\r\n\";s:11:\"setup_notes\";s:442:\"The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".\r\n\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:21:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/particle-effect-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"A unique particle effect that can serve as a stunning intro for your website.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:21:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/particle-background-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"A unique particle effect that can serve as a stunning intro for your website.\r\n\";s:11:\"setup_notes\";s:437:\"The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".\r\n\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:21:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.\r\n\";s:11:\"setup_notes\";s:387:\"The navigation for the slides is found in the Static Layers.\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:21:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:21:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.3.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:142;a:21:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/404-error-page-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.3.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"{\"1\":{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}}\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:143;a:21:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-carousel-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:21:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/filmstrip-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:180:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:145;a:21:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/space-opera-presentation/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:146;a:21:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/website-intro-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:147;a:21:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/minimal-mask-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:148;a:21:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:249:\"This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:149;a:21:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:150;a:21:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:192:\"This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:151;a:24:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";i:3;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:152;a:24:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"You can use this slider as a module on your website or install it as part of a slider pack. \r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:153;a:24:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:154;a:24:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:155;a:24:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:156;a:24:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:157;a:24:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:158;a:24:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:159;a:24:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:160;a:24:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:161;a:24:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:162;a:24:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:163;a:24:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:164;a:24:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:165;a:24:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:166;a:21:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/before-after-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.\r\n\";s:11:\"setup_notes\";s:320:\"How to install Add-Ons.\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:167;a:21:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:165:\"Looking to sell products effectively? Our product showcase slider is just what you are looking for!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:168;a:21:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/overexposure-transition-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"Subtle overexposure transitions and smooth color fade effects make this slider stand out.\r\n\";s:11:\"setup_notes\";s:320:\"How to install Add-Ons.\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:169;a:21:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/parallax-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:148:\"A strikingly colourful header for your website with super smooth parallax effects.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:170;a:24:{s:2:\"id\";s:3:\"173\";s:5:\"title\";s:24:\"TechCo One-Pager Package\";s:5:\"alias\";s:24:\"techco-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"techco-one-pager-package\";s:3:\"img\";s:28:\"packages/techco_overview.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:266:\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:171;a:24:{s:2:\"id\";s:3:\"174\";s:5:\"title\";s:11:\"TechCo Menu\";s:5:\"alias\";s:11:\"techco-menu\";s:3:\"zip\";s:21:\"packs/techco-menu.zip\";s:3:\"uid\";s:32:\"55e5efee828cdf1ff7e2d3b90a301ea9\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:172;a:24:{s:2:\"id\";s:3:\"175\";s:5:\"title\";s:13:\"TechCo Header\";s:5:\"alias\";s:13:\"techco-header\";s:3:\"zip\";s:23:\"packs/techco-header.zip\";s:3:\"uid\";s:32:\"fb574d1376de9b1e408c91f51e6497d7\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:173;a:24:{s:2:\"id\";s:3:\"176\";s:5:\"title\";s:12:\"TechCo About\";s:5:\"alias\";s:12:\"techco-about\";s:3:\"zip\";s:22:\"packs/techco-about.zip\";s:3:\"uid\";s:32:\"ba216da8231e55118d87e37d2358812c\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:174;a:24:{s:2:\"id\";s:3:\"177\";s:5:\"title\";s:15:\"TechCo Services\";s:5:\"alias\";s:15:\"techco-services\";s:3:\"zip\";s:25:\"packs/techco-services.zip\";s:3:\"uid\";s:32:\"ef4a8ddbb5e1136133f7bc1227248e22\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:175;a:24:{s:2:\"id\";s:3:\"178\";s:5:\"title\";s:12:\"TechCo Video\";s:5:\"alias\";s:12:\"techco-video\";s:3:\"zip\";s:22:\"packs/techco-video.zip\";s:3:\"uid\";s:32:\"d7bb92281d05f39f9bc9eca71f90e402\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:176;a:24:{s:2:\"id\";s:3:\"179\";s:5:\"title\";s:13:\"TechCo Prices\";s:5:\"alias\";s:13:\"techco-prices\";s:3:\"zip\";s:23:\"packs/techco-prices.zip\";s:3:\"uid\";s:32:\"6291f404efbea12bb181352aba71ef11\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:177;a:24:{s:2:\"id\";s:3:\"180\";s:5:\"title\";s:19:\"TechCo Testimonials\";s:5:\"alias\";s:19:\"techco-testimonials\";s:3:\"zip\";s:29:\"packs/techco-testimonials.zip\";s:3:\"uid\";s:32:\"3460bd51f6b80599266fecb7fbb918be\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:178;a:24:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:13:\"TechCo Footer\";s:5:\"alias\";s:13:\"techco-footer\";s:3:\"zip\";s:23:\"packs/techco-footer.zip\";s:3:\"uid\";s:32:\"640abcd549137520461a4a71ff758a3b\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:179;a:21:{s:2:\"id\";s:3:\"182\";s:5:\"title\";s:12:\"Live Weather\";s:5:\"alias\";s:7:\"weather\";s:3:\"zip\";s:11:\"weather.zip\";s:3:\"uid\";s:32:\"aab92e69374e4c7b8c6741fe02e574b9\";s:3:\"img\";s:18:\"weather/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-live-weather-add-on/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:173:\"Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-weather-addon\\/revslider-weather-addon.php\",\"name\":\"Live Weather Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:180;a:21:{s:2:\"id\";s:3:\"183\";s:5:\"title\";s:17:\"360 Panorama Tour\";s:5:\"alias\";s:11:\"360panorama\";s:3:\"zip\";s:15:\"360panorama.zip\";s:3:\"uid\";s:32:\"332720fdacdbb38f65e8327a2a96c52d\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"An example template for our Panorama 360 tour add-on, created for the real estate market.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:165:\"[{\"path\":\"revslider-panorama-addon\\/revslider-panorama-addon.php\",\"name\":\"Panorama AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:181;a:21:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:14:\"Duotone Add-on\";s:5:\"alias\";s:14:\"duotone-add-on\";s:3:\"zip\";s:18:\"duotone-add-on.zip\";s:3:\"uid\";s:32:\"a428c6f363b3146e96d20a6f44958922\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:168:\"This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php\",\"name\":\"Duotone AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:182;a:21:{s:2:\"id\";s:3:\"185\";s:5:\"title\";s:13:\"Reveal Add-on\";s:5:\"alias\";s:13:\"reveal-add-on\";s:3:\"zip\";s:17:\"reveal-add-on.zip\";s:3:\"uid\";s:32:\"7fa7525d8ff7fa7365cb98a437e88e32\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-content-reveal-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:204:\"An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:337:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:201;a:21:{s:2:\"id\";s:3:\"210\";s:5:\"title\";s:21:\"Cryptocurrency Prices\";s:5:\"alias\";s:12:\"cryptoslider\";s:3:\"zip\";s:16:\"cryptoslider.zip\";s:3:\"uid\";s:32:\"c4b02210387f11946223977e940d9e9e\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";s:7:\"preview\";s:95:\"https://revolution.themepunch.com/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin/\";s:7:\"version\";s:5:\"1.0.4\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:209:\"This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.\r\n\";s:11:\"setup_notes\";s:410:\"Please refer to the \"Custom JavaScript\" section of this sliders settings, for info on how to modify currencies. Provide a class to the row / column / group where the currency text elements are located in.\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:202;a:24:{s:2:\"id\";s:3:\"211\";s:5:\"title\";s:18:\"Immersion One Page\";s:5:\"alias\";s:26:\"immersion-one-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"immersion-one-page-package\";s:3:\"img\";s:31:\"packages/immersion_overview.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:292:\"The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:343:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:203;a:24:{s:2:\"id\";s:3:\"212\";s:5:\"title\";s:16:\"Immersion Header\";s:5:\"alias\";s:16:\"immersion_header\";s:3:\"zip\";s:26:\"packs/immersion_header.zip\";s:3:\"uid\";s:32:\"853da51256308b341ecd030bd4883229\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:204;a:24:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:19:\"Immersion Mountains\";s:5:\"alias\";s:19:\"immersion-mountains\";s:3:\"zip\";s:29:\"packs/immersion-mountains.zip\";s:3:\"uid\";s:32:\"817167eb3fe22b7e065ba210cbe6d53c\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:205;a:24:{s:2:\"id\";s:3:\"214\";s:5:\"title\";s:17:\"Immersion Product\";s:5:\"alias\";s:17:\"immersion-product\";s:3:\"zip\";s:27:\"packs/immersion-product.zip\";s:3:\"uid\";s:32:\"64134f263484d2bbcd7ef088ffbbfb4b\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:206;a:24:{s:2:\"id\";s:3:\"215\";s:5:\"title\";s:16:\"Immersion Design\";s:5:\"alias\";s:16:\"immersion-design\";s:3:\"zip\";s:26:\"packs/immersion-design.zip\";s:3:\"uid\";s:32:\"91e1d77c1a2826438763804f4d02bc26\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:207;a:24:{s:2:\"id\";s:3:\"216\";s:5:\"title\";s:22:\"Immersion Phototgraphy\";s:5:\"alias\";s:21:\"immersion-photography\";s:3:\"zip\";s:31:\"packs/immersion-photography.zip\";s:3:\"uid\";s:32:\"e3ddf0c577b09740f5cbf2e38ffd684d\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:208;a:24:{s:2:\"id\";s:3:\"217\";s:5:\"title\";s:14:\"Immersion Grid\";s:5:\"alias\";s:14:\"immersion-grid\";s:3:\"zip\";s:24:\"packs/immersion-grid.zip\";s:3:\"uid\";s:32:\"b6903868189bb83b2c7a852fde3a7dc3\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:209;a:21:{s:2:\"id\";s:3:\"218\";s:5:\"title\";s:18:\"Funky Intro Slider\";s:5:\"alias\";s:11:\"funkyslider\";s:3:\"zip\";s:15:\"funkyslider.zip\";s:3:\"uid\";s:32:\"2d4187e3fdad19b976be335253c8925d\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:210;a:24:{s:2:\"id\";s:3:\"219\";s:5:\"title\";s:19:\"Clear View Magazine\";s:5:\"alias\";s:27:\"clear-view-magazine-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"clear-view-magazine-package\";s:3:\"img\";s:41:\"packages/clear_view_magazine_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:211;a:24:{s:2:\"id\";s:3:\"220\";s:5:\"title\";s:15:\"Clear View Menu\";s:5:\"alias\";s:14:\"clearview_menu\";s:3:\"zip\";s:24:\"packs/clearview_menu.zip\";s:3:\"uid\";s:32:\"eaecee5fa5f3c3a7f4d2a96c4616a353\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:212;a:24:{s:2:\"id\";s:3:\"221\";s:5:\"title\";s:17:\"Clear View Header\";s:5:\"alias\";s:16:\"clearview_header\";s:3:\"zip\";s:26:\"packs/clearview_header.zip\";s:3:\"uid\";s:32:\"25e3dd80ad130875d7438a07952cb0cd\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:213;a:24:{s:2:\"id\";s:3:\"222\";s:5:\"title\";s:18:\"Clear View Mission\";s:5:\"alias\";s:17:\"clearview_mission\";s:3:\"zip\";s:27:\"packs/clearview_mission.zip\";s:3:\"uid\";s:32:\"35b2092a49fd2beb549342e69097eb5b\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:214;a:24:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:17:\"Clear View Slider\";s:5:\"alias\";s:17:\"clear-view-slider\";s:3:\"zip\";s:27:\"packs/clear-view-slider.zip\";s:3:\"uid\";s:32:\"d2e17edffce16ed78c54b0ef23fd7e05\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:215;a:24:{s:2:\"id\";s:3:\"224\";s:5:\"title\";s:15:\"Clear View News\";s:5:\"alias\";s:15:\"clear-view-news\";s:3:\"zip\";s:25:\"packs/clear-view-news.zip\";s:3:\"uid\";s:32:\"5698d3131ba141e9afcfd2906739dd00\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:216;a:24:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:18:\"Clear View Clients\";s:5:\"alias\";s:18:\"clear-view-clients\";s:3:\"zip\";s:28:\"packs/clear-view-clients.zip\";s:3:\"uid\";s:32:\"b95616a94832e22bdfac5ce60232be1b\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:217;a:24:{s:2:\"id\";s:3:\"226\";s:5:\"title\";s:18:\"Clear View Contact\";s:5:\"alias\";s:18:\"clear-view-contact\";s:3:\"zip\";s:28:\"packs/clear-view-contact.zip\";s:3:\"uid\";s:32:\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:218;a:24:{s:2:\"id\";s:3:\"227\";s:5:\"title\";s:20:\"Clear View Post Page\";s:5:\"alias\";s:28:\"clear-view-post-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"clear-view-post-page-package\";s:3:\"img\";s:42:\"packages/clear_view_post_page_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:219;a:24:{s:2:\"id\";s:3:\"228\";s:5:\"title\";s:22:\"Clear View Single Menu\";s:5:\"alias\";s:22:\"clear-view-single-menu\";s:3:\"zip\";s:32:\"packs/clear-view-single-menu.zip\";s:3:\"uid\";s:32:\"1e80f81982f8a4ea763482d4fa99d321\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:220;a:24:{s:2:\"id\";s:3:\"229\";s:5:\"title\";s:24:\"Clear View Single Header\";s:5:\"alias\";s:24:\"clear-view-single-header\";s:3:\"zip\";s:34:\"packs/clear-view-single-header.zip\";s:3:\"uid\";s:32:\"c8d717627be6cd5e70922ab609694dbf\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:221;a:24:{s:2:\"id\";s:3:\"230\";s:5:\"title\";s:23:\"Clear View Single Media\";s:5:\"alias\";s:23:\"clear-view-single-media\";s:3:\"zip\";s:33:\"packs/clear-view-single-media.zip\";s:3:\"uid\";s:32:\"c480368ded2a64f0cdd44f1674213814\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:222;a:24:{s:2:\"id\";s:3:\"231\";s:5:\"title\";s:22:\"Clear View Single More\";s:5:\"alias\";s:22:\"clear-view-single-more\";s:3:\"zip\";s:32:\"packs/clear-view-single-more.zip\";s:3:\"uid\";s:32:\"9c693190df26218366d1f77e10cf550a\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:223;a:24:{s:2:\"id\";s:3:\"232\";s:5:\"title\";s:25:\"Clear View Single Contact\";s:5:\"alias\";s:25:\"clear-view-single-contact\";s:3:\"zip\";s:35:\"packs/clear-view-single-contact.zip\";s:3:\"uid\";s:32:\"73c0a889f2b654a87b5aba1ff76fbc5c\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:224;a:21:{s:2:\"id\";s:3:\"233\";s:5:\"title\";s:18:\"Clean Landing Page\";s:5:\"alias\";s:16:\"cleanlandingpage\";s:3:\"zip\";s:20:\"cleanlandingpage.zip\";s:3:\"uid\";s:32:\"727a3680d312f22c6a5998ebdb9afe52\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/clean-landing-page-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:203:\"The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:225;a:21:{s:2:\"id\";s:3:\"234\";s:5:\"title\";s:9:\"Clear Cut\";s:5:\"alias\";s:8:\"clearcut\";s:3:\"zip\";s:12:\"clearcut.zip\";s:3:\"uid\";s:32:\"07f43c00e9b4d3057a03cdb3385ad2b7\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:240:\"The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:226;a:24:{s:2:\"id\";s:3:\"235\";s:5:\"title\";s:22:\"Wonderstruck One-Pager\";s:5:\"alias\";s:30:\"wonderstruck-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"wonderstruck-one-pager-package\";s:3:\"img\";s:44:\"packages/wonderstruck-one-pager-overview.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:241:\"The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:227;a:24:{s:2:\"id\";s:3:\"236\";s:5:\"title\";s:17:\"Wonderstruck Menu\";s:5:\"alias\";s:17:\"wonderstruck_menu\";s:3:\"zip\";s:27:\"packs/wonderstruck_menu.zip\";s:3:\"uid\";s:32:\"0a976e9aaae59c4f795b38f59f5a08d8\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:228;a:24:{s:2:\"id\";s:3:\"237\";s:5:\"title\";s:19:\"Wonderstruck Header\";s:5:\"alias\";s:19:\"wonderstruck_header\";s:3:\"zip\";s:29:\"packs/wonderstruck_header.zip\";s:3:\"uid\";s:32:\"e1379f77a902960a0ce12d44d85a9e0a\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:229;a:24:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:18:\"Wonderstruck About\";s:5:\"alias\";s:18:\"wonderstruck_about\";s:3:\"zip\";s:28:\"packs/wonderstruck_about.zip\";s:3:\"uid\";s:32:\"d207fb140fd328acc3038300ea52082a\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:230;a:24:{s:2:\"id\";s:3:\"239\";s:5:\"title\";s:18:\"Wonderstruck Works\";s:5:\"alias\";s:18:\"wonderstruck-works\";s:3:\"zip\";s:28:\"packs/wonderstruck-works.zip\";s:3:\"uid\";s:32:\"4476935097e27d92454b0011b7700c1d\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:231;a:24:{s:2:\"id\";s:3:\"240\";s:5:\"title\";s:20:\"Wonderstruck Contact\";s:5:\"alias\";s:20:\"wonderstruck-contact\";s:3:\"zip\";s:30:\"packs/wonderstruck-contact.zip\";s:3:\"uid\";s:32:\"9e4911521f77bce2b8efa40f4c2adc22\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:232;a:21:{s:2:\"id\";s:3:\"241\";s:5:\"title\";s:12:\"Bubble Morph\";s:5:\"alias\";s:11:\"bubblemorph\";s:3:\"zip\";s:15:\"bubblemorph.zip\";s:3:\"uid\";s:32:\"1102d6f5460ab82cb612cbe9f1d9514b\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:188:\"The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:233;a:21:{s:2:\"id\";s:3:\"242\";s:5:\"title\";s:16:\"Distortion AddOn\";s:5:\"alias\";s:15:\"distortionaddon\";s:3:\"zip\";s:19:\"distortionaddon.zip\";s:3:\"uid\";s:32:\"0ad46c9929bb2fa6316f1e6ced301aaf\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/distortion-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:234;a:21:{s:2:\"id\";s:3:\"243\";s:5:\"title\";s:10:\"Club Flyer\";s:5:\"alias\";s:9:\"clubflyer\";s:3:\"zip\";s:13:\"clubflyer.zip\";s:3:\"uid\";s:32:\"dab73b9904d0e643a35b0475980998bd\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/club-flyer-landing-page-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. \r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:187:\"[{\"path\":\"revslider-explodinglayers-addon\\/revslider-explodinglayers-addon.php\",\"name\":\"Exploding Layers AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:235;a:21:{s:2:\"id\";s:3:\"244\";s:5:\"title\";s:16:\"Paintbrush AddOn\";s:5:\"alias\";s:15:\"paintbrushaddon\";s:3:\"zip\";s:19:\"paintbrushaddon.zip\";s:3:\"uid\";s:32:\"c85c48a6742b4bf72a2590cc1b50f6a0\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/paintbrush-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:236;a:24:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:18:\"Parallax One-Pager\";s:5:\"alias\";s:26:\"parallax-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"parallax-one-pager-package\";s:3:\"img\";s:39:\"packages/parallax-one-pager-package.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:230:\"The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:237;a:24:{s:2:\"id\";s:3:\"246\";s:5:\"title\";s:15:\"Parallax Header\";s:5:\"alias\";s:15:\"parallax_header\";s:3:\"zip\";s:25:\"packs/parallax_header.zip\";s:3:\"uid\";s:32:\"32bf4a0f5136853bd6bd366275a7a60b\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:238;a:24:{s:2:\"id\";s:3:\"247\";s:5:\"title\";s:16:\"Parallax Content\";s:5:\"alias\";s:16:\"parallax_content\";s:3:\"zip\";s:26:\"packs/parallax_content.zip\";s:3:\"uid\";s:32:\"a25c5fb8f74757476ab4dc038e56f90d\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:239;a:24:{s:2:\"id\";s:3:\"248\";s:5:\"title\";s:15:\"Parallax Footer\";s:5:\"alias\";s:15:\"parallax_footer\";s:3:\"zip\";s:25:\"packs/parallax_footer.zip\";s:3:\"uid\";s:32:\"665dff9ea6eaf162a2a1f160f51a9ddb\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:240;a:24:{s:2:\"id\";s:3:\"249\";s:5:\"title\";s:18:\"Le Chef Restaurant\";s:5:\"alias\";s:18:\"le-chef-restaurant\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"le-chef-restaurant-package\";s:3:\"img\";s:39:\"packages/le-chef-restaurant-package.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:261:\"The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:241;a:24:{s:2:\"id\";s:3:\"250\";s:5:\"title\";s:12:\"Le Chef Menu\";s:5:\"alias\";s:12:\"le-chef-menu\";s:3:\"zip\";s:22:\"packs/le-chef-menu.zip\";s:3:\"uid\";s:32:\"2f2a6a333431fefe4a7b3b6a982b2ff5\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:242;a:24:{s:2:\"id\";s:3:\"251\";s:5:\"title\";s:14:\"Le Chef Header\";s:5:\"alias\";s:14:\"le-chef-header\";s:3:\"zip\";s:24:\"packs/le-chef-header.zip\";s:3:\"uid\";s:32:\"06450ca3be5a4a8959f3752ab974e574\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:243;a:24:{s:2:\"id\";s:3:\"252\";s:5:\"title\";s:18:\"Le Chef Philosophy\";s:5:\"alias\";s:18:\"le-chef-philosophy\";s:3:\"zip\";s:28:\"packs/le-chef-philosophy.zip\";s:3:\"uid\";s:32:\"a532fd029addeb18106e751409b8e20a\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:244;a:24:{s:2:\"id\";s:3:\"253\";s:5:\"title\";s:12:\"Le Chef Food\";s:5:\"alias\";s:12:\"le-chef-food\";s:3:\"zip\";s:22:\"packs/le-chef-food.zip\";s:3:\"uid\";s:32:\"cd4b6a2cb5de2dd20a0e8ba0c35451df\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:245;a:24:{s:2:\"id\";s:3:\"254\";s:5:\"title\";s:16:\"Le Chef La Carte\";s:5:\"alias\";s:16:\"le-chef-la-carte\";s:3:\"zip\";s:26:\"packs/le-chef-la-carte.zip\";s:3:\"uid\";s:32:\"6f312749679c3ba52c41189a6b8bf729\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:246;a:24:{s:2:\"id\";s:3:\"255\";s:5:\"title\";s:14:\"Le Chef Footer\";s:5:\"alias\";s:14:\"le-chef-footer\";s:3:\"zip\";s:24:\"packs/le-chef-footer.zip\";s:3:\"uid\";s:32:\"12fc241e8e5b9e5df9758c43448e2907\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:247;a:21:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:20:\"News Magazine Slider\";s:5:\"alias\";s:20:\"news-magazine-slider\";s:3:\"zip\";s:24:\"news-magazine-slider.zip\";s:3:\"uid\";s:32:\"31f2c1506babb1fef459401f051d2d52\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/news-magazine-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news website!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:248;a:21:{s:2:\"id\";s:3:\"257\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:18:\"real-estate-slider\";s:3:\"zip\";s:22:\"real-estate-slider.zip\";s:3:\"uid\";s:32:\"739ce6336e46815094387c9448e6c804\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/real-estate-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:249;a:21:{s:2:\"id\";s:3:\"258\";s:5:\"title\";s:14:\"Fashion Header\";s:5:\"alias\";s:14:\"fashion-header\";s:3:\"zip\";s:18:\"fashion-header.zip\";s:3:\"uid\";s:32:\"24ece4e7f4d31cd90377c62abbd9e25a\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/fashion-shop-header-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:254:\"The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique \"Bubble Morph\" effect makes this module stand out!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:250;a:21:{s:2:\"id\";s:3:\"259\";s:5:\"title\";s:14:\"Seasonal Offer\";s:5:\"alias\";s:13:\"seasonaloffer\";s:3:\"zip\";s:17:\"seasonaloffer.zip\";s:3:\"uid\";s:32:\"caf2f17f8fd64f2f89dcb3c8dd238457\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/seasonal-offer-christmas-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to your website!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:251;a:24:{s:2:\"id\";s:3:\"260\";s:5:\"title\";s:11:\"Barber Shop\";s:5:\"alias\";s:11:\"barber-shop\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:19:\"barber-shop-package\";s:3:\"img\";s:32:\"packages/barber-shop-package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:220:\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:252;a:24:{s:2:\"id\";s:3:\"261\";s:5:\"title\";s:18:\"Barber Shop Header\";s:5:\"alias\";s:18:\"barber-shop-header\";s:3:\"zip\";s:28:\"packs/barber-shop-header.zip\";s:3:\"uid\";s:32:\"71c995d36d39a0e8a04cffdf753f2ba2\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:253;a:24:{s:2:\"id\";s:3:\"262\";s:5:\"title\";s:23:\"Barber Shop Mobile Menu\";s:5:\"alias\";s:23:\"barber-shop-mobile-menu\";s:3:\"zip\";s:33:\"packs/barber-shop-mobile-menu.zip\";s:3:\"uid\";s:32:\"762c6fb5c6306f37becb1e55773c2592\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:254;a:24:{s:2:\"id\";s:3:\"263\";s:5:\"title\";s:24:\"Barber Shop First Screen\";s:5:\"alias\";s:24:\"barber-shop-first-screen\";s:3:\"zip\";s:34:\"packs/barber-shop-first-screen.zip\";s:3:\"uid\";s:32:\"acf70bfd64cff2c3c2ea5585223575da\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:255;a:24:{s:2:\"id\";s:3:\"264\";s:5:\"title\";s:17:\"Barber Shop About\";s:5:\"alias\";s:17:\"barber-shop-about\";s:3:\"zip\";s:27:\"packs/barber-shop-about.zip\";s:3:\"uid\";s:32:\"bc8b63cfc7f8c34173b4fd5b082fc05a\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:256;a:24:{s:2:\"id\";s:3:\"265\";s:5:\"title\";s:20:\"Barber Shop Services\";s:5:\"alias\";s:20:\"barber-shop-services\";s:3:\"zip\";s:30:\"packs/barber-shop-services.zip\";s:3:\"uid\";s:32:\"d65121d6f84fabd812a2b621b768e10e\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:257;a:24:{s:2:\"id\";s:3:\"266\";s:5:\"title\";s:19:\"Barber Shop Barbers\";s:5:\"alias\";s:19:\"barber-shop-barbers\";s:3:\"zip\";s:29:\"packs/barber-shop-barbers.zip\";s:3:\"uid\";s:32:\"003e9fec9693072119c8f8d8b6690c4d\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:258;a:24:{s:2:\"id\";s:3:\"267\";s:5:\"title\";s:20:\"Barber Shop Contacts\";s:5:\"alias\";s:20:\"barber-shop-contacts\";s:3:\"zip\";s:30:\"packs/barber-shop-contacts.zip\";s:3:\"uid\";s:32:\"cdcc08f5d6c90dbcfd0502bda2401643\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:259;a:24:{s:2:\"id\";s:3:\"268\";s:5:\"title\";s:18:\"Barber Shop Footer\";s:5:\"alias\";s:18:\"barber-shop-footer\";s:3:\"zip\";s:28:\"packs/barber-shop-footer.zip\";s:3:\"uid\";s:32:\"26ca5ae0de7cdbb2ca19348b6e01eda0\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:260;a:21:{s:2:\"id\";s:3:\"269\";s:5:\"title\";s:12:\"Fitness Club\";s:5:\"alias\";s:21:\"fitness-club-template\";s:3:\"zip\";s:25:\"fitness-club-template.zip\";s:3:\"uid\";s:32:\"14ea10d68d6aad1df62b3becf71df754\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/fitness-club-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:223:\"The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:261;a:21:{s:2:\"id\";s:3:\"270\";s:5:\"title\";s:13:\"Soccer School\";s:5:\"alias\";s:13:\"soccer-school\";s:3:\"zip\";s:17:\"soccer-school.zip\";s:3:\"uid\";s:32:\"9906b48812aff67097f990eeee42dd41\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/soccer-club-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:228:\"The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:262;a:21:{s:2:\"id\";s:3:\"271\";s:5:\"title\";s:10:\"Music Band\";s:5:\"alias\";s:19:\"music-band-template\";s:3:\"zip\";s:23:\"music-band-template.zip\";s:3:\"uid\";s:32:\"91e79657bf1b1812f8114a00ab8e0eb4\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/music-band-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.8.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:263;a:21:{s:2:\"id\";s:3:\"272\";s:5:\"title\";s:15:\"Restaurant Menu\";s:5:\"alias\";s:15:\"restaurant-menu\";s:3:\"zip\";s:19:\"restaurant-menu.zip\";s:3:\"uid\";s:32:\"078809cffb21b6c4d3f5aaa2daeb193d\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/restaurant-menu-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:208:\"The Restaurant Menu Header is the perfect introduction to your Restaurant themed website. Showcase your current dishes with sleek transitions!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:264;a:21:{s:2:\"id\";s:3:\"273\";s:5:\"title\";s:16:\"Cinematic Slider\";s:5:\"alias\";s:16:\"cinematic-slider\";s:3:\"zip\";s:20:\"cinematic-slider.zip\";s:3:\"uid\";s:32:\"c53e7dcbb6b656ae7b4c91d333589838\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/cinematic-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:138:\"Bold texts and a cinematic transition effect make this slider stand out!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:265;a:21:{s:2:\"id\";s:3:\"274\";s:5:\"title\";s:17:\"3D Parallax Cubes\";s:5:\"alias\";s:17:\"3d-parallax-cubes\";s:3:\"zip\";s:21:\"3d-parallax-cubes.zip\";s:3:\"uid\";s:32:\"c5b809a1829f8f809c9a768cd3d6b3cb\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/3d-parallax-cubes-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"This amazing 3D cubes parallax effect can be an eye-opening intro for your website!\r\n\";s:11:\"setup_notes\";s:171:\"Checkout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:266;a:24:{s:2:\"id\";s:3:\"275\";s:5:\"title\";s:33:\"Medicare Medical Services Website\";s:5:\"alias\";s:33:\"medicare-medical-services-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:41:\"medicare-medical-services-website-package\";s:3:\"img\";s:29:\"packages/medicare_package.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:163:\"The Medicare Medical Services template is a great solution for your medical practice or hospital.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our Documentation for basic Slider Revolution help.\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:267;a:24:{s:2:\"id\";s:3:\"276\";s:5:\"title\";s:13:\"Medicare Menu\";s:5:\"alias\";s:13:\"medicare-menu\";s:3:\"zip\";s:23:\"packs/medicare-menu.zip\";s:3:\"uid\";s:32:\"0e4ca8fc281e20251b3fffa19d470fed\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"The Medicare Medical Services template is a great solution for your medical practice or hospital.\r\n\";s:11:\"setup_notes\";s:420:\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here.
\r\nCheckout our