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_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; 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_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_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)) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; INSERT INTO `wp_comments` VALUES("1","1","A WordPress Commenter","wapuu@wordpress.example","https://wordpress.org/","","2017-03-21 10:44:48","2017-03-21 10:44:48","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","1","","","0","0"); INSERT INTO `wp_comments` VALUES("2","2897","مُعلِق ووردبريس","wapuu@wordpress.example","https://wordpress.org/","","2016-12-16 01:53:31","2016-12-15 22:53:31","مرحبًا, هذا تعليق.\nللبدء بالإشراف، التحرير, وحذف التعليقات، من فضلك قم بزيارة شاشة التعليقات في لوحة التحكم.\nصورة المُعلق تأتي من Gravatar.","0","1","","","0","0"); INSERT INTO `wp_comments` VALUES("3","564","admin","you@yourname.com","","127.0.0.1","2016-09-23 14:39:34","2016-09-23 14:39:34","testttttttttt","0","1","","","0","0"); INSERT INTO `wp_comments` VALUES("4","564","admin","you@yourname.com","","127.0.0.1","2016-09-25 00:25:13","2016-09-25 00:25:13","test","0","1","","","3","0"); INSERT INTO `wp_comments` VALUES("5","564","admin","you@yourname.com","","127.0.0.1","2016-09-25 00:25:27","2016-09-25 00:25:27","tessssssssst","0","1","","","4","0"); 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_520_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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_520_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=MyISAM AUTO_INCREMENT=197 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; INSERT INTO `wp_options` VALUES("1","siteurl","http://atheltree.com/ar","yes"); INSERT INTO `wp_options` VALUES("2","home","http://atheltree.com/ar","yes"); INSERT INTO `wp_options` VALUES("3","blogname","Athel Tree","yes"); INSERT INTO `wp_options` VALUES("4","blogdescription","Just another WordPress site","yes"); INSERT INTO `wp_options` VALUES("5","users_can_register","0","yes"); INSERT INTO `wp_options` VALUES("6","admin_email","eng.sheshtawy@gmail.com","yes"); INSERT INTO `wp_options` VALUES("7","start_of_week","1","yes"); INSERT INTO `wp_options` VALUES("8","use_balanceTags","0","yes"); INSERT INTO `wp_options` VALUES("9","use_smilies","1","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","0","yes"); INSERT INTO `wp_options` VALUES("14","mailserver_url","mail.example.com","yes"); INSERT INTO `wp_options` VALUES("15","mailserver_login","login@example.com","yes"); INSERT INTO `wp_options` VALUES("16","mailserver_pass","password","yes"); INSERT INTO `wp_options` VALUES("17","mailserver_port","110","yes"); INSERT INTO `wp_options` VALUES("18","default_category","1","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","10","yes"); INSERT INTO `wp_options` VALUES("23","date_format","F j, Y","yes"); INSERT INTO `wp_options` VALUES("24","time_format","g:i a","yes"); INSERT INTO `wp_options` VALUES("25","links_updated_date_format","F j, Y g:i a","yes"); INSERT INTO `wp_options` VALUES("26","comment_moderation","0","yes"); INSERT INTO `wp_options` VALUES("27","moderation_notify","1","yes"); INSERT INTO `wp_options` VALUES("28","permalink_structure","/%year%/%monthnum%/%day%/%postname%/","yes"); INSERT INTO `wp_options` VALUES("29","rewrite_rules","a:194:{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: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:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:42:\"index.php?portfolio=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:56:\"portfolio_types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?portfolio_types=$matches[1]&feed=$matches[2]\";s:51:\"portfolio_types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?portfolio_types=$matches[1]&feed=$matches[2]\";s:32:\"portfolio_types/([^/]+)/embed/?$\";s:48:\"index.php?portfolio_types=$matches[1]&embed=true\";s:44:\"portfolio_types/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?portfolio_types=$matches[1]&paged=$matches[2]\";s:26:\"portfolio_types/([^/]+)/?$\";s:37:\"index.php?portfolio_types=$matches[1]\";s:39:\"slider-item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"slider-item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"slider-item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"slider-item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"slider-item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"slider-item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"slider-item/([^/]+)/embed/?$\";s:38:\"index.php?slide=$matches[1]&embed=true\";s:32:\"slider-item/([^/]+)/trackback/?$\";s:32:\"index.php?slide=$matches[1]&tb=1\";s:40:\"slider-item/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?slide=$matches[1]&paged=$matches[2]\";s:47:\"slider-item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?slide=$matches[1]&cpage=$matches[2]\";s:36:\"slider-item/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?slide=$matches[1]&page=$matches[2]\";s:28:\"slider-item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"slider-item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"slider-item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"slider-item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"slider-item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"slider-item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"slider_types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?slider_types=$matches[1]&feed=$matches[2]\";s:48:\"slider_types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?slider_types=$matches[1]&feed=$matches[2]\";s:29:\"slider_types/([^/]+)/embed/?$\";s:45:\"index.php?slider_types=$matches[1]&embed=true\";s:41:\"slider_types/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?slider_types=$matches[1]&paged=$matches[2]\";s:23:\"slider_types/([^/]+)/?$\";s:34:\"index.php?slider_types=$matches[1]\";s:40:\"clients-item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"clients-item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"clients-item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"clients-item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"clients-item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"clients-item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"clients-item/([^/]+)/embed/?$\";s:40:\"index.php?clients=$matches[1]&embed=true\";s:33:\"clients-item/([^/]+)/trackback/?$\";s:34:\"index.php?clients=$matches[1]&tb=1\";s:41:\"clients-item/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?clients=$matches[1]&paged=$matches[2]\";s:48:\"clients-item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?clients=$matches[1]&cpage=$matches[2]\";s:37:\"clients-item/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?clients=$matches[1]&page=$matches[2]\";s:29:\"clients-item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"clients-item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"clients-item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"clients-item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"clients-item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"clients-item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:54:\"clients_types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?clients_types=$matches[1]&feed=$matches[2]\";s:49:\"clients_types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?clients_types=$matches[1]&feed=$matches[2]\";s:30:\"clients_types/([^/]+)/embed/?$\";s:46:\"index.php?clients_types=$matches[1]&embed=true\";s:42:\"clients_types/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?clients_types=$matches[1]&paged=$matches[2]\";s:24:\"clients_types/([^/]+)/?$\";s:35:\"index.php?clients_types=$matches[1]\";s:44:\"testimonial-item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"testimonial-item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"testimonial-item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"testimonial-item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"testimonial-item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"testimonial-item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"testimonial-item/([^/]+)/embed/?$\";s:44:\"index.php?testimonial=$matches[1]&embed=true\";s:37:\"testimonial-item/([^/]+)/trackback/?$\";s:38:\"index.php?testimonial=$matches[1]&tb=1\";s:45:\"testimonial-item/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?testimonial=$matches[1]&paged=$matches[2]\";s:52:\"testimonial-item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?testimonial=$matches[1]&cpage=$matches[2]\";s:41:\"testimonial-item/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?testimonial=$matches[1]&page=$matches[2]\";s:33:\"testimonial-item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"testimonial-item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"testimonial-item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"testimonial-item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"testimonial-item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"testimonial-item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:58:\"testimonial_types/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?testimonial_types=$matches[1]&feed=$matches[2]\";s:53:\"testimonial_types/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?testimonial_types=$matches[1]&feed=$matches[2]\";s:34:\"testimonial_types/([^/]+)/embed/?$\";s:50:\"index.php?testimonial_types=$matches[1]&embed=true\";s:46:\"testimonial_types/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?testimonial_types=$matches[1]&paged=$matches[2]\";s:28:\"testimonial_types/([^/]+)/?$\";s:39:\"index.php?testimonial_types=$matches[1]\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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: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:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$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: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]\";}","yes"); INSERT INTO `wp_options` VALUES("30","hack_file","0","yes"); INSERT INTO `wp_options` VALUES("31","blog_charset","UTF-8","yes"); INSERT INTO `wp_options` VALUES("32","moderation_keys","","no"); INSERT INTO `wp_options` VALUES("33","active_plugins","a:5:{i:0;s:25:\"bizpro_cpt/bizpro_cpt.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:27:\"js_composer/js_composer.php\";i:3;s:23:\"revslider/revslider.php\";i:4;s:41:\"wordpress-importer/wordpress-importer.php\";}","yes"); INSERT INTO `wp_options` VALUES("34","category_base","","yes"); INSERT INTO `wp_options` VALUES("35","ping_sites","http://rpc.pingomatic.com/","yes"); INSERT INTO `wp_options` VALUES("36","comment_max_links","2","yes"); INSERT INTO `wp_options` VALUES("37","gmt_offset","0","yes"); INSERT INTO `wp_options` VALUES("38","default_email_category","1","yes"); INSERT INTO `wp_options` VALUES("39","recently_edited","","no"); INSERT INTO `wp_options` VALUES("40","template","bizpro","yes"); INSERT INTO `wp_options` VALUES("41","stylesheet","bizpro","yes"); INSERT INTO `wp_options` VALUES("42","comment_whitelist","1","yes"); INSERT INTO `wp_options` VALUES("43","blacklist_keys","","no"); INSERT INTO `wp_options` VALUES("44","comment_registration","0","yes"); INSERT INTO `wp_options` VALUES("45","html_type","text/html","yes"); INSERT INTO `wp_options` VALUES("46","use_trackback","0","yes"); INSERT INTO `wp_options` VALUES("47","default_role","subscriber","yes"); INSERT INTO `wp_options` VALUES("48","db_version","38590","yes"); INSERT INTO `wp_options` VALUES("49","uploads_use_yearmonth_folders","1","yes"); INSERT INTO `wp_options` VALUES("50","upload_path","","yes"); INSERT INTO `wp_options` VALUES("51","blog_public","1","yes"); INSERT INTO `wp_options` VALUES("52","default_link_category","2","yes"); INSERT INTO `wp_options` VALUES("53","show_on_front","posts","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("57","upload_url_path","","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","1","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","none","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","0","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","0","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:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("79","widget_text","a:0:{}","yes"); INSERT INTO `wp_options` VALUES("80","widget_rss","a:0:{}","yes"); INSERT INTO `wp_options` VALUES("81","uninstall_plugins","a:0:{}","no"); INSERT INTO `wp_options` VALUES("82","timezone_string","","yes"); INSERT INTO `wp_options` VALUES("83","page_for_posts","0","yes"); INSERT INTO `wp_options` VALUES("84","page_on_front","0","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","0","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("92","wp_user_roles","a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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: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;}}}","yes"); INSERT INTO `wp_options` VALUES("93","fresh_site","0","yes"); INSERT INTO `wp_options` VALUES("94","widget_search","a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("95","widget_recent-posts","a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("96","widget_recent-comments","a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("97","widget_archives","a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("98","widget_meta","a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("99","sidebars_widgets","a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-blog\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"sidebar-blog2\";a:0:{}s:12:\"sidebar-page\";a:0:{}s:17:\"sidebar-portfolio\";N;s:14:\"footer_widgets\";N;s:14:\"sidebar-search\";N;s:12:\"sidebar-shop\";N;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:1:{s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("103","widget_nav_menu","a:1:{s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("104","cron","a:6:{i:1490100781;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"adcb9b75260590ff6058773ddcb9ddd6\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4;}}}}i:1490136288;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:1490179503;a:1:{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;}}}i:1490180345;a:1:{s:26:\"importer_scheduled_cleanup\";a:1:{s:32:\"686c8315be36c96dc00d0d7ed3656b43\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:6;}}}}i:1490180793;a:1:{s:26:\"importer_scheduled_cleanup\";a:1:{s:32:\"3c709034a1c2f17ccc3625bc9db33c29\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1985;}}}}s:7:\"version\";i:2;}","yes"); INSERT INTO `wp_options` VALUES("105","theme_mods_twentyseventeen","a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1490093618;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}","yes"); INSERT INTO `wp_options` VALUES("122","_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca","1490136305","no"); INSERT INTO `wp_options` VALUES("119","_site_transient_timeout_browser_58769e6f77965f1b81999b5fbb0b69b5","1490697903","no"); INSERT INTO `wp_options` VALUES("116","_site_transient_update_core","O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.7.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-4.7.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.7.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.7.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.7.3\";s:7:\"version\";s:5:\"4.7.3\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1490093863;s:15:\"version_checked\";s:5:\"4.7.3\";s:12:\"translations\";a:0:{}}","no"); INSERT INTO `wp_options` VALUES("148","wpcf7","a:2:{s:7:\"version\";s:3:\"4.7\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1490093638;s:7:\"version\";s:3:\"4.7\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}","yes"); INSERT INTO `wp_options` VALUES("149","revslider-update-check-short","1490093666","yes"); INSERT INTO `wp_options` VALUES("150","revslider-templates-check","1490093666","yes"); INSERT INTO `wp_options` VALUES("118","auto_core_update_notified","a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"eng.sheshtawy@gmail.com\";s:7:\"version\";s:5:\"4.7.3\";s:9:\"timestamp\";i:1490093097;}","no"); INSERT INTO `wp_options` VALUES("120","_site_transient_browser_58769e6f77965f1b81999b5fbb0b69b5","a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"56.0.2924.87\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","no"); INSERT INTO `wp_options` VALUES("112","_site_transient_timeout_theme_roots","1490095388","no"); INSERT INTO `wp_options` VALUES("113","_site_transient_theme_roots","a:4:{s:6:\"bizpro\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}","no"); INSERT INTO `wp_options` VALUES("144","_site_transient_update_themes","O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1490093900;s:7:\"checked\";a:4:{s:6:\"bizpro\";s:3:\"1.2\";s:13:\"twentyfifteen\";s:3:\"1.7\";s:15:\"twentyseventeen\";s:3:\"1.1\";s:13:\"twentysixteen\";s:3:\"1.3\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}","no"); INSERT INTO `wp_options` VALUES("191","_site_transient_update_plugins","O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1490093903;s:7:\"checked\";a:7:{s:19:\"akismet/akismet.php\";s:3:\"3.2\";s:25:\"bizpro_cpt/bizpro_cpt.php\";s:3:\"1.4\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"4.7\";s:9:\"hello.php\";s:3:\"1.6\";s:23:\"revslider/revslider.php\";s:7:\"5.3.1.5\";s:41:\"wordpress-importer/wordpress-importer.php\";s:5:\"0.6.3\";s:27:\"js_composer/js_composer.php\";s:3:\"5.1\";}s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"3.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.3.3.zip\";s:6:\"tested\";s:5:\"4.7.3\";s:13:\"compatibility\";O:8:\"stdClass\":1:{s:6:\"scalar\";O:8:\"stdClass\":1:{s:6:\"scalar\";b:0;}}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"790\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:3:\"4.7\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.7.zip\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"14975\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.6.3\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.6.3.zip\";}}}","no"); INSERT INTO `wp_options` VALUES("123","_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Mar 2017 18:14:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=4.8-alpha-40293\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:39:\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t\t\n\t\t\n\t\t\n\n\t\t\n\t\t\n\t\t\t\t\n\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.3 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Mar 2017 17:53:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4696\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:396:\"WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.2 and earlier are affected by six security issues: Cross-site scripting (XSS) via media file metadata.  Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs. Control characters can trick redirect […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"James Nylen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6191:\"

WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately.

\n

WordPress versions 4.7.2 and earlier are affected by six security issues:

\n
    \n
  1. Cross-site scripting (XSS) via media file metadata.  Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs.
  2. \n
  3. Control characters can trick redirect URL validation.  Reported by Daniel Chatfield.
  4. \n
  5. Unintended files can be deleted by administrators using the plugin deletion functionality.  Reported by TrigInc and xuliang.
  6. \n
  7. Cross-site scripting (XSS) via video URL in YouTube embeds.  Reported by Marc Montpas.
  8. \n
  9. Cross-site scripting (XSS) via taxonomy term names.  Reported by Delta.
  10. \n
  11. Cross-site request forgery (CSRF) in Press This leading to excessive use of server resources.  Reported by Sipke Mellema.
  12. \n
\n

Thank you to the reporters for practicing responsible disclosure.

\n

In addition to the security issues above, WordPress 4.7.3 contains 39 maintenance fixes to the 4.7 release series. For more information, see the release notes or consult the list of changes.

\n

Download WordPress 4.7.3 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.3.

\n

Thanks to everyone who contributed to 4.7.3: Aaron D. Campbell, Adam Silverstein, Alex Concha, Andrea Fercia, Andrew Ozz, asalce, blobfolio, bonger, Boone Gorges, Boro Sitnikovski, Brady Vercher, Brandon Lavigne, Bunty, ccprog, chetansatasiya, David A. Kennedy, David Herrera, Dhanendran, Dion Hulse, Dominik Schilling (ocean90), Drivingralle, Ella Van Dorpe, Gary Pendergast, Ian Dunn, Ipstenu (Mika Epstein), James Nylen, jazbek, Jeremy Felt, Jeremy Pry, Joe Hoyle, Joe McGill, John Blackbourn, John James Jacoby, Jonathan Desrosiers, Kelly Dwan, Marko Heijnen, MatheusGimenez, Mike Nelson, Mike Schroder, Muhammet Arslan, Nick Halsey, Pascal Birchler, Paul Bearne, pavelevap, Peter Wilson, Rachel Baker, reldev, Robert O’Rourke, Ryan Welcher, Sanket Parmar, Sean Hayes, Sergey Biryukov, Stephen Edgar, triplejumper12, Weston Ruter, and wpfo.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4696\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:39:\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t\t\n\t\t\n\t\t\n\n\t\t\n\t\t\n\t\t\t\t\n\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.7.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2017/01/wordpress-4-7-2-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Jan 2017 19:34:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4676\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:357:\"WordPress 4.7.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.1 and earlier are affected by three security issues: The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2142:\"

WordPress 4.7.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately.

\n

WordPress versions 4.7.1 and earlier are affected by three security issues:

\n
    \n
  1. The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. Reported by David Herrera of Alley Interactive.
  2. \n
  3. WP_Query is vulnerable to a SQL injection (SQLi) when passing unsafe data. WordPress core is not directly vulnerable to this issue, but we’ve added hardening to prevent plugins and themes from accidentally causing a vulnerability. Reported by Mo Jangda (batmoo).
  4. \n
  5. A cross-site scripting (XSS) vulnerability was discovered in the posts list table. Reported by Ian Dunn of the WordPress Security Team.
  6. \n
  7. An unauthenticated privilege escalation vulnerability was discovered in a REST API endpoint. Reported by Marc-Alexandre Montpas of Sucuri Security. *
  8. \n
\n

Thank you to the reporters of these issues for practicing responsible disclosure.

\n

Download WordPress 4.7.2 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.2.

\n

Thanks to everyone who contributed to 4.7.2.

\n

* Update: An additional serious vulnerability was fixed in this release and public disclosure was delayed. For more information on this vulnerability, additional mitigation steps taken, and an explanation for why disclosure was delayed, please read Disclosure of Additional Security Fix in WordPress 4.7.2.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4676\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:39:\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t\t\n\t\t\n\t\t\n\n\t\t\n\t\t\n\t\t\t\t\n\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2017/01/wordpress-4-7-1-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Jan 2017 03:53:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4650\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:375:\"WordPress 4.7 has been downloaded over 10 million times since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7 and earlier are affected by eight security issues: […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6520:\"

WordPress 4.7 has been downloaded over 10 million times since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a security release for all previous versions and we strongly encourage you to update your sites immediately.

\n

WordPress versions 4.7 and earlier are affected by eight security issues:

\n
    \n
  1. Remote code execution (RCE) in PHPMailer – No specific issue appears to affect WordPress or any of the major plugins we investigated but, out of an abundance of caution, we updated PHPMailer in this release. This issue was fixed in PHPMailer thanks to Dawid Golunski and Paul Buonopane.
  2. \n
  3. The REST API exposed user data for all users who had authored a post of a public post type. WordPress 4.7.1 limits this to only post types which have specified that they should be shown within the REST API. Reported by Krogsgard and Chris Jean.
  4. \n
  5. Cross-site scripting (XSS) via the plugin name or version header on update-core.php. Reported by Dominik Schilling of the WordPress Security Team.
  6. \n
  7. Cross-site request forgery (CSRF) bypass via uploading a Flash file. Reported by Abdullah Hussam.
  8. \n
  9. Cross-site scripting (XSS) via theme name fallback. Reported by Mehmet Ince.
  10. \n
  11. Post via email checks mail.example.com if default settings aren’t changed. Reported by John Blackbourn of the WordPress Security Team.
  12. \n
  13. A cross-site request forgery (CSRF) was discovered in the accessibility mode of widget editing. Reported by Ronnie Skansing.
  14. \n
  15. Weak cryptographic security for multisite activation key. Reported by Jack.
  16. \n
\n

Thank you to the reporters for practicing responsible disclosure.

\n

In addition to the security issues above, WordPress 4.7.1 fixes 62 bugs from 4.7. For more information, see the release notes or consult the list of changes.

\n

Download WordPress 4.7.1 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.1.

\n

Thanks to everyone who contributed to 4.7.1: Aaron D. Campbell, Aaron Jorbin, Adam Silverstein, Andrea Fercia, Andrew Ozz, bonger, Boone Gorges, Chandra Patel, Christian Chung, David Herrera, David Shanske, Dion Hulse, Dominik Schilling (ocean90), DreamOn11, Edwin Cromley, Ella van Dorpe, Gary Pendergast, Hristo Pandjarov, James Nylen, Jeff Bowen, Jeremy Felt, Jeremy Pry, Joe Hoyle, Joe McGill, John Blackbourn, Keanan Koppenhaver, Konstantin Obenland, laurelfulford, Marin Atanasov, mattyrob, monikarao, Nate Reist, Nick Halsey, Nikhil Chavan, nullvariable, Payton Swick, Peter Wilson, Presskopp, Rachel Baker, Ryan McCue, Sanket Parmar, Sebastian Pisula, sfpt, shazahm1, Stanimir Stoyanov, Steven Word, szaqal21, timph, voldemortensen, vortfu, and Weston Ruter.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4650\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:36:\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t\t\n\n\t\t\n\t\t\n\t\t\t\t\n\t\n\n\n\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress 4.7 “Vaughan”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/news/2016/12/vaughan/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Dec 2016 19:27:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4596\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:240:\"Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah \"Sassy\" Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:3:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2016/12/starter-content.mp4\";s:6:\"length\";s:7:\"3736020\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:59:\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4\";s:6:\"length\";s:7:\"1127483\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:58:\"https://wordpress.org/news/files/2016/12/video-headers.mp4\";s:6:\"length\";s:7:\"1549803\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:45507:\"

Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah “Sassy” Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.

\n
\n
\n

Presenting Twenty Seventeen

\n

A brand new default theme brings your site to life with immersive featured images and video headers.

\n

\n

Twenty Seventeen focuses on business sites and features a customizable front page with multiple sections. Personalize it with widgets, navigation, social menus, a logo, custom colors, and more. Our default theme for 2017 works great in many languages, on any device, and for a wide range of users.

\n
\n

Your Site, Your Way

\n

WordPress 4.7 adds new features to the customizer to help take you through the initial setup of a theme, with non-destructive live previews of all your changes in one uninterrupted workflow.

\n

Theme Starter Content

\n
\n
\n

To help give you a solid base to build from, individual themes can provide starter content that appears when you go to customize your brand new site. This can range from placing a business information widget in the best location to providing a sample menu with social icon links to a static front page complete with beautiful images. Don’t worry – nothing new will appear on the live site until you’re ready to save and publish your initial theme setup.

\n
\n

Edit Shortcuts

\n
\n

Visible icons appear to show you which parts of your site can be customized while live previewing. Click on a shortcut and get straight to editing. Paired with starter content, getting started with customizing your site is faster than ever.

\n
\n
\n

Video Headers

\n
\n

Sometimes a big atmospheric video as a moving header image is just what you need to showcase your wares; go ahead and try it out with Twenty Seventeen. Need some video inspiration? Try searching for sites with video headers available for download and use.

\n
\n
\n
\n

Smoother Menu Building

\n

\n

Many menus for sites contain links to the pages of your site, but what happens when you don’t have any pages yet? Now you can add new pages while building menus instead of leaving the customizer and abandoning your changes. Once you’ve published your customizations, you’ll have new pages ready for you to fill with content.

\n
\n
\n

Custom CSS

\n

\n

Sometimes you just need a few visual tweaks to make your site perfect. WordPress 4.7 allows you to add custom CSS and instantly see how your changes affect your site. The live preview allows you to work quickly without page refreshes slowing you down.

\n
\n
\n
\n
\n

PDF Thumbnail Previews

\n

\n

Managing your document collection is easier with WordPress 4.7. Uploading PDFs will generate thumbnail images so you can more easily distinguish between all your documents.

\n
\n
\n

Dashboard in your language

\n

\n

Just because your site is in one language doesn’t mean that everybody helping manage it prefers that language for their admin. Add more languages to your site and a user language option will show up in your user’s profiles.

\n
\n
\n
\n

Introducing REST API Content Endpoints

\n

WordPress 4.7 comes with REST API endpoints for posts, comments, terms, users, meta, and settings.

\n

\"\"

\n

Content endpoints provide machine-readable external access to your WordPress site with a clear, standards-driven interface, paving the way for new and innovative methods of interacting with sites through plugins, themes, apps, and beyond. Ready to get started with development? Check out the REST API reference.

\n
\n

Even More Developer Happiness \"?\"

\n

Post Type Templates

\n

By opening up the page template functionality to all post types, theme developers have even more flexibility with the WordPress template hierarchy.

\n

More Theme API Goodies

\n

WordPress 4.7 includes new functions, hooks, and behavior for theme developers.

\n

Custom Bulk Actions

\n

List tables, now with more than bulk edit and delete.

\n

WP_Hook

\n

The code that lies beneath actions and filters has been overhauled and modernized, fixing bugs along the way.

\n

Settings Registration API

\n

register_setting() has been enhanced to include type, description, and REST API visibility.

\n

Customize Changesets

\n

Customize changesets make changes in the customizer persistent, like autosave drafts. They also make exciting new features like starter content possible.

\n
\n

The Squad

\n

This release was led by Helen Hou-Sandí, backed up by Jeff Paul and Aaron Jorbin as Release Deputies, and with the help of these fine individuals. There are 482 contributors with props in this release—the most ever—with 205 of them contributing for the first time. Pull up some sassy Sarah Vaughan on your music service of choice, and check out some of their profiles:

\nAaron D. Campbell, abrightclearweb, Achal Jain, achbed, Acme Themes, Adam Silverstein, adammacias, Ahmad Awais, ahmadawais, airesvsg, ajoah, Aki Björklund, akshayvinchurkar, Alain Schlesser, Alex Concha, Alex Dimitrov, Alex Hon, alex27, allancole, Amanda Rush, Andrea Fercia, Andreas Panag, Andrew Nacin, Andrew Ozz, Andrey \"Rarst\" Savchenko, Andy Meerwaldt, Andy Mercer, Andy Skelton, Aniket Pant, Anil Basnet, Ankit K Gupta, Anthony Hortin, antisilent, Anton Timmermans, Antti Kuosmanen, apokalyptik, artoliukkonen, Arunas Liuiza, attitude, backermann, Bappi, Ben Cole, Bernhard Kau, binarymoon, Birgir Erlendsson (birgire), BjornW, bobbingwide, boblinthorst, boboudreau, bonger, Boone B. Gorges, Brady Vercher, Brainstorm Force, Brandon Kraft, Brian Hogg, Brian Krogsgard, Bronson Quick, Caroline Moore, Casey Driscoll, Caspie, Chandra Patel, Chaos Engine, cheeserolls, chesio, chetansatasiya, choong, Chouby, chredd, Chris Jean, Chris Marslender, Chris Smith, Chris Van Patten, Chris Wiegman, chriscct7, chriseverson, Christian Chung, Christian Nolen, Christian Wach, Christoph Herr, Clarion Technologies, Claudio Sanches, Claudio Sanches, ClaudioLaBarbera, codemovement.pk, coderkevin, codfish, coreymcollins, Curdin Krummenacher, Curtiss Grymala, Cătălin Dogaru, danhgilmore, Daniel Bachhuber , Daniel Kanchev, Daniel Pietrasik, Daniele Scasciafratte, Daryl L. L. Houston (dllh), Dave Pullig, Dave Romsey (goto10), David A. Kennedy, David Chandra Purnama, David Herrera, David Lingren, David Mosterd, David Shanske, davidbhayes, Davide \'Folletto\' Casali, deeptiboddapati, delphinus, deltafactory, Denis de Bernardy, Derek Herman, Derrick Hammer, Derrick Koo, dimchik, Dinesh Chouhan, Dion Hulse, dipeshkakadiya, dmsnell, Dominik Schilling, Dotan Cohen, Doug Wollison, doughamlin, DreamOn11, Drew Jaynes, duncanjbrown, dungengronovius, DylanAuty, Eddie Hurtig, Eduardo Reveles, Edwin Cromley, ElectricFeet, Elio Rivero, Ella Iseulde Van Dorpe, elyobo, enodekciw, enshrined, Eric Andrew Lewis, Eric Lanehart, Evan Herman, Felix Arntz, Fencer04, Florian Brinkmann, Florian TIAR, FolioVision, fomenkoandrey, Frank Klein, Frankie Jarrett, frankiet, Fred, Fredrik Forsmo, fuscata, Gabriel Maldonado, Garth Mortensen, Gary Jones, Gary Pendergast, Geeky Software, George Stephanis, Goran Šerić, Graham Armfield, Grant Derepas, Gregory Karpinsky (@tivnet), Hardeep Asrani, Henry Wright, hiddenpearls, Hinaloe, Hristo Pandjarov, Hugo Baeta, Iain Poulson, Ian Dunn, Ian Edington, idealien, Ignacio Cruz Moreno, imath, Imnok, implenton, Ionut Stanciu, Ipstenu (Mika Epstein), ivdimova, J.D. Grimes, Jacob Peattie, Jake Spurlock, James Nylen, jamesacero, Japh, Jared Cobb, jayarjo, jdolan, jdoubleu, Jeff Bowen, Jeffrey de Wit, Jeremy Felt, Jeremy Pry, jimt, Jip Moors, jmusal, Joe Dolson, Joe Hoyle, Joe McGill, Joel James, johanmynhardt, John Blackbourn, John Dittmar, John James Jacoby, John P. Bloch, John Regan, johnpgreen, Jon (Kenshino), Jonathan Bardo, Jonathan Brinley, Jonathan Daggerhart, Jonathan Desrosiers, Jonny Harris, jonnyauk, jordesign, JorritSchippers, Joseph Fusco, Josh Eaton, Josh Pollock, joshcummingsdesign, joshkadis, Joy, jrf, JRGould, Juanfra Aldasoro, Juhi Saxena, Junko Nukaga, Justin Busa, Justin Sainton, Justin Shreve, Justin Sternberg, K.Adam White, kacperszurek, Kailey (trepmal), KalenJohnson, Kat Hagan, Keanan Koppenhaver, keesiemeijer, kellbot, Kelly Dwan, Kevin Hagerty, Kirk Wight, kitchin, Kite, kjbenk, Knut Sparhell, koenschipper, kokarn, Konstantin Kovshenin, Konstantin Obenland, Konstantinos Kouratoras, kuchenundkakao, kuldipem, Laurel Fulford, Lee Willis, Leo Baiano, LittleBigThings (Csaba), Lucas Stark, Luke Cavanagh, Luke Gedeon, lukepettway, lyubomir_popov, Mário Valney, mageshp, Mahesh Waghmare, Mangesh Parte, Manish Songirkar, mantismamita, Marcel Bootsman, Marin Atanasov, Marius L. J., Mark Jaquith, Mark Root-Wiley, Mark Uraine, Marko Heijnen, markshep, matrixik, Matt Banks, Matt Jaworski, Matt King, Matt Mullenweg, Matt van Andel, Matt Wiebe, Matthew Haines-Young, mattyrob, Max Cutler, Maxime Culea, Mayo Moriyama, mbelchev, mckernanin, Mel Choyce, mhowell, Michael Arestad, Michael Arestad, michalzuber, Mike Auteri, Mike Crantea, Mike Glendinning, Mike Hansen, Mike Little, Mike Schroder, Mike Viele, Milan Dinić, modemlooper, Mohammad Jangda, Mohan Dere, monikarao, morettigeorgiev, Morgan Estes, Morten Rand-Hendriksen, moto hachi ( mt8.biz ), mrbobbybryant, Naim Naimov, Nate Reist, NateWr, nathanrice, Nazgul, Ned Zimmerman, net, Nick Halsey , Nicolas GUILLAUME, Nikhil Chavan, Nikhil Vimal, Nikolay Bachiyski, Nilambar Sharma, noplanman, nullvariable, odie2, odyssey, Okamoto Hidetaka, orvils, oskosk, Otto Kekäläinen, ovann86, Pascal Birchler, patilvikasj, Paul Bearne, Paul Wilde, Payton Swick, pdufour, Perdaan, Peter Wilson, phh, php, Piotr Delawski, pippinsplugins, pjgalbraith, pkevan, Pratik, Pressionate, Presskopp, procodewp, quasel, Rachel Baker, Rahul Prajapati, Ramanan, Rami Yushuvaev, ramiabraham, ranh, Red Sand Media Group, Riad Benguella, Rian Rietveld, Richard Tape, Robert D Payne, Robert Jolly, Robert Noakes, Rocco Aliberti, Rodrigo Primo, Rommel Castro, Ronald Araújo, Ross Wintle, Roy Sivan, Ryan Kienstra, Ryan McCue, Ryan Plas, Ryan Welcher, Sal Ferrarello, Sami Keijonen, Samir Shah, Samuel Sidler, Sandesh, Sang-Min Yoon, Sanket Parmar, Sarah Gooding, Sayed Taqui, schrapel, Scott Reilly, Scott Taylor, scrappy@hub.org, scribu, seancjones, Sebastian Pisula, Sergey Biryukov, Sergio De Falco, sfpt, shayanys, shazahm1, shprink, simonlampen, skippy, smerriman, snacking, Soeren Wrede, solal, Stanimir Stoyanov, Stanko Metodiev, Steph, Steph Wells, Stephanie Leary, Stephen Edgar, Stephen Harris, Steven Word, stevenlinx, stubgo, Sudar Muthu, Swapnil V. Patil, swapnild, szaqal21, Takahashi Fumiki, Takayuki Miyauchi, Tammie Lister, tapsboy, Taylor Lovett, team, tg29359, tharsheblows, the, themeshaper, thenbrent, thomaswm, Thorsten Frommen, tierra, Tim Nash, Timmy Crawford, Timothy Jacobs, timph, Tkama, tnegri, Tom Auger, Tom J Nowell, tomdxw, Toro_Unit (Hiroshi Urabe), Torsten Landsiedel, transl8or, traversal, Travis Smith, Triet Minh, Trisha Salas, tristangemus, Truong Giang, tsl143, Ty Carlson, Ulrich, Utkarsh, Valeriu Tihai, Vishal Kakadiya, vortfu, Vrunda Kansara, webbgaraget, WebMan Design | Oliver Juhas, websupporter, Weston Ruter, William Earnhardt, williampatton, Wolly aka Paolo Valenti, WraithKenny, yale01, Yoav Farhi, Yoga Sukma, Zach Wills, Zack Tollman, Ze Fontainhas, zhildzik, and zsusag.\n

 
\nSpecial thanks go to Rami Abraham for producing the release video and the many fine haiku we saw in the beta and RC announcement posts.

\n

Finally, thanks to all the community translators who worked on WordPress 4.7. Their efforts bring WordPress 4.7 fully translated to 52 languages at release time with more on the way. Additionally, the WordPress 4.7 release video has been captioned into 44 languages.

\n

If you want to follow along or help out, check out Make WordPress and our core development blog. Thanks for choosing WordPress – we hope you enjoy!

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4596\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:33:\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t\t\n\n\t\t\n\t\t\n\t\t\t\t\n\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Moving Toward SSL\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2016/12/moving-toward-ssl/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Dec 2016 17:20:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4588\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:327:\"We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1627:\"

We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle our users are going to face.

\n

SSL basically means the link between your browser and the server is encrypted. SSL used to be difficult to implement, and often expensive or slow. Modern browsers, and the incredible success of projects like Let’s Encrypt have made getting a certificate to secure your site fast, free, and something we think every host should support by default, especially in a post-Snowden era. Google also weighs SSL as a search engine ranking factor and will begin flagging unencrypted sites in Chrome.

\n

First, early in 2017, we will only promote hosting partners that provide a SSL certificate by default in their accounts. Later we will begin to assess which features, such as API authentication, would benefit the most from SSL and make them only enabled when SSL is there.

\n

Separately, I also think the performance improvements in PHP7 are particularly impressive, and major kudos to everyone who worked on that. We will consider whether hosts use PHP7 by default for new accounts next year as well.

\n

 

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4588\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:33:\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t\t\n\n\t\t\n\t\t\n\t\t\t\t\n\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.7 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2016/11/wordpress-4-7-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Nov 2016 04:26:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4579\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:328:\"The release candidate for WordPress 4.7 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on Tuesday, December 6, but we need your help to get there. If you haven’t tested 4.7 yet, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4331:\"

The release candidate for WordPress 4.7 is now available.

\n

RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on Tuesday, December 6, but we need your help to get there. If you haven’t tested 4.7 yet, now is the time! To test WordPress 4.7, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip).

\n

WordPress 4.7 is a jam-packed release, with a number of features focused on getting a theme set up for the first time. Highlights include a new default theme, video headers, custom CSS, customizer edit shortcuts, PDF thumbnail previews, user admin languages, REST API content endpoints, post type templates, and more.

\n

We’ve made quite a few refinements since releasing Beta 4 a week ago, including usability and accessibility enhancements for video headers, media and page template support in starter content, and polishing of how custom CSS can be migrated to and extended by plugins and themes. The REST API endpoints saw a number of bugfixes and notably now have anonymous comment off by default.

\n

Not sure where to start with testing? Try setting up a fresh site on a new installation with Twenty Seventeen (hint: head into customizing your site before touching any pages or widgets) and taking notes on what you enjoyed and what got you stuck. For more details about what’s new in version 4.7, check out the Beta 1Beta 2, Beta 3, and Beta 4 blog posts.

\n

Think you’ve found a bug? Please post to the Alpha/Beta support forum. If any known issues come up, you’ll be able to find them here.

\n

Developers, please test your plugins and themes against WordPress 4.7 and update your plugin’s Tested up to version in the readme to 4.7. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we work hard to avoid breaking things. An in-depth field guide to developer-focused changes is coming soon on the core development blog.

\n

Do you speak a language other than English? Help us translate WordPress into more than 100 languages! And if you haven’t yet done so, now is a great time to take the Annual WordPress Survey and send it on to your friends.

\n

Happy testing! And now for another Rami Abraham haiku break.

\n

Select your language
\nThen let your users choose theirs
\nget_user_locale()

\n

Theme authors rejoice
\nAny option may employ
\nSelective refresh

\n

Custom header video
\nMake sure to add_theme_support
\nBling above the fold

\n

A new template dawns
\nA hierarchy member
\nPost-type templates live

\n

PDF updates
\nPack a parade of polish
\nPrettier previews

\n

Template Post Type: New
\nTemplate Post Type: And Useful
\nTemplate Post Type: Thing

\n

Let lists live lively
\nLaud wp_list_sort()
\nLess laconic lists

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4579\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:33:\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t\t\n\n\t\t\n\t\t\n\t\t\t\t\n\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.7 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Nov 2016 01:51:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4576\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.7 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2019:\"

WordPress 4.7 Beta 4 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

For more information on what’s new in 4.7, check out the Beta 1, Beta 2, and Beta 3 blog posts, along with in-depth developer guides on make/core. We’ve made about 60 changes in the last few days for beta 4, including tweaks to Twenty Seventeen, custom CSS, and the REST API content endpoints.

\n

Do you speak a language other than English? Help us translate WordPress into more than 100 languages!

\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on WordPress Trac, where you can also find a list of known bugs.

\n

We are almost there
\nPlease test your plugins and themes
\nRC coming soon
\n

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4576\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:33:\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t\t\n\n\t\t\n\t\t\n\t\t\t\t\n\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordCamp US 2017-2018 in Nashville\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Nov 2016 23:24:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4571\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:330:\"The title says it all. We had some great applications for cities to host WordCamp US after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is Nashville, Tennessee. Based on the other great applications we got I’m also excited about the pipeline of communities that could host it in future […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1022:\"

\n

The title says it all. We had some great applications for cities to host WordCamp US after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is Nashville, Tennessee.

\n

Based on the other great applications we got I’m also excited about the pipeline of communities that could host it in future years as WordCamp US travels across the United States and gives us an opportunity to learn and love a new city, as we have with Philadelphia.

\n

By the way, if you haven’t yet, now is a great time to take the Annual WordPress Survey and ask your friends to as well.

\n

Photo Credit.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4571\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:39:\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t\t\n\t\t\n\t\t\n\n\t\t\n\t\t\n\t\t\t\t\n\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.7 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Nov 2016 03:30:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4566\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.7 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3120:\"

WordPress 4.7 Beta 3 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

For more information on what’s new in 4.7, check out the Beta 1 and Beta 2 blog posts, along with in-depth field guides on make/core. Some of the changes in Beta 3 include:

\n\n

Do you speak a language other than English? Help us translate WordPress into more than 100 languages!

\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on WordPress Trac, where you can also find a list of known bugs.

\n

Building the future
\nA global community
\nStronger together

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4566\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:39:\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t\t\n\t\t\n\t\t\n\n\t\t\n\t\t\n\t\t\t\t\n\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.7 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Nov 2016 17:39:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4552\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.7 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4240:\"

WordPress 4.7 Beta 2 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

Notable changes since WordPress 4.7 Beta 1:

\n\n

For more of what’s new in version 4.7, check out the Beta 1 blog post.

\n

If you want a more in-depth view of what major changes have made it into 4.7, check out posts tagged with 4.7 on the main development blog, or look at a list of everything that’s changed. There will be more developer notes to come, so keep an eye out for those as well.

\n

Do you speak a language other than English? Help us translate WordPress into more than 100 languages!

\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on WordPress Trac, where you can also find a list of known bugs.

\n

Happy testing!

\n

Ya es la hora
\n Time for another beta
\n请您帮下忙!

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4552\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 21 Mar 2017 10:45:05 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Fri, 10 Mar 2017 18:14:55 GMT\";s:4:\"link\";s:63:\"; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}}s:5:\"build\";s:14:\"20130911040210\";}","no"); INSERT INTO `wp_options` VALUES("124","_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca","1490136305","no"); INSERT INTO `wp_options` VALUES("125","_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca","1490093105","no"); INSERT INTO `wp_options` VALUES("126","can_compress_scripts","0","no"); INSERT INTO `wp_options` VALUES("127","_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9","1490136306","no"); INSERT INTO `wp_options` VALUES("128","_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n\t\n\t\n\t\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"WPTavern: PressShack Forks Edit Flow to Create PublishPress, Aims to Improve Multi-User Editorial Workflow in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67574\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://wptavern.com/pressshack-forks-edit-flow-to-create-publishpress-aims-to-improve-multi-user-editorial-workflow-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6808:\"

\n

Last week Steve Burge and the team at PressShack released PublishPress, a fork of Automattic’s Edit Flow plugin. PressShack is operated by the same team behind OSTraining with a focus on creating publishing plugins for larger organizations.

\n

Edit Flow has more than 10,000 active installs but is updated sporadically and is not very well supported. The PressShack creators saw an opportunity to fork the plugin and sell commercial support and add-ons. PublishPress is now available on WordPress.org with a seamless migration for Edit Flow users.

\n

\n

The first release offers the same features as Edit Flow along with a complete face lift, making interaction with the plugin’s settings more user-friendly. The new tabbed interface puts all the settings on one screen. PressShack has also tweaked the language of the plugin, changing Story Budget” to “Overview”, and simplifying other terms.

\n

\n

PublishPress introduces a few changes to the calendar, allowing users to click anywhere on a date to add content. It exposes the iCal or Google Calendar feed and uses icons to show post statuses, saving space for other information.

\n

Burge said that PublishPress will be making a fresh start and will not be following and incorporating updates from Edit Flow. The team plans to add a host of new features that improve the publishing workflow to handle multiple users:

\n\n

Most of these feature are slated for release in mid-2017 and will be offered as commercial add-ons. The team is currently still focused on writing unit tests for the core plugin and adding improvements to it on WordPress.org.

\n

PressShack Takes Inspiration from Drupal for Expanding Content Workflows

\n

PressShack’s creators also work closely with other open source publishing platforms. Burge said the team took some inspiration from the Drupal ecosystem, which offers more advanced features for modifying editorial workflows.

\n

“In Drupal, the workflow features are being demanded and developed by large organizations that use the platform,” Burge said. “As a result, Drupal does have a very big head start in this area. “In Drupal 7, the main workflow module was called Workbench. It was built to meet the needs of large customers such as universities, media outlets, and government agencies who have many different content managers.”

\n

Prior to having editorial workflow tools available, Burge said that Drupal agencies kept losing projects to rivals such as Adobe and OpenText, because they had publishing workflows built for multiple users. Building better publishing tools became a necessity for Drupal agencies that wanted to win projects from large organizations.

\n

Drupal 8 moves many of these editorial workflow improvements into core. Drupal 8.3, which is slated for April 2017, will introduce the ability to create multiple types of content workflows.

\n

“What’s really interesting about the Drupal 8 implementation is that they are thinking beyond just content publishing,” Burge said. “It will soon be possible to put whole sections of your site into a workflow. The demand for these features is still coming from enterprise customers: much of the work is being done by a team of Drupal developers inside Pfizer.”

\n

Burge cited a few examples of typical users requiring more elaborate publishing workflows:

\n\n

WordPress core is tailored to a single-author blog workflow, and there are relatively few plugins that modify the default editorial workflow for large teams. CoSchedule is one alternative to Edit Flow and PublishPress that has 10,000 active installs. It takes a SaaS approach and has more of a content marketing slant. Burge said he thinks the WordPress ecosystem’s scarcity of options for extending publishing workflows may be due to current limitations in core.

\n

“It’s possible there are some technical hurdles: for example, WordPress core has fairly limited user permissions,” he said. “It’s also possible that now is the right time for WordPress to start adding these features.”

\n

“WordPress agencies are building more enterprise sites and these demands are popping-up,” Burge said. “Matt just announced the Google Docs integration as a quick way to bring some collaborative features into WordPress. I think we’ll see more and more tools available for teams, rather than single authors.”

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Mar 2017 21:21:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Donncha: How to Auto Schedule WordPress Posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://odd.blog/?p=89500175\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://odd.blog/2017/03/18/how-to-auto-schedule-wordpress-posts/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2759:\"

If you post to a WordPress blog on a regular basis like I do on In Photos dot Org you’ll no doubt recognise the fatigue that comes from adjusting the publish date every single time on a new post so it appears a day later. If you have multiple posts like on a daily photoblog you have to remember what day the last post was made and adjust the date accordingly.

\n

A few years ago I wrote a small plugin that I never released to help schedule posts. In the media uploader you could select multiple photos and click a few buttons to be brought to a new page where you could enter title, content and tags for each image. Based on this experience, I suggested it as an idea to one of the teams at Automattic who built Post Bot. I used that for a long time and it has its strengths. If you’re posting content that has the same or similar tags you can copy and paste the tags from one post to another. I posted lots of black and white street images from my home town this way and it was super useful!

\n

I got tired of manually typing out tags, and unfortunately the site broke a few times, with posts not scheduling or one time they scheduled all in one go. Luckily the problems were quickly fixed. However, I started using the WordPress post editor again and scheduling a bunch of photos that way.

\n

Manually editing the publish date quickly became a chore. Lazarus, the form saver Chrome extension, would sometimes popup if I didn’t click exactly on the date, or as I said before I had to remember when the last post was made. They say there’s a plugin for everything, and there is for this too. Check out Publish to Schedule.

\n

You tell “Publish to Schedule” which days and how many posts should be published and when you go into the post editor the next available date is picked for you! The date doesn’t change until you hit Publish but I already used it to schedule a number of posts and it works really well.

\n

\n\n

Related Posts

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Mar 2017 16:50:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: GitHub Adds Plain English Explanations to License Pages for Open Source Projects\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67550\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/github-adds-plain-english-explanations-to-license-pages-for-open-source-projects\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2475:\"

GitHub took another step towards beefing up its support for open source projects this week with a new feature that makes it easier to understand a project’s license. If the project is using a popular open source license, GitHub will automatically add a short, plain-English description of the license and its permissions, conditions, and limitations. This allows GitHub users to see the implications of a project’s license at a glance.

\n

\n

GitHub pulls this data from ChooseALicense.com, the site it created in 2013 to help developers understand and select an open source license. The license descriptions and metadata are also open source and developers can incorporate them into their own projects using GitHub’s License API.

\n

This new feature follows GitHub’s release of Open Source Guides in February. The guides are a collection of 10 resources to help people get involved in open source, start their own open source projects, and manage large communities. The documents include helpful stories and tips from maintainers of successful open source projects.

\n

It was around this time last year that GitHub was confronted by open source project maintainers with an open letter of complaints regarding issue management. Nearly 2,000 maintainers signed the letter, requesting that GitHub prioritize features that open source project maintainers need. The company dragged its feet before eventually responding, while competing code hosting service GitLab capitalized on the situation with a new initiative focused on “making GitLab the best place for big open source projects.” Over the past year, GitHub has consistently released new features and improved existing ones in affirmation of its continued support for open source projects.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Mar 2017 03:03:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WPTavern: In Case You Missed It – Issue 19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=67590&preview=true&preview_id=67590\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/in-case-you-missed-it-issue-19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5660:\"photo credit: Night Moves(license)\n

There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.

\n

Apple Pay for WooCommerce

\n

WooCommerce announced that Apple Pay is now available for stores accepting payments using Stripe. According to Marina Pape, WooCommerce is the first open source platform to integrate with Apple Pay.

\n

We’re also proud to be the first open source platform to integrate with Apple Pay. Open source is the default for us, but it’s exciting to continue that level of openness with such an important payment solution.

\n

Human Made Makes Two Big Hires

\n

Human Made, a web development agency based in the UK recently announced two big hires. The first is Mike Little, co-creator of the WordPress open source project, as a WordPress Specialist. The second is Jenny Beaumont, who will take on the role of Senior Project Manager.

\n

Editor User Experience Survey

\n

The WordPress core development team has published a survey seeking feedback and data on how people use the editor. The editor is likely the most commonly used feature in WordPress. This is an opportunity for those who use it to provide feedback.

\n

Editor Experience Survey

\n

\n

Behind the Scenes of how Search works on the New WordPress Plugin Directory

\n

Greg Brown published details on Data.blog on how he improved the search relevancy for the new WordPress plugin directory using Elasticsearch. The post is technical in nature but provides great background information into how it works.

\n

In improving the fidelity of search results, it’s not just a question of how we satisfy a single user’s search query, but how we satisfy thousands of users for each unique search term: which plugins will support that volume of users and their requests for support? Which are most likely to give all of these users a great WordPress experience?

\n

NextGEN Gallery Surpasses 17 Million Downloads

\n
\n

NextGEN Gallery just reached over 17 million downloads. #WordPress

\n

— Imagely (@imagely) March 17, 2017

\n

\n

MainWP Reaches 1K Five-star Reviews

\n

After three years of being on the WordPress plugin directory, the MainWP plugin has received 1,000 five-star reviews.

\n

Heather Burns HeroPress Essay

\n

Heather Burns, founder of WebDevLaw, published an incredible essay on HeroPress this week. Burns describes the hardships encountered with her first job and how it and other circumstances led her down the path of discovering WordPress.

\n

By this point I’d started playing around with WordPress, and I learned about a local meetup group. I tiptoed in one night and awkwardly introduced myself and was welcomed right in.

\n

I realized over time that this was a very different sort of group. Everyone was grassroots volunteers, putting in the effort because they wanted to learn, not because they wanted social status. There was no tiresome hierarchy, no obsession with ‘prestige’, no kowtowing to the person with the sexiest car (in fact, we all took the bus.) If you had a question, you could ask it without being laughed out the room. No one was obliged to give anything more than they were able to give.

\n

HeroPress Wapuu!

\n

In what is a traditional part of this series, I end each issue by featuring a Wapuu design. For those who don’t know, Wapuu is the unofficial mascot of the WordPress project.

\nHeroPress Wapuu\n

 

\n

I present HeroPress Wapuu in celebration of HeroPress recently publishing its 100th essay. If you’re a fan of HeroPress and want to see it flourish, please consider being a sponsor.

\n

That’s it for issue nineteen. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Mar 2017 21:52:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WPTavern: Take the WordPress Editor Experience Survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67499\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wptavern.com/take-the-wordpress-editor-experience-survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2410:\"photo credit: Joanna Kosinska\n

WordPress core contributors have published a survey to collect feedback on how people are using the editor. The results of the short 15-question survey will assist the team in redesigning the editing experience in the WordPress admin.

\n

Participants are asked to identify how they use WordPress and if they use certain features like formatting buttons and distraction-free writing. The survey also asks how easy-to-use they consider the current editor to be and how organized it is. Users are also asked if they have ever installed a plugin that adds features to the editor, presumably to determine if there are features missing that should be considered for core.

\n

One question asks participants if they use any assistive technologies along with a screen reader. WordPress Accessibility team member Amanda Rush published some tips for screen reader users who want to take the survey. It includes several questions with radio buttons and screenshots that are not so friendly to screen readers. Rush provides a general walk-through with more explanation for those who are using screen readers to participate.

\n

So far, this survey has been more widely shared than the design team’s recent customizer survey, which was published after receiving just 50 results. WordPress contributors rely heavily on these surveys to make decisions about projects they are working on, as they do not have any telemetry data about what features people are using or not using. This is one example where data could quickly demonstrate how widely the distraction-free writing mode has been adopted and show what editor formatting buttons people are using.

\n

If you have a few minutes over the weekend and want to contribute to the future of WordPress, take the Editor Experience Survey.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Mar 2017 21:01:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: How to View Upcoming WordCamps in the WordPress Dashboard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/how-to-view-upcoming-wordcamps-in-the-wordpress-dashboard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2067:\"

Over the course of a year, WordCamps take place nearly every weekend. Although you can view upcoming events on WordCamp Central, a relatively new plugin exist that enables you to see upcoming WordCamps on the WordPress Dashboard.

\n

It’s called WordCamp Dashboard Widget developed by Ajit Bohra. Once activated, a new widget appears on the dashboard that lists upcoming WordCamps. Data is retrieved by using the public JSON API available on WordCamp Central, is stored in a transient, and refreshed every day to reflect new data.

\nUpcoming WordCamps Widget\n

Users can adjust the number of camps shown per page, sort events by location, date, or Twitter information. You can also display this information on any post or page using the [wordcamps] shortcode. The locations are linked to the event’s official WordCamp page. The @ symbol links to the official Twitter account associated with the event and the # symbol links to the official hashtag.

\n

During testing I noticed that the Twitter account for some events was either missing or incorrect. For example, WordCamp London links to @wcldn when it should link to @WordCampLondon. I’m not a fan of the way dates are presented in a Day/Month/Year format as I prefer Month/Day/Year.

\n

Bohra is continuing to improve the plugin with an option to refresh data, improve data fetching, and more filtering options for 1.0. I tested the plugin on a site running WordPress 4.8 alpha and didn’t encounter any issues. If you encounter a bug or have feedback, you can submit a new issue on the project’s GitHub page.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Mar 2017 20:09:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"WPTavern: Jetpack Introduces Theme Installation from WordPress.com, Sparks Controversy with Alternative Marketplace for Free Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67531\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:141:\"https://wptavern.com/jetpack-introduces-theme-installation-from-wordpress-com-sparks-controversy-with-alternative-marketplace-for-free-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12403:\"

Today Jetpack announced that its users now have access to a collection of 165 free themes from WordPress.com. Jetpack users can browse, preview, and activate themes by visiting the WordPress.com Theme Showcase. WordPress.com has also added the ability for Jetpack users to upload a theme from its interface as well, a feature that targets those who are heavily using Jetpack Manage instead of the WordPress admin.

\n

\n

Many of the free themes are already available from Automattic’s account on the WordPress.org Themes Directory, but the limitations of the preview functionality doesn’t present themes in their best light. The Theme Review Team added a new rule last year that theme authors can only upload one theme at a time and will have to wait for it to pass through the queue before submitting another. This severely restricts individuals and companies that are prolific theme authors, requiring them to wait months in the queue. Authors can realistically expect to only publish one or two themes per year on WordPress.org.

\n

After Zerif Lite, one of the most popular themes on WordPress.org, was suspended for five months for violations of content portability requirements, Matt Mullenweg was one of the most vocal opponents of what he called “draconian requirements.” In 2015, Mullenweg went so far to say that he is “completely okay with having something in the directory that breaks every guideline, as long as it’s interesting.”

\n

The Theme Review Team has not made significant changes that would give authors more freedom. Instead, much of the Team’s time seems to be spent looking for ways to reduce the queue. It’s no wonder that a company like Automattic, with the infrastructure of Jetpack Manage and WordPress.com, would choose to distribute themes via a more efficient route. However, this move has left some WordPress.org theme authors wondering if WordPress.org improvements will be less of a priority in the future.

\n
\n

Can you blame him? No. They (he?) needs to wrangle in the experience, avoid fragmentation, compete with other consumer hosted platforms.

\n

— Matt Medeiros (@mattmedeiros) March 16, 2017

\n

\n
\n

But what does it all mean for us surviving off of the .org distribution? Tough cookies, that\'s what.

\n

— Matt Medeiros (@mattmedeiros) March 16, 2017

\n

\n

“Today’s announcement is the glue that holds together Matt’s vision for the future .org experience, delivered via Jetpack,” WordPress.org theme author Matt Medeiros said. “Solving the dark cloud above the repo seems a lot less critical when we can throw Jetpack in front of users as an alternative. It’s a calculated measure to control the on-boarding experience of new users, which WP desperately needs for continued growth amidst a field of competitors like Wix and Squarespace.”

\n

According to Jetpack team member Richard Muscat, WordPress.com has “no immediate plans to sell themes at this time.” Jetpack users have access to free themes but will not, in the foreseeable future, be invited to purchase WordPress.com’s commercial themes. The team also plans to continue its presence on WordPress.org.

\n

“We have no plans to stop releasing themes into the .org directory,” Muscat said. “We just believe this makes an even nicer, more integrated experience for accessing the themes we offer on the WordPress.com side of things.”

\n

Jetpack’s announcement has also reignited fears of what the plugin’s commercialization might do to the WordPress ecosystem. In the past, Mullenweg has identified both Jetpack and WooCommerce as “multi-billion dollar opportunities” that could each individually be larger than WordPress.com. If WordPress.org is failing to attract new users with its theme previews, then Jetpack/WordPress.com is likely to pull even more eyes away with its separate marketplace.

\n

“As a small business (a label that’s critical) product creator, I see this as a motion in the direction to increase the visibility of Jetpack’s free/paid feature set, above the rest of us trying to desperately make a living out here,” Medeiros said. “Jetpack will be marketed as the one-stop-solution for all of your small business website needs, if that hasn’t already been woven into the fabric of it’s current messaging. It is ultimately positioning itself as the trusted source of functionality for new users, versus us ‘third-party’ plugins. After all, who wouldn’t trust the company ‘behind WordPress?\'”

\n

Ionut Neagu, CEO at Themeisle.com, and the author of Zerif Lite, shares Medeiros’ concerns about Jetpack’s more recent commercialization efforts.

\n

“What worries me more is the speed at which Automattic is pushing Jetpack,” Neagu said. “The Personal plan was introduced, and yesterday I got a cold email from some company they work with promoting their affiliate program. Today themes were introduced. It makes me wonder how far they plan to go and how this will affect theme and plugin developers.”

\n

However, Neagu takes a more optimistic stance on self-hosted users installing themes from WordPress.com.

\n

“As a theme author, I am not that worried about this particular aspect. Right now those themes are quite hard to find (it took me 10 minutes), are more targeted towards people using Jetpack Manage, and as far as I can see lots of them are looking a bit outdated.”

\n

Neagu sees a disconnect between what WordPress.org thinks users want and what they are actually looking for. Based on his research and experience selling themes, Neagu has found that users still expect complete solutions from themes. WordPress has grown beyond being just a blogging platform. Neagu said he hopes WordPress.org’s research for the new editor will reveal how many people are actually using the software for business.

\n

“We run a themes directory as well and we did extensive heatmaps to understand what kind of themes/screenshots users click on/ like,” Neagu said. “Looking at the results of a ‘business’ query, I am quite sure that users won’t be excited.”

\n

\n

This is likely the first iteration, and data from more Jetpack users should help WordPress.com refine the queries to present a mix of newer and popular themes. At the moment it looks to be simply a way to offer all of their available themes without the red tape of WordPress.org.

\n

Automattic Addresses Confusion Over WordPress.org Plugin Directory Guideline Regarding Executable Code and Installs

\n

The news of WordPress.com installing and updating themes for Jetpack users gave rise to speculation about whether or not this move is a violation of the plugin directory guidelines. Discussions centered around guideline #8, which states that plugins may not send executable code via third-party systems:

\n

Serving updates or otherwise installing plugins, themes, or add-ons from servers other than WordPress.org’s.

\n

Jetpack representative Richard Muscat gave us the following statement on behalf of Automattic:

\n

The guidelines prohibit _plugins_ from installing third party code directly but Jetpack doesn’t do that for this feature. The guidelines state that: “Executing outside code within a plugin *when not acting as a service* is not allowed.”

\n

The service Jetpack provides with respect to themes is via WordPress.com which _is_ acting as a service. This is identical to how Akismet operates with respect to spam-filtering and other Jetpack services such as data sync and backup, content delivery (Photon), and plugin installation/updates.

\n

We ask users to opt-in to WordPress.com services when connecting Jetpack and all our services follow established guidelines.

\n

The public discussions also prompted WordPress.org Plugin Directory representatives to post an article clarifying that Jetpack is not in violation for installing themes.

\n

“The trick here, and this is what is about to sound like hair splitting, is that it’s not the plugin UI on your site that does the install,” Mika Epstein said. “In order for Manage WP and Jetpack to work, you have to go to your panel on their sites and install the items.”

\n

As SaaS products have not yet been used extensively in the WordPress ecosystem, developers are still figuring out how this type of implementation can interact with WordPress sites via plugins installed from the official directory. The plugin team clarified that if you are pushing plugin or theme installs or updates from a third-party service on its website, then it is no longer a third-party service but rather a first-party service where you are directly initiating those actions.

\n

However, not all developers agree that this distinction makes any difference.

\n
\n

@daljo628 @thejeffmatson @williamsba @chriswallace @mattmedeiros Saying SaaS can install plugins but plugin cannot install plugins is silly.

\n

— Carl Hancock \"?\" (@carlhancock) March 16, 2017

\n

\n

Gravity Forms founder Carl Hancock contends that ManageWP is different in that it doesn’t provide users with themes and plugins – it’s just a service for managing your sites.

\n

“You can install plugins from the WordPress.org plugin and theme repository, you can connect your Dropbox account and install plugins from your Dropbox account, or you can upload your own plugins,” Hancock said. “The key is it’s either plugins and themes from WordPress.org OR bring your own. Just like WordPress itself.

\n

“They [ManageWP] do not provide an alternative repository of themes and/or plugins that competes with the WordPress.org repos.”

\n

This is where much of the controversy lies for WordPress.org theme authors who depend on the official directory for distribution. Competing with equally free themes that are hosted on WordPress.com with a much better sorting UI and preview functionality is a new challenge they will have to embrace.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Mar 2017 00:08:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"WPTavern: U.S. Department of Defense Launches Code.mil Open Source Initiative, First Release Tests Impact of AGPL Licensing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67451\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"https://wptavern.com/u-s-department-of-defense-launches-code-mil-open-source-initiative-first-release-tests-impact-of-agpl-licensing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7190:\"A U.S. Air Force F-15E Strike Eagle aircraft flies over northern Iraq Sept. 23, 2014, after conducting airstrikes in Syria. – photo credit: U.S. Department of Defense\n

The U.S. Department of Defense (DoD) is experimenting with open sourcing more of its code on GitHub. Code.mil invites developers from around the world to collaborate with federal employees on unclassified code. The Defense Digital Service (DDS), which brings in experts from top technology companies like Google, Amazon, and Netflix for short assignments, is organizing the initiative to open source more government code.

\n

“Open source and free software (which refers to software freedom, not free of cost) are industry best practices and integral parts of modern software development,” the department said in a statement announcing the initiative. “They, however, are concepts yet to be widely adopted within the department. With Code.mil, DoD can access a depth and breadth of technical skill previously underutilized while offering software tools created by the government for free public use.”

\n

The FAQ document for the initiative states that “modern software is open sourced software” and that the department is aiming to more actively participate in the open source and free software communities.

\n

Licensing is one of the unique challenges of making government code open source, as code written by federal employees is not protected by copyright under U.S. laws. After consulting the Open Source Initiative and Free Software Foundation, the DoD devised an open source licensing strategy where code written by federal employees will fall under the public domain with no restrictions. DDS developed a GitHub webhook to ensure commits from government employees follow the Developer Certificate of Origin process. Private sector contributions will be protected by standard OSS licenses. This is outlined in the INTENT.md document on the Code.mil repository.

\n

Code.mil’s First Open Source Project Released Under AGPL to “Test GPL as an Approach”

\n

In addressing one person’s feedback advocating for all Code.mil projects to be MIT-licensed, DDS engineer Tom Bereknyei confirmed that the team will leave this decision to each project’s leadership.

\n

“We’ve had these same discussions internally,” Bereknyei said. “We did not want to endorse a particular license and we intend each project to decide which license is appropriate for them. Some may choose MIT, BSD, Apache, or eventually GPL. We did not want to take that choice away from them.”

\n

eMCM, a web-based viewer for the Manual for Courts-Martial (MCM), is the first open source project to be released on Code.mil. It provides a canonical “live” edition of the manual that is easier to access and maintain than previous versions. eMCM was released this week under the AGPL license.

\n

“We chose to use the Affero General Public License (AGPL) for the eMCM because every military member has the right to know how the raw legal code (i.e., MCM) will be transformed or manipulated by the eMCM,” the Defense Digital Service stated in the announcement. “Applying the AGPL is a small but important way to help ensure the public has that freedom and transparency to the process.”

\n

In the pull-request for updating the license on the project, Bereknyei explained why he proposed the AGPL:

\n

It’s a user-facing project, not a library. Ultimately it would be good to preserve the rights of the public to inspect how the raw MCM is transformed by the viewer.

\n

Among the projects we have, this seems to be the best candidate for a GPL test. It is fairly self contained, doesn’t integrate with any systems, front-end heavy, small enough that a corporate rewrite is easy, and uses only a few libraries. My goal is only to test GPL as an approach. If this project isn’t suited, I’m sure we can find another.

\n

When Bereknyei was questioned by DDS colleague Nicholas Small about why he opted for AGPL over MIT, he said he wanted to protect the code from being redistributed as closed-source.

\n

“MIT would allow someone to fork, improve, and release closed-source,” Bereknyei said. “The rule of thumb I am trying to apply is that when the rights/convenience for developers are more important, go with MIT/BSD/ISC. When the rights/convenience for users are more important, go with GPL.”

\n

Historically, the DoD has used GPL-licensed software extensively and even recommends government contractors select a GPL-compatible license when developing software as a deliverable in DoD contracts.

\n

One beneficial byproduct of the DoD’s initiative to open source more code is that the public can watch and participate as federal employees discuss license selection in the open. The department is finally recognizing that taxpayer-funded code is a public good and inviting private sector professionals to the table to build modern software together. Anyone can open an issue or pull request, regardless of their background, location, or formal qualifications. The DoD plans to expand Code.mil to include projects from other DoD offices and may develop it into a full-fledged website instead of simply redirecting to GitHub.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Mar 2017 04:50:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: WPWeekly Episode 267 – Interview With Aaron D. Campbell, WordPress Security Team Lead\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=67502&preview=true&preview_id=67502\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wptavern.com/wpweekly-episode-267-interview-with-aaron-d-campbell-wordpress-security-team-lead\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2376:\"

In this episode, Marcus Couch and I are joined by Aaron D. Campbell, WordPress Security Team Lead. Campbell provides insight into who’s on the team and what they do behind the scenes to coordinate security releases. We discuss the complex nature of disclosures, when to publish them, and how much information they should have.

\n

In light of WordPress 4.7.2, Campbell shares the lessons he learned and how they’ll be applied to future releases. If you’ve ever wondered about the security aspects of WordPress, this is the episode for you.

\n

Stories Discussed:

\n

WooCommerce 3.0.0 Scheduled for Release April 4th

\n

Plugins Picked By Marcus:

\n

Facebook Live Chat for WordPress makes it easier for customers to connect with businesses via Facebook Messenger.

\n

Contact Form 7 Database saves submissions from Contact Form 7 to the database for future reference. You can also view them in the WordPress backend.

\n

Total Spent by Customer for WooCommerce adds a sortable column to the users list to show how much the user spent on your WooCommerce Store. This is useful to figure out who your top customers are.

\n

WPWeekly Meta:

\n

Next Episode: Wednesday, March 22nd 3:00 P.M. Eastern

\n

Subscribe To WPWeekly Via Itunes: Click here to subscribe

\n

Subscribe To WPWeekly Via RSS: Click here to subscribe

\n

Subscribe To WPWeekly Via Stitcher Radio: Click here to subscribe

\n

Listen To Episode #267:
\n

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Mar 2017 22:36:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"HeroPress: Going Back To My Roots\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1650\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://heropress.com/essays/going-back-roots/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16907:\"\"Pull

“Get out there and look at that f****n car. Look at that f****n car!

\n

And all of the good little office girls jumped up and ran outside to ogle and coo over the chairman’s latest “prestige motor.”

\n

Me being me – someone who couldn’t care less about cars, or massaging the needy egos of the men who feel a need to show them off – I stayed sat at my desk and carried on with my work.

\n

My absence outside would be noted, and would not do me any favours.

\n

I had taken a job at a local business support organisation because I needed the work. I’d been told that my experience and abilities could benefit the organisation and, by extension, the local business community. The joke was on me.

\n

In truth, the organisation was a back-slapping boys’ club which didn’t even have a business plan. Its main income source was, and remains to this day, the revenue from a vanity awards dinner, where members nominate themselves for meaningless awards and then pay thousands of pounds to find out if they won. Beyond that, its sole purpose was to provide the board and management with “prestige and status” (my manager’s words, not mine.) The office atmosphere was so toxic that the HR manager, faking every excuse in the book, hadn’t bothered to show up in months, which meant that I never saw a job description, had a performance review, or was signed up for the company pension; in fact, the only way I got a contract was by going in on a Saturday to type it up myself. It was all pretty ironic for an organisation which officially exists to support other businesses.

\n

But bills need to be paid, so I kept my head down and did my work and breathed deeply through the increasingly dysfunctional dramas of the board and management.

\n

Believing that you can keep calm and avoid office politics in a dysfunctional workplace is a unique form of denial.

\n

By showing up for work in the morning, observing the backstabbing behavior around you, and keeping your nose above the parapet, you make yourself easy pickings.

\n

It did not help that my job required me to read certain documents, pass on certain email exchanges, see certain expense receipts, and take minutes at certain meetings. I knew everything. I knew what everyone was up to. I knew too much.

\n

The things I knew too much about erupted violently in the space of a fortnight. Sackings, retaliatory sackings, accusations, slanders, backstabs, screaming, lies, people literally being escorted out the back door, people breaking into file cabinets and document storage, the whole ugly lot.

\n

I decided life was too short to put up with that nonsense and scurried off the sinking ship. Unemployment was preferable to working in a dysfunctional war zone.

\n

A few days later I was sitting in my living room in my pajamas (as unemployed people do), staring blankly at the Christmas tree, barely aware if it was day or night, my head still spinning about what had just happened and what I was going to do next. Then there was a knock at the door. The postman, I assumed.

\n

No, it was the police. They wanted to come in. So they did.

\n

Allegations had been made. Statements had been taken. Criminal charges would be filed.

\n

Against me.

\n

Merry Christmas.

\n

Merry Christmas to you too, I replied as I saw them out.

\n

Because that’s how office politics work, folks. You don’t walk away from egomaniacs on your own terms. That implies there is something wrong with them. They have to take you down on their own terms. That implies there is something wrong with you. You may think you have left the backstabbers to get on with their petty games without you taking the meeting minutes and processing the strip club expense receipts. You’re wrong. They have got to find a way to take you down and make you keep your mouth shut. And they will.

\n

Moving On

\n

I moved on with my life. I found a stable temp job which had the option to go permanent, and I was quite content with it. I even almost forgot about the police visit. The Scottish justice system, you see, is notoriously slow. So when a letter arrived four months later informing me that I would be standing in a criminal trial at the local sheriff court, I threw up.

\n

I was throwing up all the time at that point because I had just found out I was pregnant.

\n

Most women spend pregnancy in a dreamy haze surrounded by friends, family, and affection. I spent it taking unpaid breaks from my temp jobs to meet with a legal aid solicitor (being unemployed and on a temp wage, I couldn’t afford to pay a lawyer) to plan my defence. He was nice enough, but was clearly not sure what to make of the whole situation. He was used to dealing with actual crimes – stabbings, domestic assaults, and the like. And there was a five foot two pregnant lady in front of him explaining all the plot twists and characters in this pathetic real-life soap opera. He probably looked forward to getting back to the stabbings.

\n

In the meantime, for health and safety reasons, I had to inform my temp employer about the pregnancy. The permanent job offer evaporated instantly.

\n

I spent the rest of my time taking whatever demeaning temp admin jobs a heavily pregnant woman could get in order to work the minimum number of days required to qualify for the basic state maternity allowance, which at the time was £106 a week for six months.

\n

Suffice to say my dignity took a bit of a beating that year.

\n

By the time the date of preliminary hearing rolled around – again, the Scottish justice system being as slow as it is – I was on the edge of my third trimester. And so there I was, standing alone in the dock in a criminal courtroom, in sheriff court, next to drug dealers and knife thugs, wearing a hideous Marks and Spencer maternity dress, to plead not guilty to something that had never happened.

\n

All of that because of office politics.

\n

Now, the thing about legal aid is that you get what you pay for. My solicitor didn’t show up. He faxed an instruction to one of the solicitors at the sheriff court who acts on behalf of others in those matters. In hindsight, this was a strategy to suggest to the court that the case was so stupid it was not worth showing up for. On the day, though, I was completely, totally, alone, left to stand up and speak for myself.

\n

The only person I had in the world to support me was kicking furiously in my stomach, as if to say: go, mum, go.

\n

At that moment I had an insight. This, I realised, is it. This is the low point of my life. This is absolute rock bottom. It does not get any worse than this. From here, you can’t go any lower. It is only up from here. And that, standing there in that dock, was strangely liberating.

\n

Now here’s the thing about elderly male judges in curly 18th century wigs. They’re not stupid. He took one look at the charge sheet, one look at the folder of statements and evidence against me, and one look at me. He asked the befuddled prosecuting solicitor what on earth was going on here; the solicitor replied that they were looking to gather more evidence against me. “And how much longer are we to wait for that? This was ten months ago,” he replied to her, very, very cross. This is all very interesting, I thought.

\n

Two days later my solicitor phoned: the judge had ruled the case was “not in the public interest.” That is Scottish legal parlance for “an absolute load of crap.” All charges were dropped; I would have no criminal record; I was done. I was finished. I was free.

\n

Well, free, unemployed, heavily pregnant, destitute, my reputation had been destroyed, and now I had a large hole in my CV which would be awfully difficult to explain. Other than that, I was fine.

\n

Moving On Again

\n

I went on state maternity pay early and took some time to get my head back together. That gave me the breathing space to realise a few things.

\n

One was that I was done with office life. That meant I would have to find something to do on my own.

\n

Two was that I was pretty good with this web stuff – I’d been making web sites since 1997, had been running a very popular web site since 1998, and had always been the go-to girl for the web site in everywhere I’d ever worked – and so I might as well do that for a living.

\n

And three was that I had learned the law is bloody terrifying if you let other people blindside you with it. If you know what you are looking at, where you stand within it, and how others are seeking to use it to further their position, you are no longer a hapless bystander to it. You are an equal participant with a fair chance. That is your choice to make.

\n

Setting Up Shop

\n

So I set up shop as a self-employed web designer, working quite happily from home with my biggest fan babbling next to me in the playpen. The money wasn’t great, but my stress levels were non-existent, and I had no co-workers to stab me in the back.

\n

Lack of co-workers should never mean lack of colleagues, though, and after a few years I realised local business networking groups simply weren’t for me. I also needed people other than the members of an ancient listserv to bounce questions and ideas off of in real-time. By this point I’d started playing around with WordPress, and I learned about a local meetup group. I tiptoed in one night and awkwardly introduced myself and was welcomed right in.

\n

I realised over time that this was a very different sort of group. Everyone was grassroots volunteers, putting in the effort because they wanted to learn, not because they wanted social status. There was no tiresome hierarchy, no obsession with “prestige”, no kowtowing to the person with the sexiest car (in fact, we all took the bus.) If you had a question, you could ask it without being laughed out the room. No one was obliged to give anything more than they were able to give.

\n

In short, it was my kind of group, and these were my kind of people.

\n

After a few years we got ambitious enough to decide to put on a conference (which due to various reasons was a WordPress conference but not a WordCamp – ah, the good old days.) We were short of speakers. I suggested to Martin, the lead organiser, that someone should do a talk on that “cookie law” thing that at the time was coming into play very shortly.

\n

“Thank you for volunteering,” said Martin.

\n

“You’re a b*****d, you know that, Martin?” I replied.

\n

So Martin sent me off to do my homework and put together this conference talk. I thought it would just be a simple slide deck: what the law is, how it works, how to comply. Much to my surprise, putting that talk together changed my life.

\n

The Old Becomes New

\n

As I sat at my laptop, doing the research, I felt something strange stirring. It was old me.

\n

Old me, who had done an undergraduate degree in international politics. Old me, who’d been a policy intern at think tanks and research centers. Old me, who’d sat in Congressional committees and worked on the Hill and ate politics for breakfast. Old me who’d trained very hard to do one thing and had gotten sidetracked by real life and was now doing something else because something bad had happened. Old me was now new me reading the full text of a piece of EU legislation about how the internet is supposed to work while shouting at my laptop screen, “there is no bloody way that is ever going to work,” while my biggest fan looked at me baffled and then asked me for a cup of juice.

\n

Whoever I was now, and whatever crap had happened to me in those intervening years, I was back.

\n

That conference talk turned into an obsession. I began writing about law and policy issues that impact our work – be it regulations on accessibility, e-commerce, privacy and data protection, taxation, UX, contracts, copyright, geoblocking, or any of the smaller issues that touch our work every day. I even became a student again and earned a postgraduate certification in internet law and policy from the University of Strathclyde. I still did the client-facing web work but my enthusiasm for it waned by the month.

\n

At WordCamp London 2015 I gave a talk on various digital policy issues, then spent the rest of the time sitting in the track devoted to charity and not-for-profit web sites, as that was what my business did. As the speakers gave their superb talks I felt myself sinking lower in my chair. Another insight. Oh, woman, you’re in the wrong job. This isn’t what you are supposed to be doing. For the first time I asked myself why I was devoting such passion to the digital policy side while still carrying on with a web design business I started up to give myself a job with a newborn baby. A few months later I was flown out to Seville on a few days’ notice to speak at WordCamp Europe, where I replaced a speaker who had been hospitalised. I felt a tremendous sense of obligation because of that – it was deeply humbling to be given an opportunity because of someone else’s illness – and I resolved to do more to give back to the WordPress community.

\n

I hung up my web design mouse in the autumn of that year. I still do odd bits and bobs for a handful of existing clients but I now focus entirely on digital law and policy. My blog is read by the UK Parliament, the European Commission, and the US Department of State. I speak to non-WordPress groups ranging from Joomla developers to Ruby programmers, but WordPress remains my home and my community. I encourage members of the community to respect the law and to work within it, not to fear it. I think, all things considered, I’m more than qualified to understand why that’s true.

\n

Thanks to the WordPress community I’ve made friends for life, travelled to new places, and had adventures I never thought possible. I’ve built a new career while connecting with the important things I thought I had left behind. And last year when I was pickpocketed en route to a conference talk, the WordPress community in that city – none of whom I had ever met – leapt into action to provide me with food, beer, and hugs. In a strange city where I didn’t speak the language and had no money, being part of the community meant I didn’t have to be scared and alone.

\n

I’ve come a long way from that lonely courtroom dock.

\n

The post Going Back To My Roots appeared first on HeroPress.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Mar 2017 12:00:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Heather Burns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: Bocoup Launches Study to Measure Impact of Open Work on Developer Well-Being\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67447\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/bocoup-launches-study-to-measure-impact-of-open-work-on-developer-well-being\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1980:\"photo credit: Lukasz Kowalewski\n

Bocoup, an open source technology and design consulting company, is recruiting for a new study that aims to “measure the impact of open work on developer well-being and productivity.” The company is partnering with MIT and UCLA to develop an open work email-bot that will interact with organizations that sign up to participate. The study is open to teams that use source control.

\n

“We’re defining ‘open work’ as a project where tasks/work product are/can be shared outside the group immediately responsible for those tasks,” Bocoup Director of Research Boaz Sender said.

\n

Participating organizations will get hooked up with Bocoup’s email-bot, which offers tools for recognizing team members or open source community members for their contributions to projects. Bocoup plans to publish the average results with the goal of educating businesses and policy makers about the value of open source work. Data from organizations participating in the study will be anonymized and untraceable.

\n

With all the new ways of working together on the web (GitHub, Slack, GitLab, etc.) it’s good to see a company prioritizing research on how this impacts developers. The study begins in March and will end in June. If you’re interested to have your organization be a part of it, you can find out more on the signup form and get a better understanding of the time commitment on the FAQ page.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Mar 2017 02:10:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WPTavern: WooCommerce 3.0.0 Scheduled for Release April 4th\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67438\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wptavern.com/woocommerce-3-0-0-scheduled-for-release-april-4th\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4981:\"

Big changes are on the way for WooCommerce. Mike Jolley, lead developer of WooCommerce, announced that WooCommerce 2.7 will be versioned 3.0.0 with a scheduled release date of April 4th. During the 2.7 beta testing phase, the team discovered a significant bug in the way that timestamps are handled.

\n

“Essentially, some developers need a way to reliably get UTC timestamps as well as dates according to the site’s timezone,” Jolley said. “To resolve this we’re working on a solution which accepts either a UTC timestamp, or an ISO8601 datetime string, and returns a DateTime object so timezone information can be retrieved if needed. This approach is not compatible with the get_date_x getters found in 2.7 beta.”

\n

Beginning with WooCommerce 3.0.0, the project will use semantic versioning or SemVer. WooCommerce has incrementally versioned its releases similar to WordPress. For example, WooCommerce 2.5, 2.6, 2.7. Semantic versioning allows for three digit version numbers and should make it easier to discern major versions from maintenance and bug fix releases. The three digits stand for major, minor, and patch.

\n

According to the SemVer site, each number is incremented when:

\n\n

Under this system, WooCommerce 3.0.0 is a major update with 3.1.0 being a minor update. The next major update will be 4.0.0. Developers should take note that in 3.0.0 RC1, the versioning and @since properties are relabeled to 3.0.0. “If you have used version_compare statements in your code, they will still work since 3.0.0 is greater than 2.7.0, however, you can change these for clarity,” Jolley said. Themes with template files versioned 2.7.0 may need to be updated to use 3.0.0 to prevent reports of outdated template files.

\n

In addition to version changes and fixing major bugs, the team is allowing up to three weeks for 3.0.0 RC1 to be tested. The amount of time to test has been extended from one week to three based on feedback from extension developers.

\n

“An RC is really the first point in time when people can look at the code and feel confident it’s probably not going to change a lot before the official release,” Brent Shepherd, founder of Prospress Inc. said. “With that in mind, having 3 months of beta testing, but only 1 week for the RC, doesn’t make a lot of sense. It makes sense to give more time in that later stage after the RC.”

\n

Josh Kohlbach, a WooCommerce extension developer, also agreed with extending the RC testing time. “Currently from our company’s perspective we’ve had to put other priorities on hold in order to put WC2.7 changes ahead,” Kohlbach said. “The 2.7 changes we were holding off on doing until RC, which is what we normally do.”

\n

“However, when it was announced that there would be only one week between, we figured that wouldn’t be enough time for proper testing and pushing updates on all of our products so we’re compatible on day one,” he said. “It just isn’t enough time so we, like many others by the sounds of it, started making our compatibility fixes around Beta 2 this time even though we knew there might be more changes coming down the pipe before RC gets here.”

\n

Extension developers are praising the team for changing to a semantic versioning system and extending the time to test Release Candidates. “I’m very happy to see these changes,” Shepherd said. “Big props for making the tough call late in the release cycle. Hopefully it will help ensure a smoother release for all WC users of this version.”

\n

“I think this is a really positive move forward for WooCommerce,” Kohlback said. “I for one want to thank you on behalf of all the third-party developers for being so open and taking on board all of our various points, really makes us happy to be part of the community!”

\n

If all goes well, you can expect to see an update for WooCommerce in your WordPress dashboard on April 4th.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Mar 2017 22:23:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Varying Vagrant Vagrants 2.0.0 Introduces YAML Configuration, Revamps Documentation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67436\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/varying-vagrant-vagrants-2-0-0-introduces-yaml-configuration-revamps-documentation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4545:\"

\n

Varying Vagrant Vagrants 2.0.0 was released yesterday with support for a YAML configuration file. This is a major improvement that gives VVV users more flexibility in customizing their configurations. The new vvv-config.yml file includes the defaults and users can create a vvv-custom.yml file to change the default provisioning. Utilities have been broken out into their own repository, allowing users to specify PHP 5.6, 7.0, or 7.1 for new projects.

\n

“In the past, it was often difficult as a maintainer to say no to feature requests because I knew that the customizations would either be really annoying for someone to implement on their own or would require a fork, possibly losing the benefit of future changes,” VVV Project Lead Jeremy Felt said. “At the same time, it was hard to say yes because not everyone needs the same features. Those two clash, and the easiest answer is to stall. The new changes provide a pretty straight forward way of providing these custom changes and make it easy to stay in sync upstream.”

\n

Version 2.0.0 was also released with new documentation on the VVV website. Contributors are migrating docs from the wiki on GitHub to the new website and plan to make them translatable in the future.

\n

Felt also recently documented VVV’s governance model and promoted Lorelei Aurora to the role of Lead Developer on the project. VVV has 108 contributors, by Felt’s count, and he estimates approximately 100 clones of the project per day based on GitHub’s analytics. For the past five years, Felt has cultivated VVV’s growing community of contributors by developing a friendly and welcoming culture within the project.

\n

“Very early on I read something about OSS project maintenance that inspired me to always greet new commenters, issue creators, and developers in an effort to make them feel welcome from the beginning,” Felt said. “Removing even the smallest hurdles of contributing to open source goes a long way. Being friendly encourages people to stick around. Even in small projects like VVV, it can be overwhelming to figure out if you’re doing things right.”

\n

Felt said he wished he would have written the governance document sooner, because it provides a roadmap for contributors. He found that having this information available to the community from the beginning may be just as important as having a license in place.

\n

“It starts to answer the ‘what kind of impact can I have’ question when someone is getting started,” Felt said. “The current list of committers is a little misleading in that they are all people who were very active early in the project, but not as much now. Their input continues to be trusted, but commit access probably won’t be used very much. This isn’t a bad thing, as a project goes through cycles, but something to keep track of as a maintainer. Having a process is a healthy thing. I’m hoping it attracts even more contributors!”

\n

What’s Next on the VVV Roadmap?

\n

The next focus on the VVV roadmap is building out the rest of the documentation on varyingvagrantvagrants.org. Felt said he hopes it will become a great place for basic setup, detailed guides, and frequent troubleshooting tips. Translated docs is the next item that Felt said he hopes can be a huge benefit to the project and the community.

\n

“There are a couple things that would be fun for flexibility,” Felt said. “A long-running pull request that introduces PHP Brew would be nice to finally tackle. Introducing MySQL Sandbox would be cool. And who knows? Everyone should stop by and leave a note with the feature they’d like to see most. I’m more comfortable saying ‘no’ now.”

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Mar 2017 19:28:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: WordPress.com Updates Its Post Editor With a Distraction-Free Interface\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67429\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/wordpress-com-updates-its-post-editor-with-a-distraction-free-interface\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3321:\"

WordPress.com has unveiled a refreshed post editor that makes content front and center.

\n

The most noticeable change is the user interface. The sidebar of meta boxes is now on the right-hand side instead of the left. Clicking the Post Settings link hides the sidebar, providing a cleaner interface. The preview and publish buttons are no longer in a metabox and are permanently displayed.

\nNew WordPress.com Post Editor\n

Drafts are quickly accessible by clicking the number next to the Write button. Hovering over a draft title displays a small excerpt of the post. Unlike the distraction-free writing mode in the self-hosted version of WordPress, sidebars and other items on the screen do not disappear and reappear. This animation has been described by some as a distraction.

\n

Joen Asmussen and Matías Ventura, two Automatticians based in Europe, helped create the new interface. In an interview conducted by John Maeda, Global Head of Computational Design and Inclusion at Automattic, Asmussen describes what he’s most excited about with the improvements. 

\n

“Everything has a right place,” Asmussen said. “In this iteration, we’ve tried to find those places for the preview and publish buttons, as well as the post settings. By making the buttons permanently visible and the sidebar optionally toggled, my hope is that the combination will provide a seamless flow for both the person who just wants to write, as well as the person who needs to configure their post settings.”

\n

Ventura says he is happy to bring the focus back on the content by placing it in the center. “I’m also fond of the recent drafts menu next to the ‘Write’ button, as it provides a quick way to carry on with your unfinished posts,” he said. “These editor refinements have the potential to let your work on WordPress keep you deeply in the productive state of flow.”

\n

The core team continues to work on a block based editor for the open-source WordPress project and Asmussen hints that this approach to writing could one day end up in the WordPress.com post editor.

\n

After testing the new editor on WordPress.com, I can say that it’s more enjoyable to use than the distraction-free writing mode in WordPress. There’s less distraction, meta boxes are either on the screen or they’re not, and I enjoyed writing without interface elements disappearing and reappearing on the screen.

\n

If you’d like to try the new editor on a self-hosted WordPress site, you can do so through Jetpack. Visit the Jetpack dashboard in the WordPress backend, click on the Apps link, then click the Try the New Editor button.

\n

After using the new editor, let us know what you think. How does it compare to the writing experience currently in WordPress?

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Mar 2017 02:03:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: John Maeda’s 2017 Design in Tech Report Puts the Spotlight on Inclusive Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67406\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/john-maedas-2017-design-in-tech-report-puts-the-spotlight-on-inclusive-design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6207:\"

\n

John Maeda, Automattic’s Global Head of Computational Design and Inclusion, presented his third annual “Design in Tech” report at SXSW over the weekend. The previous reports have received more than two million views and this one is equally loaded with thought-provoking information about the future of the design industry.

\n

“Design isn’t just about beauty; it’s about market relevance and meaningful results,” Maeda said. He highlighted how design leaders are increasingly top hires at major corporations, due to market demand. Businesses are beginning to embrace design as a fundamental tool for success. Design used to be relegated to extra-curricular clubs in business schools, but many schools are shifting to include design in the curriculum.

\n

Constant connectivity in the digital era has brought the idea of “computational design” to the forefront, which Maeda describes as “designing for billions of individual people and in realtime.” Designing at this scale requires an approach that is inclusive of the widest number of consumers, essentially designing for everyone.

\n

Maeda believes that “design and inclusion are inseparable” and he is on a mission to prove that inclusive design is good business.

\n

“When we separate inclusion into essentially an HR compliance topic, it loses its energy,” Maeda said. “It’s important, of course, but it loses the creativity that’s intrinsic to inclusion.” His 2017 Design in Tech report focuses on how inclusion matters in business. Maeda admits there are not many examples of how inclusion drives better financial outcomes, but one of his professional aims is to demonstrate how inclusive design can make a financial difference.

\n

“That’s why I joined Automattic,” Maeda said. “My hope is that this approach can lead to better business outcomes for the WordPress ecosystem. I don’t know if it will be possible but that’s my goal. I want to show that it’s possible numerically.”

\n

Making inclusive design profitable hinges on the principle that if you want to reach a larger market, you have to reach people you’re not already reaching by being inclusive. This new frontier of design requires some technical understanding outside of purely classical design. The hybrid designer/developer, often referred to as a “unicorn” in the tech industry, is often relied upon to bridge that gap.

\n

Maeda predicts that the scarcity of hybrid designer/developers will soon decrease, due to how things are changing in the industry. After surveying design leaders in 2016, Maeda found that 1/3 had formal engineering/science training, suggesting that “hybrid” talent has considerably increased in recent years. He shared his observations from surveying Automattic designers and developers about JavaScript competency. He found a significant segment of designers approaching moderate fluency in JavaScript after WordPress’ 2015 initiative to encourage JavaScript mastery.

\n

“The world is moving, and moving with the world is what designers do,” Maeda said. He also made a bold recommendation for those who are maintaining a design-only skill set:

\n

“I encourage you, if you’re a pure pure designer, to ‘impurify yourself,’ because it’s a whole new world and there’s a lot to learn,” Maeda said. “Anyone who’s in this game, if you aren’t watching videos and learning, you get behind in two months.”

\n

Maeda also encouraged listeners to shed biases that prevent them from seeing important trends and changes on the web. He addressed misconceptions about how products “made in China” are often thought of as something cheap or copycat, but China is moving forward in the mobile revolution in a far more advanced way than many other countries. He highlighted some major design trends pioneered by Chinese designers and how they are impacting the tech industry.

\n

Maeda closely monitors design-related M&A activity and funds that are design and/or inclusion oriented. His data shows that tech companies are finding more value in design tool companies and design community platforms, with acquisitions steadily increasing every year. The value of design companies is especially evident in China where Maeda noted three designer co-founded Chinese companies have a combined market cap of over $300 billion.

\n

He also shared what he has learned about designers since taking his position at Automattic, which employs more than 500 people working remotely across 50 countries.

\n

“People want to have challenging work; they want to make change happen,” Maeda said. “With creative people this is their main driver. If that can’t be sated, they get unhappy and they leave. The problem is this kind of work is the kind that seems like bonus work, not the main work. So my question as a manager is, ‘How do I put the two together in some constructive way?’ How do you make time to learn and grow? That’s something I didn’t know was pervasive in a busy busy tech company.”

\n

Maeda concludes that it is a good time to be a designer, especially if you’re willing to make up for the design education gap and teach yourself new skills online. His 2017 Design in Tech report is a must-read, not just for designers but for anyone working in tech or hiring tech talent. Check out the full report on WordPress.com. You can also listen to the audio of Maeda’s presentation while viewing the slides.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Mar 2017 20:07:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Post Status: JavaScript frameworks in a WordPress context — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=35232\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://poststatus.com/javascript-frameworks-wordpress-context-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2808:\"

Welcome to the Post Status Draft podcast, which you can find on iTunes, Google Play, Stitcher, and via RSS for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and Brian Krogsgard.

\n

Live from the A Day of REST workshops, Brian, Joe, and Zac talk about the state of working with JavaScript — including several popular JavaScript frameworks — and WordPress. They go through the pros and cons of using each one, what to watch out for when working with them and WordPress, and ways they think the process can improve.

\n

\nhttps://audio.simplecast.com/62575.mp3
\nDirect Download

\n

Links

\n\n

Sponsor: WP Migrate DB Pro

\n

Today’s show is sponsored by Delicious Brains. WP Migrate DB Pro makes moving and copying databases simple. They  also have an exciting new project for merging databases, called Mergebot. Go to Mergebot.com for updates on that, and deliciousbrains.com for more information on WPMigrate DB Pro. Thanks to the team at Delicious Brains for being a Post Status partner.

\n

Special Thanks: Bocoup

\n

Special thanks to Bocoup for allowing us to record this podcast episode in their office. Bocoup was a partner and workshop host for A Day of REST, and were incredibly hospitable. Checkout Bocoup to learn more about how they embrace open source as a consulting agency.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Mar 2017 00:56:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Hacker News Question: Developers with kids, how do you skill up?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67259\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/hacker-news-question-developers-with-kids-how-do-you-skill-up\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9488:\"photo credit: Leeroy\n

By now you’ve probably seen the viral clip of a father getting interrupted by his children while giving a live interview on BBC. Working parents everywhere, especially remote workers, could identify with the humorous embarrassment of the situation. Even those who have had pets interrupt Skype calls know the feeling. You want to be thought of as a professional and taken seriously but little home office invaders have other plans.

\n
\n

This BBC interview is amazing. Just wait until the mum rushes in… \"?\" pic.twitter.com/LGw1ACR9rg

\n

— JOE.co.uk (@JOE_co_uk) March 10, 2017

\n

\n

Many developers who work from home with children know the daily struggle of balancing family life with work, which generally leaves very little time for improving professional skills. A popular question on Hacker News this week asks, Developers with kids, how do you skill up?:

\n

I recently had one of my colleagues comment on my GitHub account graph – ‘There won’t be many green boxes in your account once you have a kid’. This was in response to my suggestions on how we should all keep learning. I argued many good programmers have family with kids and still manage to keep up. They brushed me off saying it’s just not possible or they don’t look after their kids.

\n

When I look on the internet I find people doing full time jobs delivering products while having a family and some still find plenty of time to blog or write books. How is this possible? Are these people super-human? How are you all doing or managing if you have kids/family?

\n

The question received nearly 500 replies with tips and stories from those who are making it work. One of the first participants on the thread is Rachel Andrew, who shares how she learned Perl as a single mother, launching a new career in web development. She said found success by “simply working every possible moment” she could and learning to be organized and focused with her time.

\n

One common theme among the replies is that having kids is like getting a crash course in time management. When your available time is significantly reduced, you are forced to become more purposeful about how you spend it.

\n

What I learned: your time does get reduced drastically, but you spend the remaining time with more focus/direction. Also, you use your time smarter, e.g. I used to do sports (indoor climbing), but now I just cycle every day from/to work (~1 hour) to stay fit. It takes approximately the same time as going by train or car.

\n

If i have clear priorities in my head – what I want to achieve in the ‘extra time’ that I have got. The clearer the goal, the better the results.

\n

…due to lack of free time and the newfound need to use it efficiently, I’ve found that I’ve probably read more actual physics in the last four years than in the previous many years of dreaming about it.

\n

Time management, to me, is a more powerful “skill up” than anything that could keep your GitHub green. When you know you have limited hours in the day and you have hard time commitments, you have no choice but to learn and work efficiently.

\n

\nI’d add that kids have taught me to be a better planner, and to break my priorities down into small, well defined chunks that can be slotted into a busy life. This has been valuable in general, not just for programming.

\n

One commenter said he misses the days when he could stay up all night working and exploring new technologies; now it seems the world is going on without him. Other commenters reject the idea of “skilling up” entirely and encourage the original poster not to get too hung up on shiny new frameworks.

\n

I agree with you about the need to remain buzzword compliant for jobs, but are we “skilling up” or spinning our wheels? There is some worthwhile learning, but a lot of it is just BS status signaling. Learning another SPA framework that solves the problems of the last framework, while introducing new problems? Learning yet another way to bundle your web content? A new transpiled language to patch the holes in JavaScript?

\n

A lot of what we regard as “skilling up” is just a product of our immature dev culture-learning stuff for the sake of buzzword compliance that doesn’t improve anything in the long run. And the high failure rate of software projects shows that we aren’t gaining a lot from this culture anyway.

\n

Combatting the Myth that You Can’t Do Anything with Just 15 Minutes

\n

Another theme among the comments is the “myths” parents create that keep them from using the short increments of time that pop up throughout the day. One commenter summarizes the self-limiting mindset that many adopt after having children:

\n

New parents create limitations for themselves in their belief that it is utterly impossible to do anything outside of parenting. The OP is saying that meaningful work can be done in the 15 minutes your baby might be asleep. A year of 15 minutes adds up to a lot.

\n

The key to productivity is being able to take those 15 minute increments and string them into bite-sized accomplishments towards a larger goal. Developer Chris Dawson shared how he wrote an app late at night while caring for his first child.

\n

“I only have ten minutes here, fifteen minutes there. I need focused hours of time to build something. That is just a story,” Dawson said. He used these short bits of time to create a one-handed blogging tool, because he needed a way to blog with one hand while holding his sleeping son.

\n

“When my daughter was born two years later, my wife was so exhausted she would go to bed at 8,” Dawson said. “I’d get my son to sleep and then promised myself I would write for just fifteen minutes before bed. That usually turned into an hour or two and three years later I had written a book for O’Reilly.”

\n

“There are so many times I’m exhausted after getting the kids to bed and I just browse the Internet,” Dawson said. “If I was really intentional about my time, even that fifteen minutes could be used to work towards my goals. But there is a powerful story telling me that it won’t make a difference if I just waste that time.”

\n

Dawson doesn’t consider himself an extraordinary high achiever. He found success by changing his perspective about the sleep he was losing.

\n

“I’m not the greatest developer – I struggled with the Google interview I got,” Dawson said. “But, success is 90% perspiration and 10% ingenuity. Who cares if you are sweating because you are exhausted and sleep deprived caring for infants as compared to pulling all-night coding sessions?”

\n

“Most of what we think of as being ‘too busy’ for any particular thing is a cognitive bias for forgetting just how much time we waste,” JavaScript engineer Sean McBeth said.

\n

Sam Littlewood, senior architect at V-Nova, offered a few practical tips on the thread:

\n\n

The comments are full of inspiring stories and ideas for routines and tips that can help parents be more productive. There’s no magical path to success but, as many working parents have discovered, you may find more time than you thought you had.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 11 Mar 2017 23:32:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WPTavern: In Case You Missed It – Issue 18\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67263\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/in-case-you-missed-it-issue-18\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7020:\"photo credit: Night Moves(license)\n

There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.

\n

The REST API Democratizes Reading

\n

Mika Epstein explains how the WordPress REST API democratizes reading by making content more discoverable and accessible.

\n

When you look at a website you see the design and the layout and the wonderful beauty. When an app reads your data, however, it doesn’t want or need any of that. An app needs the raw data. And the REST API does that. It outputs the data in a super basic and simple way. Furthermore, it lets you add on to this and output specific data in special ways.

\n

TechSPARK Interviews WordCamp Bristol Organizer

\n

Bristol, UK, is gearing up for its first WordCamp and local media is taking notice. TechSPARK, a digital publication that covers tech in Bristol, Bath, and the West of England published an interview with Janice Tye, one of the lead organizers of the event.

\n

In the interview, Tye explains what a WordCamp is and how people can get involved. WordCamp Bristol takes place May 13-14th, 2017 and has a limited number of tickets available.

\n

Fishing Guide’s Site Used by Hackers for eCommerce Fraud

\n

TechCrunch published an interesting story of how a Cape Cod fishing guide’s website that runs on WordPress was hacked and used to host an eCommerce store. The moral of the story is to keep WordPress and its plugins and themes updated. An additional safety measure is to enable two-factor authentication.

\n

Being a Full-time Contributor Through Sponsorships

\n

Late last year, John James Jacoby outlined his goal for his 100 initiative. “My goal is be a fully funded independent ambassador for WordPress and the surrounding initiatives, backed by many of the best companies who continue to push WordPress beyond its limits on a daily basis,” Jacoby said.

\n

Jacoby provided an update on what he’s been working on since obtaining sponsorship from Pagely and Pantheon. He plans to take a two-week break in March to attend WordCamp Miami and will be speaking at other events. If you’re interested in sponsoring Jacoby to work on WordPress full-time for a month, please get in touch with him.

\n

Mode Effect Builds Website for WordPress.com’s Affiliate Program

\n

Mode Effect, a web design agency, built the site for WordPress.com’s affiliate program. According to Jon Burke, team lead for events, marketing, and advertising at Automattic, the agency was chosen based on recommendations and its previous work with the WordPress VIP program.

\n

New Features for WordPress.com Stats

\n

WordPress.com unveiled a number of new enhancements to WordPress.com stats. More insights, summaries, and better use of wide screens are just a few of the improvements that were made.

\n

Remembering HostReviews.io

\n

Kevin Ohashi, founder of Review Signal, takes a look back at HostingReviews.io created by Steven Gliebe that was recently acquired by HostingFacts.com. 

\n

“I’m truly saddened because it’s disappearing at some point ‘soon.’ The only real competitor whose data I trusted to compare myself against. So I thought I would take the opportunity to write about my favorite competitor,” Ohashi said.

\n

He compared the data that was manually curated by Gliebe to the data on Review Signal and discovered it was similar. Ohashi says he will miss having a trustworthy competitor to compare his data too.

\n

“It has been nice having HostingReviews.io around when it was actively being updated (the manual process is certainly overwhelming for any individual I think!). I will miss having a real competitor to compare what I’m seeing in my data.”

\n

Challenges of Security Disclosure

\n

Aaron Campbell, WordPress security lead, provides insight into the challenges associated with security disclosure. Campbell describes disclosure as a constant balancing act.

\n

“But security isn’t a single balancing act,” Campbell said. “Many of the decisions we must make require finding the right balance. Each requires thought and consideration, as well as a clear set of priorities. Especially when it comes to disclosing vulnerabilities.”

\n

“Every situation is going to be unique, but knowing the right questions to ask will help. The time to think through these questions is now, hopefully long before you are faced with them.”

\n

On the topic of security disclosure, I recommend reading Security is Nuanced by Andrew Nacin.

\n

WordCamp Auckland Wapuu!

\n

In what is a traditional part of this series, I end each issue by featuring a Wapuu design. For those who don’t know, Wapuu is the unofficial mascot of the WordPress project.

\n

\n

WordCamp Auckland, New Zealand is this weekend and the event’s Wapuu is appropriately enough, holding a Kiwi.

\n

That’s it for issue eighteen. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 11 Mar 2017 02:07:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Matt: Review: From Plato to Post-modernism\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47161\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://ma.tt/2017/03/review-from-plato-to-post-modernism/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2379:\"

One thing I’m going to try this year is to write a review of every book I get a chance to read. It’s March already so I’m a bit behind and the next few will be out of order, but this seems like as good a place to start as any.

\n

One new thing I’ve been doing this year is listening to audiobooks with an Audible account, so this first book review is actually an audiobook. Great Courses is actually an old school thing where you could order college lectures on tape. From the references throughout the lectures I listened to, my guess is that the recordings are from the 90s. This one is called From Plato to Post-modernism: Understanding the Essence of Literature and the Role of the Author ($25 on Audible, $9.99 on cassette tape \"?\").

\n

I really enjoyed this series. Some of the early lectures covering Aristotle, Longinus, and Sidney’s “Apology for Poetry” were quite brilliant. Later ones from Foucault and Derrida on were weaker and harder to follow, which I think is a function of both the material, which can be dense when it starts getting into Modernism, the length, fixed at 30 minutes, and the lecturer, Louis Markos. Markos teaches at Houston Baptist University and his asides can sometimes be a little traditional, but in an adorable grandpa way. He has an infectious enthusiasm that makes even the slower chapters on Kant and Schiller bearable, but his love of and fluency in the earlier classics is really a pleasure.

\n

It made me curious to look into more online lectures and sometime this year I’m going to check out this one on Value Theory at Khan academy. I also picked up a used copy of Critical Theory Since Plato which had the original text for many things discussed in the lecture, so was a great reference point when I was at home in Houston, where I end up listening to most audio content since it’s a driving town.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Mar 2017 20:48:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: “Open Source in Brazil” eBook Now Available for Free\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66404\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wptavern.com/open-source-in-brazil-ebook-now-available-for-free\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3365:\"photo credit: CcareloOwn work, CC BY-SA 3.0, Link\n

Open Source in Brazil is a new free eBook from O’Reilly Media that offers an inside look into the growth of Brazil’s free software community despite the country’s unique barriers. Brazil has a vibrant IT and startup culture and hosts the largest open source conference in Latin America, Fórum Internacional Software Livre (FISL). The conference has been running for 17 years and had 5,200 participants in 2016.

\n

According to Andy Oram, the book’s author, open source software is ubiquitous in the country but challenges in business, education, and government have slowed its wider adoption. The book offers a fascinating account of how the free software movement won political favor in the early 2000’s, launching many governmental initiatives to use open source solutions instead of proprietary software.

\n

Unfortunately, the government was unable to deliver on these initiatives due to lack of expertise in evaluating software and working with open source communities. These factors, combined with a scarcity of local companies to help bridge the gap, and eventually corruption, caused more delays to converting government operations to open source software. These setbacks resulted in what Oram described as “inertia and corruption that leave companies and government agencies feeding huge amounts of money into proprietary software that was designed for the North American market.”

\n

Brazil has also struggled to keep highly skilled developers who can mentor the next generation due to a “brain drain” to international cities with higher wages:

\n

The education of developers that takes place in many developed countries is hampered in Brazil, as in many countries, by a brain drain. Basically, if you become an expert in your technological area, you can get a foreign job that pays more than Brazillian jobs and offers the enticements of living in a major tech center such as London or San Francisco. Thus, the people who could be attending meetups and mentoring the next generation of experts are drawn away.

\n

Despite the free software community’s temporary loss of momentum, its unique challenges have prompted Brazilian developers to rely less on government support and find new ways of promoting open source software. “Open Source in Brazil” is available for free in both English and Portuguese.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Mar 2017 18:19:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"BuddyPress: BuddyPress 2.8.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=264593\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://buddypress.org/2017/03/buddypress-2-8-2-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:843:\"

BuddyPress 2.8.2 is now available. This is a security release. We strongly encourage all BuddyPress sites to upgrade as soon as possible.

\n

BuddyPress 2.8.1 and earlier versions were affected by the following three security issues:

\n
    \n
  1. Cross-site request forgery (CSRF) in the XProfile administration Dashboard panel.
  2. \n
  3. Cross-site request forgery (CSRF) in a number of user-facing AJAX endpoints.
  4. \n
  5. Cross-site request forgery (CSRF) when dismissing a pending email change.
  6. \n
\n

These vulnerabilities were reported privately by Ronnie Skansing. Our thanks to Ronnie for reporting security issues in accordance with WordPress’s security policies.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Mar 2017 16:04:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Boone Gorges\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: WeFoster Launches Hosting Platform Catered to Online Communities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67151\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/wefoster-launches-hosting-platform-catered-to-online-communities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5536:\"

WeFoster, co-founded by Marion Gooding and Bowe Frankema, is a new managed hosting platform fine-tuned specifically for online communities.

\n

The duo came up with the idea for WeFoster two years ago at WordCamp London 2015. “Bowe and I sat down and thought of ideas on how we could contribute to the open source community,” Gooding said. “We eventually decided on BuddyPress and to build a business around it. We brainstormed on the basic premise of growing awareness, interest, and the user base of BuddyPress.”

\n

While BuddyPress is at the core of what WeFoster does, it isn’t limited to it. The hosting provider caters to all kinds of community building tools whether its Peepso, s2Member, or Memberpress.

\n

One of the things that sets WeFoster apart is its community creation wizard. Customers are asked a series of questions related to their community. For example, one of the questions asks if you’d like to have discussion forums. If you answer yes, bbPress will automatically be installed in the background. This process replaces the need to manually search and install a variety of plugins after installing WordPress.

\nWeFoster Community Creation Wizard\n

When creating a community, customers can select from a set of partner templates. Partner templates are pre-configured WordPress installations setup specifically around a product. Partner templates include a white labeled dashboard allowing partners to brand it to match their product. Partners also receive a variety of other perks.

\n

The partner program is not an affiliate program and partners are hand selected. The team is looking for partners that are in line with the company’s vision of building better communities. For more information and to apply to be a partner, check out the partner application page.

\n

WeFoster Uses Google’s Cloud Platform

\n

WeFoster is built on Google’s Cloud Platform enabling each site to be hosted in a container separate from others. The technology stack consists of PHP7, Nginx, Redis/Memcached, and MariaDB. If for whatever reason you need to downgrade to PHP 5.6, you can do so at the click of a button.

\nSwitching PHP Versions\n

WeFoster uses a custom caching solution dubbed CommunityCaching that it claims loads sites up to six times faster than traditional shared hosts and almost twice as fast as Managed WordPress hosts.

\n

The host is also a certified CloudFlare partner taking advantage of CloudFlare’s data centers located across the world. The partnership provides access to free SSL certificates. All sites created on WeFoster have SSL enabled by default and are served over the HTTP/2 protocol.

\n

Sites are actively monitored for malware and are backed up to Amazon Secure Storage. Site owners can restore to any point in time since backups are stored indefinitely.

\n

Tools for Developers

\n

Although WeFoster has focused on eliminating technical hurdles experienced by those who manage online communities, the company didn’t forget about developers. Each site has a developer section that includes a code editor, database manager, an area for debugging, and other related tools. The code editor is a full-featured IDE that works in the browser. This eliminates the need use an FTP client to upload files to the web server.

\nDeveloper Tools\n

Those who manage sites using a command line interface will be happy to know that WeFoster supports WP-CLI.

\nWP-CLI Support\n

The WeFoster Community Hub

\n

In addition to hosting communities, WeFoster itself is a community. The WeFoster community hub is a place where community builders share advice, network with other builders, and gain access to exclusive resources. Prospecting developers can join the developer directory and be part of Community Care. Community Care enables community managers to submit tasks that are then completed by one or more experts from the developer directory for a fee.

\n

Co-Founders Give a Guided Tour

\n

WeFoster offers a seven-day free trial for all its plans and will migrate existing communities for free. Prices start at $29 per month for the Village plan and go as high as $249 for the Metropolis plan. If at the end of the trial period you decide not to use the service, remove your payment information so you don’t get charged.

\n

What I’ve highlighted above is only scratching the surface as to what WeFoster offers. To learn and see how it works, watch this 47 minute video where Gooding and Frankema give a guided tour and explain the thought process behind many of its features.

\n
\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Mar 2017 06:23:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"WPTavern: Stack Overflow Jobs Data Shows ReactJS Skills in High Demand, WordPress Market Oversaturated with Developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67202\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"https://wptavern.com/stack-overflow-jobs-data-shows-reactjs-skills-in-high-demand-wordpress-market-oversaturated-with-developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4805:\"

\n

Stack Overflow published its analysis of 2017 hiring trends based on the targeting options employers selected when posting to Stack Overflow Jobs. The report, which compares data from 200 companies since 2015, ranks ReactJS, Docker, and Ansible at the top of the fastest growing skills in demand. When comparing the percentage change from 2015 to 2016, technologies like AJAX, Backbone.js, jQuery, and WordPress are less in demand.

\n

\n

Stack Overflow also measured the demand relative to the available developers in different tech skills. The demand for backend, mobile, and database engineers is higher than the number of qualified candidates available. WordPress is last among the oversaturated fields with a surplus of developers relative to available positions.

\n

\n

In looking at these results, it’s important to consider the inherent biases within the Stack Overflow ecosystem. In 2016, the site surveyed more than 56,000 developers but noted that the survey was “biased against devs who don’t speak English.” The average age of respondents was 29.6 years old and 92.8% of them were male.

\n

For two years running, Stack Overflow survey respondents have ranked WordPress among the most dreaded technologies that they would prefer not to use. This may be one reason why employers wouldn’t be looking to advertise positions on the site’s job board, which is the primary source of the data for this report.

\n

Many IT career forecasts focus more generally on job descriptions and highest paying positions. Stack Overflow is somewhat unique in that it identifies trends in specific tech skills, pulling this data out of how employers are tagging their listings for positions. It presents demand in terms of number of skilled developers relative to available positions, a slightly more complicated approach than measuring demand based on advertised salary. However, Stack Overflow’s data presentation could use some refining.

\n

One commenter, Bruce Van Horn, noted that jobs tagged as “Full Stack Developer” already assume many of the skills that are listed separately:

\n

I wonder how many of these skills are no longer listed because they are “table stakes”. You used to have to put CSS, jQuery, and JSON on the job description. I wouldn’t expect to have to put that on a Full Stack Developer description today – if you don’t know those then you aren’t a Full Stack Web Developer, and I’m more interested in whether you know the shiny things like React, Redux, and Angular2.

\n

It would be interesting to know what is meant by tagging “WordPress” as a skill – whether it is the general ability to work within the WordPress ecosystem of tools or if it refers to specific skills like PHP. Browsing a few jobs on Stack Overflow, WordPress positions vary in the skills they require, such as React.js, Angular, PHP, HTML, CSS, and other technologies. This is a reflection of the diversity of technology that can be leveraged in creating WordPress-powered sites and applications, and several of these skills are listed independently of WordPress in the data.

\n

Regardless of how much credibility you give Stack Overflow’s analysis of hiring trends, the report’s recommendation for those working in technologies oversaturated with developers is a good one: “Consider brushing up on some technologies that offer higher employer demand and less competition.” WordPress’ code base is currently 59% PHP and 27% JavaScript. The percentage of PHP has grown over time, but newer features and improvements to core are also being built in JavaScript. These are both highly portable skills that are in demand on the web.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Mar 2017 23:16:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WPTavern: Google Launches Invisible reCAPTCHA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67177\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wptavern.com/google-launches-invisible-recaptcha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4216:\"

Three years ago Google introduced its new reCAPTCHA v2 API, replacing distorted text challenges with a simple “I’m not a robot” checkbox for validating users. This was a welcome improvement over the fuzzy text in a box that frustrated and infuriated real humans.

\nreCAPTCHA v1\nreCAPTCHA v2 photo credit: Google Online Security Blog\n

reCAPTCHA v1 is no longer supported as of May 2016 and most sites have moved on to use v2. WordPress.org was one of the early adopters of reCAPTCHA v2 and still uses it to validate users on its registration form.

\n

The evolution of reCAPTCHA technology continues, as Google opened up registration for its new Invisible reCAPTCHA today. With the exception of the “Protected by reCAPTCHA” badge on forms, the newest implementation is invisible. It doesn’t require the user to click anything. Invisible reCAPTCHA validates users in the background and is invoked when the user clicks on an existing button on the site. It can also be invoked by a JavaScript API call. If it deems the traffic to be suspicious, it will require the user to solve a captcha.

\n

Invisible reCaptcha for WordPress

\n

Invisible reCaptcha for WordPress is the first plugin to implement the new API. It was launched in December 2016, shortly after Invisible reCAPTCHA went into beta. The settings page lets users paste in the site key and secret key Google issues after registering on the reCAPTCHA site.

\n

\n

Invisible reCaptcha for WordPress has options to enable protection on the WordPress login, registration, comments, and forgot password forms. It is compatible with WooCommerce for protecting the login, registration, product review, lost password, and reset password forms. The plugin also works with Contact Form 7 to protect form submission.

\n

On the frontend users will see the “Protected by reCAPTCHA” badge. I’m not fond of the sticky badge on the right side of the viewport that slides out on hover, as it seems too obtrusive. It looks better in the context of the form, and the plugin offers an option to display it inline and add custom CSS.

\n

\n

After testing the plugin and seeing Invisible reCAPTCHA in action, I was impressed with how easy it was to set up. It took less than a minute to get my site added at Google and the plugin configured. However, I was disappointed that the captcha is not truly invisible. Google’s overt branding on what is meant to be an invisible product makes it only a slight improvement over the v2 checkbox implementation in terms of what the user sees when interacting with the form. It is possible to hide the badge using CSS but this may violate reCAPTCHA’s policies, as the badge links to Google’s terms and privacy documents.

\n

Invisible reCaptcha for WordPress is free on WordPress.org and should greatly reduce the spam coming through WordPress forms. The plugin is compatible with Multisite and can be activated network-wide or on a single site. Detailed instructions for extending it to protect any plugin or custom form are available on WordPress.org.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Mar 2017 05:13:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"WPTavern: WPWeekly Episode 266 – Clef Is Shutting Down, Configuring User Avatars, and WPCampus 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=67181&preview=true&preview_id=67181\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/wpweekly-episode-266-clef-is-shutting-down-configuring-user-avatars-and-wpcampus-2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4263:\"

In this episode, Marcus Couch and I discuss the stories that are making headlines including, Clef shutting down, WordPress 4.7.3, and WordPress.com’s new add-on for Chrome. I shared two lessons I recently learned from managing a site that has open registration and uses BuddyPress. We also share details of WPCampus 2017.

\n

Stories Discussed:

\n

WordPress 4.7.3 Patches Six Security Vulnerabilities, Immediate Update Advised
\nClef is Shutting Down June 6th
\nWordPress.com Releases Chrome Add-On for Google Docs
\nFreemius Launches Insights for WordPress Themes
\nConfiguring a User Avatar in WordPress Is Not as Easy as It Should Be
\nBuddyPress Core Contributors Working on a Way to Safely Edit a Group’s Permalink
\nWPCampus 2017 to Take Place July 14-15 in Buffalo, NY

\n

What’s on WordPress.tv:

\n

WordPress Community Interview With Jenny Beaumont

\n

Jenny Beaumont is a multicultural, multidisciplinary maker and writer of things. She is a leader of people and of projects, who values communication above all else as a means to successful collaboration. Jenny and Paolo Belcastro, are the co-organizers of WordCamp Europe. She is the team lead of the local WordPress Community.

\n

Rob Ruiz: Admin Experience – The New UX

\n

This presentation is part of WordCamp Omaha 2016. Too often, User Experience is only considered on the front-end of a WordPress site design. Although that is very important, too many WP Designers/Developers stop there. This video goes over tricks and methods to make updating and administrating WordPress sites much more user-friendly for the admin/site-owner/client.

\n

Chris Klosowski: Democratizing Inspiration

\n

This presentation is part of WordCamp Phoenix 2016. All businesses and stories start as an idea. WordPress is a democratized platform for that inspiration, where ideas are empowered to evolve into meaningful products and stories that shape and create the world we want.

\n

Plugins Picked By Marcus:

\n

WP Clone Menu enables you to clone menus using existing menus.

\n

WordPress List Images to Optimize gives users an idea of which ones need to be optimized or re-uploaded.

\n

WP Raffle fully automates an online raffle. Simply install, start the appropriate raffle and prizes, and this plugin does the rest; picking the winners at the designated raffle draw date.

\n

WPWeekly Meta:

\n

Next Episode: Wednesday, March 15th 3:00 P.M. Eastern

\n

Subscribe To WPWeekly Via Itunes: Click here to subscribe

\n

Subscribe To WPWeekly Via RSS: Click here to subscribe

\n

Subscribe To WPWeekly Via Stitcher Radio: Click here to subscribe

\n

Listen To Episode #266:
\n

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Mar 2017 02:49:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: Google is Retiring Its Adsense for WordPress Plugin in May 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66886\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wptavern.com/google-is-retiring-its-adsense-for-wordpress-plugin-in-may-2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3035:\"

Google announced that it is retiring its official Adsense plugin, previously known as the Google Publisher plugin. For the past three years it has allowed WordPress users to easily add Adsense ads to their sites, enable mobile-specific ad layouts, and manage ads with a point-and-click interface.

\n

“After reviewing the AdSense Plugin for WordPress, we’ve decided that in the future we can support WordPress publishers better with new innovative features like our automatic ad formats and other upcoming initiatives,” Google said. “As a result, we will be deprecating the AdSense Plugin for WordPress in May 2017.”

\n

Google published the following timeline for sunsetting the plugin:

\n\n

Although Google’s Adsense plugin was used by more than 200,000 WordPress sites, the company has not provided support for the plugin for the past two years. It has been poorly reviewed throughout its three-year listing on WordPress.org and is currently hovering at 2.7/5 stars.

\n

This change will also affect dozens of other Google Adsense plugins, as Google is changing its ad display recommendations and does not endorse or support using any other WordPress plugins for this purpose.

\n

Affected publishers received an email with information on how to display ads without the plugin. Google recommends deactivating and removing the plugin, followed by using the QuickStart option or creating and placing ad units by inserting the ad code into text widgets. Those who are manually placing ads using widgets will need to make sure they comply with Google’s detailed ad placement policies.

\n

The new QuickStart method is a page-level ad format that automatically displays ads at “optimal times” when Adsense deems they will perform well and provide a good experience for visitors. These ads can be turned on by placing the QuickStart code within the tag. It’s easier to set up but not nearly as flexible as placing ads in text widgets, which can be conditionally displayed or hidden on pages, categories, tags, and post types using widget visibility rules offered in Jetpack or another plugin.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Mar 2017 21:23:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Matt: WordPress Collaborative Editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47145\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://ma.tt/2017/03/wordpress-collaborative-editing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2390:\"

I’m really excited about the new Google Docs integration that just launched — basically it builds a beautiful bridge between what is probably the best collaborative document editor on the planet right now, Google’s, and let’s you one-click bring a document there into a WordPress draft with all the formatting, links, and everything brought over. There’s even a clever feature that if you are copying and pasting from Docs it’ll tell you about the integration.

\n

I think this is highly complementary to the work we’re doing with the new Editor in core WordPress. Why? Google Docs represents the web pinnacle of the WordPerfect / Word legacy of editing “pages”, what I’ll call a document editor. It runs on the web, but it’s not native to the web in that its fundamental paradigm is still about the document itself. With the new WordPress Editor the blocks will be all about bringing together building blocks from all over — maps, videos, galleries, forms, images — and making them like Legos you can use to build a rich, web-native post or page.

\n

We’re going to look into some collaborative features, but Google’s annotations, comments, and real-time co-editing are years ahead there. So if you’re drafting something that looks closer to something in the 90s you could print out, Docs will be the best place to start and collaborate (and better than Medium). If you want to built a richer experience, something that really only makes sense on an interactive screen, that’s what the new WordPress editor will be for.

\n

One final note, the Docs web store makes it tricky to use different Google accounts to add integrations like this one. To make it easy, open up a Google Doc under the account you want to use, then go to Add-ons -> Get add-ons… -> search for “Automattic” and you’ll be all set.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Mar 2017 20:12:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"HeroPress: Coming Home\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1634\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://heropress.com/essays/coming-home/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13077:\"\"Pull

When I was 17, I attended the school for graphical design and printing. I remember one time a teacher yelling at me: ‘With an attitude like that, you won’t get very far in life’.

\n

I don’t know why this pops into my mind at the very moment I started to writing this piece for HeroPress. I guess I always wanted to do things my way. I have had pretty strong thoughts about how and why I wanted to do things in life, both personally and work wise.

\n

I’ve felt a great love for the DIY and making industry all my life, and was surrounded by people in small alternative ecosystems in my early twenties. Doing printing, music, squatting, cooking… those were the days. After a while, I sort of drifted apart. My career and life seemed to go a different way from what I actually loved. However, I did some small DIY internet projects on the computer that I got halfway through the nineties. I built some blogs and figured out how to do html. I was all on the side though, never professional.

\n

A New Beginning

\n

Around 2002, I really wanted to go away from what I had and dream, make plans and start a new life. So I ditched my management job, husband and newly built house. With a new love in my life, I bought a 150 year old farmhouse in a rural part of the Netherlands. We were busy doing it up and dreamt about starting our own business someday. Not to depend on a time & place based 9-5 job anymore.

\n

In 2007, we started our own webshop in organic gardening and sustainable, handmade garden tools. I experimented with code, Open Source Systems and SEO. I did graphical design, e-mail marketing, text writing, photography… we grew and grew and grew. And then we hit the ground. We got struck by the crisis and everything fell apart.

\n

It made me rethink my career and 2011 was the start for me working with WordPress. I had built websites , but never designed a website with a content management system (besides the webshop). I knew WordPress from the dot com blog I had, so after comparing a few systems and asking for advice on Twitter, I decided to have WordPress as a basis for my future work.

\n

At the time, I didn’t know what WordPress was. I mean, what WordPress really was. Basically it was the software I chose to work with, but that was that. I spent a lot of time finding out about the plugins, themes and adjusting code and css.

\n

But I never knew about the WordPress community that was there, and I wish I had.

\n

Although I’ve learned a great deal from my research and mistakes, it would have been so much easier having the supportive community around in the early days of my life as a web designer.

\n

It took me quite a while to find out about the WordPress community. I had discovered WordPress support, but never realised these were all hardworking people like me, giving back some time and knowledge to the community without getting paid for it. I guess the anonymity of the internet was part of the reason for me not knowing. At some point I heard about these web developer and design conferences in general, not WordPress specific. It never occurred to me to go there, because I thought I wouldn’t fit in. I didn’t see myself as a real professional, because nearly all my knowledge was self taught. (Later on, I found out that’s the story of nearly everyone I met within the WordPress community). Besides that, designing websites was just part of my job. I also did graphical design, print work, marketing and copywriting. Another reason to feel like a fool among all these smart guys speaking code to each other!

\n

A Revelation

\n

Only in 2015 things changed. One of my friends told me about Meetups and was surprised I hadn’t heard of it, since I was her geeky friend. But I had been so busy with keeping my head up after breaking up with my boyfriend, building my company, starting a part time study (I decided to get my bachelor on Media, Information an Communication). In the meantime, I had moved to a new part of the Netherlands again. Looking at local Meetups, I found a WordPress Meetup in Rotterdam, approx. 15 minutes by train from where I lived. On a Monday evening, I decided to go there, not knowing anyone attending. I’m not a shy person at all, but sometimes stepping into a new network can be tough, even for extroverts like me.

\n\"SceneAsking a question at the Rotterdam meetup.\n

Arriving in the pouring rain, I stepped into the elevator bringing me to the right floor. A friendly women called Marleen stepped in with me and we started talking. We had a good click right away and chatted all evening. She then told me I should go to WordCamp Netherlands later on that year, convincing me I would fit in and it wouldn’t be all development and code boys, but all kinds of people like bloggers, marketeers, teachers or entrepreneurs.

\n

So October 2015 I went to my first WordCamp ever and had a really good time. It definitely was an eye opener.

\n

Finishing my thesis (and moving houses again!), I was too busy looking around, so unfortunately I couldn’t attend any other Meetups after that, but I was determined to go to the next Dutch WordCamp. I started following their Twitter to stay updated. At some point I saw them mentioning a WordCamp Europe. By that time, I hadn’t really figured out this whole WordCamp thing (and certainly hadn’t realised the impact it would have on me later).

\n

But what? WordCamp Europe? Vienna? End of June? Well that would be a great graduation present after three years of hard work! So I bought myself a ticket. And started to look forward going to a lovely city. As the date got closer, I realised this was much bigger than I expected. Wow, are there really people flying in from all over the world to be here? So it’s not just a Europe-thing? I was getting more and more impressed (and excited) by the day.

\n

WordCamp Europe 2017

\n

To have some pre-travelling fun, I started following the WordCamp Europe hashtag (#wceu) on Twitter. Soon, I found out there were all these warmup events and I hooked up with some Dutch WordPressers for a cycling trip through Vienna in the scorching heat. For three hours, we chased our guide Franz through Vienna and I had the best time of my life. Immediately I felt at home with this group that I had never met before, apart from speaking to one of them briefly on WordCamp Netherlands. Apparently they had done a bike tour in Sevilla the year before, and as real Dutchies, they thought to continue the tradition.

\n

For the next few days, we sort of met on and off, having dinner or drinks with other people they knew. I was impressed with WordCamp itself as well. I don’t think I’ve ever been to an event organised this well. The catering was great, the talks were great and the weather was perfect. The social on Saturday night was unforgettable. All volunteers were so dedicated and the atmosphere all through the event was the best ever. After returning I was so enthusiastic about being part of this, but it was difficult to describe how I really felt. I guess you have to be part of it to know what WordPress really is.

\n

Because WordPress in fact ís the community. I seriously doubt it would exist without the community.

\n

What I found truly amazing about it, is that there is so much respect. People make an effort to make the WordCamps accessible for everyone. Disabled, bad eyesight or hearing: WordCamps are accessible for wheelchairs, have live subtitles on the talks or someone who knows sign language. Children? Of course there’s a child care department, so parents can enjoy the talks as well. Crazy diets? Not one diet is too crazy for WordCamp. Event managers should definitely attend a WordCamp or sign up as a volunteer because they could learn a great deal.

\n

I love that the WordPress community wants everybody to feel welcome and included. And this is what I thought of when this remark of my teacher popped into my mind. Ever since I was a child, I have a great feeling for justice. I want people to be equal and not being judged on whatever. That’s my attitude he had problems with, because he thought I should adapt to what big bosses would tell me in life and that they would never accept the different opinion I had. Within the WordPress community, I feel that people live by this rule of justice (the code of conduct I think helps a great deal) and it goes without saying. I believe this is very very welcome in times like these and I feel happy that I’ve discovered the WordPress community. It really felt like coming home and meeting people on WordCamps help me keep faith in humanity.

\n\"WordCampWordCamp Netherlands Volunteers\n

I went to the Dutch WordCamp last October, this time giving back a little bit by volunteering. And at the time of writing, I’m looking forward to my next WordCamp which will be in London from 17-19 March. It will be great to go to one of my favourite cities, but I’m excited to go to this WordCamp for more than one reason: I applied and got selected as as speaker! Not that I’m so keen on standing on that stage, but because it’s a great opportunity to for me to share knowledge and learn. Because that’s what WordCamps are for aren’t they?

\n

Your Turn

\n

So this is a shout out to all WordPress newbies: get your arse over to the nearest WordCamp, you won’t regret it! We were all newbies once too, and we’re all still learning everyday and willing to teach you. We could probably learn from your expertise too!

\n

At the same time it’s a shout out to the WordPress community too: make it as easy as possible for new people to attend WordCamps. Invite them, buy tickets for them. Make them aware of the added value of the lively WordPress community both offline and online. Maybe it could become part of WordPress news in new installs? A link to all the great resources on WordPress.tv and support, and a notification of upcoming WordCamps? I definitely have intentions of visiting as many WordCamps as possible in the years coming, so hopefully I’ll meet you at one of them!

\n

The post Coming Home appeared first on HeroPress.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Mar 2017 12:00:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Monique Dubbelman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WPTavern: Clef is Shutting Down June 6th\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66963\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/clef-is-shutting-down-june-6th\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3854:\"

Clef, a two-factor authentication service founded in 2013 has announced that it is discontinuing its product. Clef is most well known for removing the burden of remembering usernames and passwords by replacing them with a 300 character key using mobile cryptography.

\n

The service’s WordPress plugin is active on more than 1M sites and has been removed from the directory. Clef will continue operating until June 6th, 2017. After June 6th, the mobile app will stop functioning and be removed from the Google Play and Apple App stores.

\n

Users are highly encouraged to transition to a different two-factor authentication provider as soon as possible. Clef has published a transition guide to help users switch to Two-Factor, Authy, or Google Authenticator.

\n

The announcement offers few details as to why the service is shutting down. Brennen Byrne, Clef’s CEO, says the team is joining another company and that more details will be published soon.

\n

Users and customers reacted to the news by expressing disappointment and sadness in the comments, “I am very very sad for that,” Furio Detti said. “And I must admit a bit disappointed — Clef was clever, clean, quick.”

\n

“I need no more and no other. I’d like to know if the shutdown could be a sign of bad luck in business or a changing of strategy to improve the product. I tried many systems, but CLEF was the very best, the others, almost annoying crap.”

\n

Others questioned how the company reached the point of shutting down, “Has something gone wrong or incredibly right?,” John Walker asked. “How can something so useful and reassuring be canned?”

\n

“WordPress installer states over 1 million active users. That’s a lot of websites to just drop without tangible explanation.”

\n

The decision to sunset the product was not an easy one, “We’ve considered a lot of options for how we can satisfy our responsibility to the folks who have used our product for a long time, but ultimately we felt like this was the only responsible option we could take,” Byrne said.

\n

The service offered commercial business plans, including a $1,000 a month plan but couldn’t find a business model that worked, “We’ve been so happy to build a product that people loved and which had widespread adoption in the WordPress community, but we haven’t been able to find a business model which made the company sustainable,” he said.

\n

It’s evident by the comments that Clef offered something unique. Whether it was the user experienceease of use, or working like magic, the service has a devoted fanbase that love the product.

\n

Please spread the word that Clef is shutting down as potentially thousands of users may not discover it until their keycodes stop working on June 6th.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Mar 2017 09:05:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: WordPress.com Releases Chrome Add-On for Google Docs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66941\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/wordpress-com-releases-chrome-add-on-for-google-docs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3597:\"

WordPress.com released its new Chrome Add-on for Google Docs today. The free add-on allows users to edit documents collaboratively in Google Docs and then send the document directly to any WordPress.com site as a draft post. The add-on can also connect to Jetpack-enabled sites, offering the same functionality for self-hosted WordPress users.

\n

\n

After installing the add-on from the Google Chrome Store, users will be asked to give permission for it to send posts to WordPress.com. Clicking on the Add-ons menu within the document will open a sidebar where you can add sites. When the document is ready to send to one of your sites, you can click on the “Save Draft” button. You’ll be given a preview link to check out how it looks on the site.

\n

Ordinarily, copying and pasting content from Google Docs into WordPress results in a messy draft that lacks the same formatting. The new add-on was created to tackle this problem. It duplicates the document’s images and formatting into WordPress, cutting out a lot of secondary formatting that used to be required.

\n

“Collaboration has been a big area of interest for us, and we want to investigate a lot of different approaches,” Automattic representative Mark Armstrong said. “Google Docs made perfect sense because it’s where a lot of people already do collaborative editing. If we could streamline that process for publishing a Google Doc on WordPress, that would help so many people. We’ve been testing it with publishers and heard a lot of great feedback.”

\n

Armstrong didn’t have any data for how often users paste content from Google docs to WordPress.com, but making content more portable between the two platforms is an often requested feature. The WordPress Plugin Directory has several plugins for embedding Google documents inside content via a shortcode embed or oEmbed, demonstrating that thousands of users are already interested in bringing content over from Google Docs to WordPress.

\n

After testing the add-on with a sample document that includes special formatting and images, I found that it is a great improvement over the clunky copy and paste experience. Sending posts to WordPress.com is fairly seamless and works as advertised.

\n

In testing with multiple Jetpack-enabled sites I received some errors when authenticating, which may be due to a security limitation of my host. We had the same issue with the Tavern and were not able to fully test it for self-hosted WordPress sites, but are continuing to investigate the issue. However, other Jetpack-enabled sites are reportedly working with the add-on as expected, according to Armstrong.

\n

Heavy users of Google Docs and WordPress are excited by the prospect of having the two platforms play nicely together. It saves users quite a bit of time and the new tool will do a lot to bridge the gap for those who rely on Google Docs for collaborative editing. It’s the next best thing to having collaborative editing built into WordPress.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Mar 2017 22:14:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: WordPress 4.7.3 Patches Six Security Vulnerabilities, Immediate Update Advised\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67001\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/wordpress-4-7-3-patches-six-security-vulnerabilities-immediate-update-advised\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2298:\"

WordPress 4.7.3 is now available with patches for six security vulnerabilities that affect version 4.7.2 and all previous versions. WordPress.org is strongly encouraging users to update their sites immediately.

\n

The release includes fixes for three XSS vulnerabilities that affect media file metadata, video URLs in YouTube embeds, and taxonomy term names. It also includes patches for three other security issues:

\n\n

These vulnerabilities were responsibly disclosed by a variety of different sources contributing to WordPress security.

\n

Version 4.7.3 is also a maintenance release with fixes for 39 issues. This includes a fix for an annoying bug that popped up after 4.7.1 where certain non-image files failed to upload, giving an error message that said: “Sorry, this file type is not permitted for security reasons.” Those who were negatively impacted have been waiting on this fix for two months.

\n

WordPress sites that haven’t been updated have been subject to a rash of exploits during the last month after a WP REST API vulnerability was disclosed. Now that the patched vulnerabilities in 4.7.3 are public, it is only a matter of time before hackers begin exploiting sites that do not update. If you have auto-updates on, your site has probably already updated by now. If for some reason you have auto-updates disabled, you will want to manually update as soon as possible.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Mar 2017 20:39:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: The Job Interview\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://ma.tt/2017/03/the-job-interview/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"

Inc. writes The Job Interview Will Soon Be Dead. Here’s What the Top Companies Are Replacing It With, and looks at how our brains mislead us in interviews and how Menlo Innovations and Automattic approach it.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Mar 2017 11:46:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: NRKbeta Open Sources Comment Quiz Plugin for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66935\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/nrkbeta-open-sources-comment-quiz-plugin-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3418:\"

NRKbeta, the Norwegian Broadcasting Corporation’s media and technology site, is experimenting with a new way of keeping comments on topic. A new plugin on the WordPress-powered site aims to ensure commenters have read the article by requiring them to complete a short, three-question quiz before opening the comment form. Visitors who get the questions wrong cannot contribute to the discussion.

\n

\n

The custom plugin was created to narrow the commenting field to those who are operating on a common basis of understanding of the article. It prevents commenters from skimming the article and then going on a rant.

\n

The NRKbeta team open sourced the plugin on GitHub today. It’s also in the review queue for the WordPress Plugin Directory and will be available for a one-click install after it passes review.

\n

Quiz is an another WordPress.org plugin that performs a similar function. Despite not having been updated for two years, the plugin is active on more than 2,000 sites. Post authors can create a question for each post in the “Comment Quiz” meta box. The plugin was also designed to help reduce spam comments.

\n

NRKbeta’s new Comment Quiz plugin takes a slightly different format, offering multiple choice in the form of radio buttons as well as the ability to add multiple questions. The comment form automatically slides into view after the visitor answers correctly.

\n

\n

The idea of quizzing visitors before allowing them to comment gained quite a bit of interest after NRKbeta announced the experiment, but the publication is still experimenting to see how the quizzes affect commenting. Ensuring that readers have fully read the article comes at the expense of well-intentioned commenters who are now subjected to a time-wasting test. The plugin puts the burden of proof on the commenter in hopes of fewer rants and off-topic responses getting through.

\n

Some visitors may perceive the quiz as infantilizing potential commenters while others may see it as a mild annoyance. The quiz is a simple hurdle, easy to bypass by guessing until you land on the correct answer. It amounts to more of a speed bump than a true test of having read the article. It doesn’t take into account that many commenters who are prone to trolling and ranting off topic can be quite motivated and not significantly inconvenienced by a short quiz.

\n

If the questions are written to condition the commenter for a desired response, then it does little to promote free thinking. This seems like an expensive trade-off for fewer rants in the moderation queue. It all depends on how the publication implements the plugin. Hopefully NRKbeta will report back on how effective the Comment Quiz plugin was at deterring undesirable off-topic responses while retaining level-headed commenters.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Mar 2017 05:15:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: Configuring a User Avatar in WordPress Is Not as Easy as It Should Be\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66954\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/configuring-a-user-avatar-in-wordpress-is-not-as-easy-as-it-should-be\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3135:\"

I maintain a website with active user registration and a common support question I’m asked is, “How do I change my profile picture?” The answer is not easy as it should be. WordPress’ profile image system is powered by Gravatar, an Automattic owned service. It replaced the old method of uploading a profile picture in WordPress 2.5 “Brecker”.

\n

The longer I maintain the site, the more frustrated I get that Gravatar is the default way users create and manage their profile image. In the past, I’ve written how managing Gravatars in WordPress is a bad user experience and not much has changed. Many of the people requesting support simply want an Upload button or link that enables them to upload an image and use it as their avatar.

\n

One way to replace Gravatar is with the WP User Avatars plugin developed by John James Jacoby. WP User Avatars is part of the Stutter collection of plugins that replaces Gravatar and adds the ability for registered users to upload an image from their machine. Alternatively, users can click the Choose from Media button to choose an image from the Media Library. Existing profile images are preserved.

\nWP User Avatar Interface\n

I tested the plugin on WordPress 4.7.3 and didn’t encounter any issues. It’s worth noting that according to the plugin’s FAQ, it doesn’t work well with multisite.

\n

There has recently been some discussion on a six-year-old trac ticket requesting upload functionality for custom avatars. Some have even suggested that Simple Local Avatars, WP User Avatar or Add Local Avatar could be merged into core to provide the functionality. All three plugins combined are active on nearly 300K sites.

\n

The site I administer is the first I’ve managed in my WordPress career that has open registration. Interacting with registered users who are often new to WordPress has opened my eyes to how bad of an experience configuring an avatar is. Relying on a third-party service as core functionality to manage profile images doesn’t make any sense.

\n

Let us know what your experience is like configuring an avatar in WordPress. If you use a plugin that adds local avatar support, share a link to it in the comments.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Mar 2017 22:35:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: BuddyPress Core Contributors Working on a Way to Safely Edit a Group’s Permalink\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66940\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wptavern.com/buddypress-core-contributors-working-on-a-way-to-safely-edit-a-groups-permalink\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3656:\"

This past weekend while managing a site that runs BuddyPress, I ran into a situation where I needed to change a group’s slug or permalink. Editing the permalink for a post or page in WordPress is easy but BuddyPress doesn’t have the same functionality. As you can see in the screenshot below, an edit button to change a group’s permalink doesn’t exist.

\nNo Way to Edit a Group’s Permalink\n

Changing the permalink of a post in WordPress automatically creates a redirect so the previous URL doesn’t generate a 404 error. BuddyPress doesn’t offer the same convenience. According to John James Jacoby, BuddyPress lead developer, groups do not have a canonical redirection, or keep track of their slug history.

\n

In my scenario, I had two choices. I could either change the slug and break a number of links or delete the group and recreate it with the slug of my choice. Since the group already has more than 300 members and a handful of posts, I chose the first option.

\n

After a cursory search of Google on how to change a group’s slug, I came across many results that referenced the BP Edit Group Slug plugin created by Jacoby that had not been updated in seven years. As recently as two months ago, a thread on the BuddyPress support forums confirmed that the plugin was broken and generated a lot of errors.

\n

After speaking to Jacoby on Slack and linking him to the forum thread, he graciously spent two hours of his time to update the plugin. I can confirm that it works as advertised with BuddyPress 2.8.1. To change a group’s slug after activation the plugin, visit the Group’s management page on the front-end of the site.

\nEditing a Group’s Slug\n

Eight years ago, a ticket was created on BuddyPress trac requesting the ability to change a Group’s slug. The ticket was eventually closed and labeled wontfix by Boone Gorges, BuddyPress lead developer, “Adding it as a core feature is likely to introduce lots of problems, because changed group slugs break all existing links to the content,” Gorges said. “We don’t have a graceful fallback system for changed permalinks, like WP posts do. For now, let’s leave this to a plugin. If we ever overhaul groups to have a different storage mechanism, we can revisit.”

\n

In the BuddyPress Slack channel, David Cavins offered the following idea on how the feature could work, “We could probably add a step after the lookup fails that looks in another place, like group_meta for key = previous_slug and value = slug that missed a group,” he said. Both Gorges and Jacoby approved the idea and encouraged Cavins to work on it for BuddyPress core.

\n

Until the feature is added to core, perhaps a note could be added to the BuddyPress group creation screen for step three that emphasizes how important it is to make sure the permalink is correct.

\nBuddyPress Group Creation Step Three\n

I was willing to sacrifice broken links in order to have the correct slug for my Group but it’s a lesson I learned the hard way. I’m hopeful that others don’t make the same mistake and that BuddyPress one day has a graceful fallback system for tracking permalink changes.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Mar 2017 22:16:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: Initial Customizer Survey Results Reveal Majority of Respondents Don’t Use It\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66809\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/initial-customizer-survey-results-reveal-majority-of-respondents-dont-use-it\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5605:\"

In January 2017, WordPress core design contributors posted a survey titled What are you using the Customizer for? The link was published on the Make WordPress Design blog and wasn’t widely shared, so it only received 50 replies. Responses were anonymous, but most seem to have come from the WordPress developer community.

\n

Despite the small sample number, the design team deemed the initial results important enough to share with the community. Responses on the first question show that 53% never or rarely use the Customizer and 7.8% tend to only use it when setting up a site for the first time. Those who do use it (39.3%) range in frequency from monthly, weekly, and daily.

\n

\n

More than half of respondents (53.6%) do not add plugins to extend the Customizer. Those who do are adding plugins for theme options (12.5%), colors (5.4%), layout (7.1%), and other (21.4%). The majority of respondents indicated they use themes that add new functionality to the Customizer (53.9%) and those specified include colors, layout, typography, theme options, and design features.

\n

When asked if is there anything in the Customizer they cannot live without, 53.2% of respondents said no. This isn’t surprising given that most of them seem to be developers who are likely familiar with adding custom CSS or making edits to a child theme. Only 6.4% said they could not live without live previews. When asked if there was anything in the Customizer they never use, 31.3% of respondents said “Everything,” 20.8% said “No,” and the others identified specific features.

\n

\n

The negative comments on the questions are a general indicator of the lingering dissatisfaction with the Customizer. For those who use the feature regularly, one strong theme in their comments is that the separation between what settings are available in the Customizer versus the backend is confusing:

\n

Setting up theme styling, redesigning, setting up sites, etc. Very useful for quick changes like a new header image to change up the look. Wish you could edit everything there instead of going elsewhere to edit content too.

\n

I don’t like it and wish that I didn’t have to use it. Most often if there is a setting I had to use the customizer for, I will either forget that something was set in the customizer and end up hunting around for it for a long time before remembering that’s where it was. More often than not the “preview” functionality doesn’t work and you have to save the settings anyway. Also there doesn’t seem to be any consistent logic as to what features should be in the customizer, and theme authors just put whatever they feel like putting in there.

\n

What would be great, it is to incorporate more settings in the Customizer in order to avoid the back and forth to set up the site (date format, title, tagline, posts per page, …).

\n

Many users don’t understand the separation between content and presentation and don’t approach the Customizer with this mindset. Therefore, the Customizer’s omissions create a disjointed experience for users who are new to WordPress.

\n

Absolutely! Most of my clients complain about the footer and why is it so difficult to modify something so basic as this sentence: “Proudly powered by WordPress”… It is really nonsense having so many options in customizer and still having to create a child theme only to be able to edit the standard footer sentence… That doesn’t make any sense, really!”

\n

These kinds of frustrations are likely to continue until the Customizer can unify the content and theme editing experience. Currently, the bulk of content editing happens in the admin, but Customizer contributors are working towards adding frontend editing powered by the Customizer.

\n

It is difficult to know how to place this data, since the survey didn’t ask for any information about the respondents’ WordPress background. However, the large number of negative responses underscore the importance of having the Customizer as one of the three focuses for WordPress core development in 2017.

\n

Customizer component co-maintainer Weston Ruter said he’s “not really surprised” by the negative feedback in the survey, as there are lots of passionate opinions about the Customizer.

\n

“Everyone should agree that the Customizer isn’t a finished product, but the answer to that is to make it a focus and make it the live preview interface that WP needs, not rip it out,” Ruter said. “And that focus is what 2017 includes.”

\n

The survey is still open, if you want to contribute more data for the design team to consider.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Mar 2017 19:06:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Dev Blog: WordPress 4.7.3 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4696\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6146:\"

WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately.

\n

WordPress versions 4.7.2 and earlier are affected by six security issues:

\n
    \n
  1. Cross-site scripting (XSS) via media file metadata.  Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs.
  2. \n
  3. Control characters can trick redirect URL validation.  Reported by Daniel Chatfield.
  4. \n
  5. Unintended files can be deleted by administrators using the plugin deletion functionality.  Reported by TrigInc and xuliang.
  6. \n
  7. Cross-site scripting (XSS) via video URL in YouTube embeds.  Reported by Marc Montpas.
  8. \n
  9. Cross-site scripting (XSS) via taxonomy term names.  Reported by Delta.
  10. \n
  11. Cross-site request forgery (CSRF) in Press This leading to excessive use of server resources.  Reported by Sipke Mellema.
  12. \n
\n

Thank you to the reporters for practicing responsible disclosure.

\n

In addition to the security issues above, WordPress 4.7.3 contains 39 maintenance fixes to the 4.7 release series. For more information, see the release notes or consult the list of changes.

\n

Download WordPress 4.7.3 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.3.

\n

Thanks to everyone who contributed to 4.7.3: Aaron D. Campbell, Adam Silverstein, Alex Concha, Andrea Fercia, Andrew Ozz, asalce, blobfolio, bonger, Boone Gorges, Boro Sitnikovski, Brady Vercher, Brandon Lavigne, Bunty, ccprog, chetansatasiya, David A. Kennedy, David Herrera, Dhanendran, Dion Hulse, Dominik Schilling (ocean90), Drivingralle, Ella Van Dorpe, Gary Pendergast, Ian Dunn, Ipstenu (Mika Epstein), James Nylen, jazbek, Jeremy Felt, Jeremy Pry, Joe Hoyle, Joe McGill, John Blackbourn, John James Jacoby, Jonathan Desrosiers, Kelly Dwan, Marko Heijnen, MatheusGimenez, Mike Nelson, Mike Schroder, Muhammet Arslan, Nick Halsey, Pascal Birchler, Paul Bearne, pavelevap, Peter Wilson, Rachel Baker, reldev, Robert O’Rourke, Ryan Welcher, Sanket Parmar, Sean Hayes, Sergey Biryukov, Stephen Edgar, triplejumper12, Weston Ruter, and wpfo.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Mar 2017 17:53:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"James Nylen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Post Status: Making a living without client work, with Carrie Dils — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=34997\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://poststatus.com/making-living-without-client-work-carrie-dils/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3279:\"

Welcome to the Post Status Draft podcast, which you can find on iTunes, Google Play, Stitcher, and via RSS for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard and this episode’s special guest, Carrie Dils.

\n

Carrie Dils has been self-employed for a long time. After years of client work, she now makes her full-time living through multiple different channels, but is not currently doing client services. In this episode, Brian and Carrie talk about various methods for generating revenue, and some helpful tools to do so.

\nhttps://audio.simplecast.com/61980.mp3\n

Direct Download

\n

Links

\n\n

Links to Carrie’s Work

\n\n

Sponsor: Prospress

\n

Prospress  makes the WooCommerce Subscriptions plugin, that enables you to turn your online business into a recurring revenue business. Whether you want to ship a box or setup digital subscriptions like I have on Post Status, Prospress has you covered. Check out Prospress.com for more, and thanks to Prospress for being a Post Status partner.

\n

Photo by Karyn Kelbaugh

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Mar 2017 15:44:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:11:\"\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"HeroPress: HeroPress at 100\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=1639\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://heropress.com/heropress-at-100/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5332:\"\"HeroPress

March 8th we’ll have 100 HeroPress essays published. This seems like an auspicious time to look back at what we’ve built.

\n

Since the first one I’ve only missed maybe 2 weeks. One essay has been taken down for security reasons. Only once has anyone really stood me up, and only four times or so has anyone asked for more time at the last second. In those times someone always stepped up.

\n

A goal of mine has always been diversity, across a number of vectors. I did pretty poorly in the first few months and ended up with diversity debt. Here are some stats as of the 100th post:

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
MenWomenAmericansNon-Americans
55443466
\n

That said, if you look at the last 50, the numbers look much more diverse:

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
MenWomenAmericansNon-Americans
22261634
\n

I have the next 8 contributors planned out, and they continue to enhance the diversity of HeroPress.

\n

Sponsorship

\n

Last June XWP started sponsoring HeroPress. As I’ve mentioned many times before, I’m wary of mixing money with HeroPress, because I never want to make money from the stories of these people I admire and respect so much. That said, the sponsorship makes it easier for me to spend the time away from my family working on HeroPress. Some wise people have told me that using money appropriately won’t lose me any real friends, so there we are.

\n

If you’re interested in talking to me about sponsorship, just send me an email, topher at this domain.

\n

The Future

\n

I don’t have any plans for changing the way essays work. I have people lined up through the end of April. I’ve recently found some new ways to find WordPressers in places I couldn’t access before, and I’m excited about the new places we’re going to hear about.

\n

I’ve been talking for months about doing a podcast. It would simply be me and someone far away from me talking about how they work and live. I hesitate to talk to Americans, because I already know how they live and work, but on the other hand, people outside America might be interested. We’ll see what happens after some research.

\n

I have some ideas about scholarships and software accessibility programs, but I’m still putting those together. I’ve recently been contacted by another organization that wants to work together on a scholarship, and that sounds exciting.  Again, we’ll see what happens.

\n

Thanks

\n

I’d like to thanks everyone that’s been involved in making HeroPress great.  At this point there are too many to name. Those of you that have tweeted, blogged, podcasted, and generally spread the word are amazing. Thanks to those that have written essays especially.  Without contributors HeroPress wouldn’t exist at all.

\n

Thanks to those that have facilitated getting me to WordCamps like Pune, Europe, and US.

\n

Lastly, thanks to those that have committed to the future of HeroPress. I’m looking forward to all the things to come.

\n

The post HeroPress at 100 appeared first on HeroPress.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 05 Mar 2017 16:15:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"WPTavern: Web Annotations are Now a W3C Standard, Paving the Way for Decentralized Annotation Infrastructure\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66802\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://wptavern.com/web-annotations-are-now-a-w3c-standard-paving-the-way-for-decentralized-annotation-infrastructure\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13734:\"photo credit: Green Chameleon\n

Web annotations became a W3C standard last week but the world hardly noticed. For years, most conversations on the web have happened in the form of comments. Annotations are different in that they usually reference specific parts of a document and add context. They are often critical or explanatory in nature.

\n

One of the key differences between comments and web annotations, according to the new standard, is that annotations were designed to be decentralized, creating “a new layer of interactivity and linking on top of the Web.” Comments are published by the publisher at the same location as the original content, but web annotation content is owned by the reader. Annotations don’t have to be published on the original content. The reader has the choice to publish using an “annotation service” or their own website.

\n

Doug Schepers, former Developer Relations Lead at W3C, described the difference between annotating and commenting on an episode on The Web Ahead podcast:

\n

When a comment is at the bottom of a page, it’s so abstracted out from the rest. They get off track, they start talking about other things that have nothing to do with the original article. If it’s an even vaguely political topic, you’ve got the partisans jumping in, yelling at one another, how they’re all idiots. You lose track with the content of the article. There’s this viscerality, this immediacy, of actually commenting on something in its context.

\n

Do people want to annotate the web? Popular implementations of this concept, such as Genius Web Annotator and Medium’s annotation-style commenting, show that people enjoy interacting on the web in this way. The W3C Web Annotation Working Group’s goal in standardizing the technology behind web annotations was to produce a set of specifications for “interoperable, sharable, distributed Web Annotation architecture,” enabling healthy competition between services and discouraging publisher lock-in.

\n

Decentralization is critical to unlocking the full potential of annotations on the web. If commenters have control of their own content, they have the freedom to publish it wherever they like. Open comments sections can sometimes offer the illusion of discourse, but are ultimately under the control of the publisher. This is obvious if you’ve ever seen a controversial blog post, which should undoubtedly have comments with varying viewpoints, but the only comments published are those in agreement with the author.

\n

“This notion that whoever controls the original source also controls the dialog – that’s dangerous,” Schepers said. “This is why I like the idea of annotations. It’s inherent in the idea of annotations, this indie web aspect of, ‘I want to control what I say, what channels it goes out to.’ I can’t control who puts it into a different channel but I can control what channels I try to put it out into. I can actively publish in multiple channels.”

\n

Hypothesis Plugin Brings Web Annotations to WordPress

\n

Hypothesis is a non-profit organization that is building an open platform for annotation on the web, based on the Annotator.js library. It allows readers to highlight text and select whether they want to annotate it or highlight it.

\n

\n

The Hypothes.is community has an ecosystem of tools and integrations for various technologies and publishing platforms, including WordPress. The Hypothesis plugin on WordPress.org offers the same functionality that you see on the Hypothesis website with the ability to select text and have a sidebar slide out for taking notes. Annotation requires an account with Hypothesis. You can test it by pasting any link into the tool on the Hypothesis homepage.

\n

\n

The mission of the Hypothesis project is “to bring a new layer to the web” that enables conversations on top of the world’s collected knowledge. The project also allows you to publish annotations privately, creating your own personal notebook of observations as you surf the web.

\n

The Hypothesis plugin allows users to customize the defaults and behavior and control where it’s loaded (front page, blog page, posts, pages, etc.) Highlights can be on or off by default and the sidebar can be collapsed or open. Annotations can also be enabled on PDFs in the Media Library. Hypotheses can be allowed/disallowed on a list of specific posts or pages, which is helpful for sites where the author may only want annotation on scholarly material.

\n

Hypothesis Aggregator is another plugin for WordPress that offers a shortcode with different parameters for displaying annotations from the service. It allows site owners to display a collection of annotations from a certain user or topic.

\n

[hypothesis user = \'kris.shaffer\']

\n

[hypothesis tags = \'IndieWeb\']

\n

[hypothesis text = \"Domain of One\'s Own\"]

\n

[hypothesis user = \'kris.shaffer\' tags = \'IndieEdTech\']

\n

The output includes a link to the original content, the highlighted text, the annotation, and the person who curated it.

\n

\n

Kris Shaffer, the plugin’s author, is considering adding support for multiple tags (in both AND and OR configurations) as well as the ability to embed a single annotation in a post, like users can with a tweet.

\n

The Hypothesis network of annotators is growing, along with the vast collection of knowledge that is getting linked and added every day. The service just completed a record month with nearly 6,000 annotators contributing content.

\n
\n

A record month @hypothes_is in February: almost 6K active annotators made 112,385 #annotations. Did you help? https://t.co/R2DZaf6D7i pic.twitter.com/HWNVUXUS9s

\n

— Hypothes.is (@hypothes_is) March 1, 2017

\n

\n

Members of the Hypothesis team are principal contributors to the Annotator project and the organization was also deeply involved in the effort to make web annotations a W3C standard. The Hypothesis community tools are quite frequently used in the context of scholarly or academic dialogue, but the app aims to bring annotation to all types of websites, including news, blogs, scientific articles, books, terms of service, ballot initiatives, legislation, and more.

\n

In a presentation at the Personal Democracy Forum in 2013, Dan Whaley, founder and CEO of Hypothesis, described the organization’s motivation behind annotating all of the web’s collective knowledge:

\n

Think back 1,000 years, reflect on the key documents produced over that time, like the Magna Carta in 1215 or the Declaration of Independence, for which we only have the document itself. What we’re missing are the notes passed between co-authors in the drafting, the reviews by others providing feedback on early versions. We lack the perception by the public immediately after and most of the fine-grained citations, quotations, and reuse in the intervening years. Those incessant arguments about why the founding fathers chose this or that particular phrasing – what if we had a much better idea, the direct record of their internal deliberations? There’s no shortage of things to annotate, and there’s more knowledge being created per minute now than ever before – laws, scientific articles, news, books, tweets, data …but our tools are crude, balkanized, ill-preserved, and even then only available on a small minority of what’s important.

\n

The idea of web annotations is to capture the surrounding conversation that doesn’t necessarily fit into traditional comments, preserving it in a way that is open, sharable, and cooperates nicely with other technologies using the web’s standard.

\n

What Does the W3C Standard Mean for the Future of Annotations?

\n

Web annotation seems to promote more critical thinking and collaboration but it’s doubtful that it would ever fully replace commenting systems. The two serve different purposes and it’s more likely that annotations will serve to supplement conversations on the web. Not everyone is fond of the current implementations of annotation UI, which require visitors to keep clicking on things as they are reading.

\n

Despite being first being introduced to the web in the Mosaic browser prototype in 1993, annotation tools are still in their infancy. In a post announcing Andreessen Horowitz’s $15 million investment in Rap Genius, Marc Andreesen describes how the technology was almost built into the first web browser:

\n

“Only a handful of people know that the big missing feature from the web browser – the feature that was supposed to be in from the start but didn’t make it – is the ability to annotate any page on the Internet with commentary and additional information.”

\n

The implementation was pulled not too long after, because they didn’t have the capabilities required to host all the annotations and have it scale. For the past 24 years, various companies and organizations have taken a stab at bringing this feature back to the web – all with varying approaches that don’t necessarily play well together. That’s why the W3C standard is an important development.

\n

“While Hypothesis and others are already enabling annotation to take place over any page on the Web, a standard means that there is additional incentive for browser vendors to include this functionality natively,” Dan Whaley said. “The more that these new collaborative layers are present without any additional action on the part of the user, the more their use will grow.”

\n

Whaley also said the new W3C standard should send a strong signal to those who have developed proprietary annotation implementations, such as Genius, Readcube, Medium, and Amazon (Kindle).

\n

“These technical recommendations have the weight of the web community behind them and can be relied upon,” Whaley said. “Our hope is that the standard will not only encourage others to adopt its technical approach, but also ultimately to open their platforms.”

\n

In an ideal world, Doug Schepers sees annotation as a feature that is “baked straight into the web,” where all users can choose where their content is published. Annotation services would then offer the ability for users to choose which syndicators and aggregators the content is going out to. Publishers in turn would have the ability to consume annotation content and bring it back through their commenting system if they feel it adds value.

\n

“We can refine things over time,” Schepers said. “We can improve our culture over time. It sounds kind of lofty and maybe sort of abstract, but I think that’s what annotations can help us do. It can actually increase the growth of ideas and not the suppression of ideas. It can improve how we create our culture in a more conscious way, in a way that includes more critical thinking.”

\n

Schepers said it’s too soon to know how the future will unfold for web annotations and whether or not browsers will be interested in supporting them natively. Annotations may be relegated to live in script libraries forever if they don’t catch on with browsers. Like any new layer of interaction on the web, it’s worth building to see how the initial idea evolves based on where the users take it.

\n

“I don’t know what’s going to happen with annotations,” Schepers said. “That’s what I’m excited by. I can think of all sorts of things that might happen with annotations if we truly enable this, but I’m more looking forward to the things that I didn’t see coming at all.”

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Mar 2017 23:02:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: WPCampus 2017 to Take Place July 14-15 in Buffalo, NY\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66607\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/wpcampus-2017-to-take-place-july-14-15-in-buffalo-ny\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6398:\"WPCampus Date\n

After the inaugural WPCampus concluded in 2016, organizers put out a call for campuses across the country to host the event in 2017. The WPCampus planning committee has announced that WPCampus 2017 will be held July 14-15, at Canisius College in Buffalo, New York.

\n

In addition to announcing the date, the committee is accepting speaker submissions and looking for sponsors. Speaker submissions will be accepted until March 24th, 2017.

\n

Rachel Carden, a Senior Software Engineer for Disney Interactive, came up with the idea for WPCampus in a Tweet published in August, 2015. Since then, the community has grown to more than 500 members.

\n
\n

Ooh. Dream with me: \"#WordCampus: A WordCamp for folks using #WordPress in Higher Education.\" I like it. #heweb https://t.co/m1zEkpkP4B

\n

— Rachel Carden (@bamadesigner) August 3, 2015

\n

\n

Interview With Rachel Carden

\n

What did you learn from organizing the first WPCampus that will improve the second event?

\n

Most of the lessons learned from WPCampus 2016 involved logistics. A brand new community planning a brand new event with very minimal people ‘on the ground’ was challenging but, clearly, not impossible.

\n

Most of the changes we’ve implemented have been on how to make the time we spend planning more efficient, especially since we are an entirely volunteer-driven organization spread out all over the world.

\n

Overall, our first event was a success but there’s always little notes you take away for the next go round, like ‘make sure we take the group photo BEFORE everyone leaves’ and highlighted at the top of the list: ‘make sure we have candy again.’

\n

Ultimately, our main priority is to ensure attendees aren’t worrying about the ‘where’, ‘what’, and ‘how’ so they can instead focus on learning, networking, and making the most out of our short time together. This means taking notice of how we can improve communication, signage, etc.

\n

‘The secret of all victory lies in the organization of the non-obvious’ could not be more true. The biggest question we asked ourselves after WPCampus 2016 was ‘how can we create more opportunities for diverse interaction and discussion?’

\n

Our planning team has some great ideas and we’re excited to experiment a little, to see how a conference might be able to drive development outside the usual sessions and lightning talks. We’re really excited for what’s in store for our next event.

\n

Will there be another WordPress in higher education survey?

\n

I hope so! If not, it won’t be for lack of desire. Last year’s survey offered an incredible amount of insight and data into how WordPress is being used in higher education. It would be great to see what has changed. Stay tuned!

\n

Why was Canisius College chosen for the event?

\n

We had some amazing universities apply and invite us all to their campus. An honor for which we are most grateful and appreciative. As was the case with WPCampus 2016, it was really hard to pick just one but ultimately, it comes down to what we believe is best overall for our attendees.

\n

We even have a grading matrix because, of course we do, we’re in higher education. Canisius College is a beautiful campus in a great location, especially since a majority of the WPCampus community is located in the eastern U.S. and Canada.

\n

The team at Canisius has also been extremely supportive and is working hard to make sure we have a great time in their top-notch facilities. Buffalo is also a great city with amazing architecture, food, and scenery that we’re excited to explore.

\n

WPCampus Is Aiming for Sessions With a Variety of Perspectives

\n

For a glimpse into what WPCampus is all about, check out these recaps from those who attended the event in 2016. You can also watch most of the sessions from the event via the schedule page.

\n\n

Registration is not yet available but will open soon.

\n

“We aim for our session topics to be a good mix of WordPress in higher ed as well as solely higher ed and solely WordPress,” Carden said.

\n

“We recognize the value and inspiration in all perspectives. We hope the general WordPress community, and other higher ed communities, will see the value in investing in WPCampus and its mission to advance higher education by lending their time, knowledge and experience.”

\n

To receive updates related to the event, you can follow WPCampus on Twitter or keep an eye on the announcements page.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Mar 2017 17:24:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Matt: Henry Crown Fellowship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://ma.tt/2017/03/henry-crown-fellowship/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:645:\"

I’m very excited to have been selected to join the Henry Crown Fellowship Class of 2017. Many, many folks I admire including Reed Hastings, Kim Polese, Cory Booker, Aileen Lee, Stephen DeBerry, Deven Parekh, Chris Sacca, Tim Ferriss, Reid Hoffman, Scott Heiferman, Troy Carter, Bre Pettis, Lupe Fiasco, and Alexa von Tobel have been through the program in previous years, and several of those people have spoken highly of it to me. I’m excited to meet and get to know the rest of the 2017 class, and embark on a learning journey alongside them.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Mar 2017 16:27:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: Do You Enjoy WordPress Meetups? Let the Community Marketing Team Know Why\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66806\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/do-you-enjoy-wordpress-meetups-let-the-community-marketing-team-know-why\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2722:\"

When Matt Mullenweg, co-founder of the WordPress project, delivers his annual State of The Word presentation, he always gives props to meetup organizers and attendees. In 2016, there were 3,193 meetup events in 58 countries attended by 62,566 people. Meetups are one of the cornerstones of the community and for many are the gateway to discovering WordPress.

\n

In an effort to raise awareness of the project and its community, the Community Marketing team, a subgroup of the Marketing team, is asking volunteers to record video testimonials at WordCamps and meetups in March and April. The team wants to hear stories from users on why they use WordPress and how they’ve benefited from attending meetups.

\n

Other questions to consider asking include:

\n\n

Videos should be 1-5 minutes in length and uploaded to WordPress.tv under the Testimonies category. Ideal recording conditions are a quiet room with decent lighting and good audio. Recordings can be planned or spontaneous and minimal post production editing is encouraged. Also consider making the videos more accessible by adding captions and translations.

\n

The idea has received positive feedback with meetup attendees and organizers stating their intention to participate. For an example on how to record WordPress testimonials, check out this video by Troy Dean where he interviews attendees at WordCamp Sunshine Coast 2016.

\n
\n

If there’s not a WordPress meetup in your area, consider organizing one yourself using our guide. For additional advice, I recommend this free ebook by iThemes that includes interviews with several organizers who share their experience managing meetups.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Mar 2017 23:56:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: WordPress.com Announces New Importer for Medium Posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66836\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/wordpress-com-announces-new-importer-for-medium-posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6732:\"photo credit: Sergey Zolkin\n

Medium started 2017 on uncertain footing, laying off a third of its staff in January after admitting that its ad-based business model was not working.

\n

“We had started scaling up the teams to sell and support products that were, at best, incremental improvements on the ad-driven publishing model, not the transformative model we were aiming for,” Medium CEO Ev Williams said. “To continue on this trajectory put us at risk — even if we were successful, business-wise — of becoming an extension of a broken system. Upon further reflection, it’s clear that the broken system is ad-driven media on the internet.”

\n

Williams said that Medium will be taking “a different, bolder approach” to this problem of driving payment for quality content but that “it is too soon to say exactly what this will look like.” Medium may be experimenting with paid subscriptions in the future, but the company has yet to articulate its next strategy for monetization.

\n

WordPress.com Now Offers an Importer Tool for Medium

\n

Publishers that don’t want to stick around for Medium’s next round of experimentation can now easily migrate to WordPress. Automattic announced a new Medium importer for WordPress.com today and the company also plans to make it available to self-hosted WordPress sites through Jetpack.

\n

\n

Medium users can export content to a zip file and then upload it into WordPress.com’s import tool. The import includes posts, tags, images, and videos and takes approximately 15 minutes to complete. Previously, Medium sites could be imported into WordPress using an RSS importer plugin, but there were significant drawbacks to this approach. WordPress.com’s importer tool takes this into account.

\n

“Using the provided RSS file from Medium’s export archive was not sufficient, because some of the post data, like embeds, is missing,” Automattic developer Marko Andrijašević said. “Because of that, we are combining the data available in RSS and exported HTML files to accurately reproduce the post’s content.”

\n

Medium hasn’t made it easy for publishers to leave with their full content and has changed the format of its exports multiple times in the past. Andrijašević said this is one of the reasons it took WordPress.com so long to add an importer, along with the fact that the provided data in the exported archive was not sufficient to import everything correctly.

\n

“We’ll have Jetpack support coming soon for self-hosted sites,” Andrijašević said. “One other workaround for self-hosted site owners would be to use the Medium importer on WordPress.com, and then generate a WXR (WordPress eXtended RSS) file with our exporter. The WXR can then be used with WordPress importer on any self-hosted site.”

\n

In addition to its uncertain future and unsightly permalinks, Medium gives users plenty of other reasons to be wary of the platform. Publishers were not notified in advance about the company’s “renewed focus” and its plan to abandon the advertising model. Medium’s product is its users’ content and the company’s terms of service state that it can use that content to promote its own products and services, enable advertising, and “remove any content you post for any reason.”

\n

Part of the appeal of Medium is that it removes the burden of site management. Publishers are now expected to navigate things like AMP, FB Instant Articles, social networks, and SEO to drive traffic to their websites. With Medium, publishers are trading site ownership for convenience. If the company is not able to find a workable way to monetize users’ content, it has a very real chance of joining the hundreds of blogging silos that have died or been bought by a competitor simply to be shut down and have their technology reabsorbed.

\n

Medium’s publishing experience is entirely geared towards making the company successful by monetizing the efforts of publishers on its network. In a post titled The Billionaire’s Typewriter, Matthew But­t­er­ick writes about how the platform’s limitations on features and customization are designed to “let Medium extract value from the talent and labor of others.” He describes digital sharecropping in its shiniest form:

\n

Be­cause in re­turn for that snazzy de­sign, Medium needs you to relinquish con­trol of how your work gets to readers.

\n

Tempt­ing per­haps. But where does it lead? I fear that writ­ers who limit them­selves to pro­vid­ing “con­tent” for some­one else’s “branded plat­form” are go­ing to end up with as much lever­age as cows on a dairy farm.

\n

Medium is a new kind of type­writer—the bil­lion­aire’s type­writer. It’s not the only bil­lion­aire’s type­writer. So is the Kin­dle. So is iBooks. So is Twit­ter. What dis­tin­guishes these new type­writ­ers is not the pos­si­bil­i­ties they make available to writers, but what they take away.

\n

Publishers who want to determine the trajectory and reach of their own work need to migrate to a more stable platform where they have full control of their content. It’s not yet clear how Medium plans to monetize in the future, but the company will undoubtedly continue reaping the economic rewards of its publishers’ work. Whether you choose open source software or some other avenue, it’s worth leaving Medium’s grand experiment in order to own your own work.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Mar 2017 22:10:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: WPWeekly Episode 265 – Interview with Matt Medeiros\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=66822&preview=true&preview_id=66822\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wptavern.com/wpweekly-episode-265-interview-with-matt-medeiros\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3596:\"

In this episode, Marcus Couch and I are joined by Matt Medeiros, co-founder of Slocum Studio. Medeiros developed Conductor, a WordPress plugin that enables people to display content in blocks, similar to the approach that WordPress core is taking. He shares his thoughts and opinions on core’s approach and how it might impact the content builder market.

\n

Since Medeiros co-founded Slocum Studio with his father, Mark Medeiros, we discover what it’s like to operate a web development agency with a family dynamic. Last but not least, he shares his experience in the commercial theme market and gives us a first-hand account of what it was like to go through the theme review process. Based on the experience, Medeiros says he will not submit new themes to the directory.

\n

Stories Discussed:

\n

NextGEN Gallery Patches Critical SQL Injection Vulnerability
\nAmazon S3 Outage Hits WordPress Businesses, Disrupting Services and Support
\nFreemius Launches Insights for WordPress Themes

\n

Plugins Picked By Marcus:

\n

WooCommerce Simple Ads Server lets you create ads and campaigns for selling your own WooCommerce products on other websites. It lists all of your WooCommerce products on the back-end with options to create and assign banners for each product. It also provides all the scripts and embed codes necessary for your banners.

\n

WP Keyword Monitor uses the official API from Google to track your organic keyword rankings. You can track up to 100 keywords per day. This plugin provides full reports and displays a running graph of your rankings and statistics over time.

\n

Private Uploads protects sensitive uploaded files so that only logged-in users can access them. This plugin moves your designated private files to a separate folder and configures the web server to ask WordPress to authenticate access to files in that folder. It’s more efficient than similar plugins because it only rubs when serving files in the private folders.

\n

WPWeekly Meta:

\n

Next Episode: Wednesday, March 8th 3:00 P.M. Eastern

\n

Subscribe To WPWeekly Via Itunes: Click here to subscribe

\n

Subscribe To WPWeekly Via RSS: Click here to subscribe

\n

Subscribe To WPWeekly Via Stitcher Radio: Click here to subscribe

\n

Listen To Episode #265:
\n

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Mar 2017 23:28:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"HeroPress: WordPress Opened Up a Whole New World\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1620\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://heropress.com/essays/wordpress-opened-whole-new-world/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10886:\"\"Pull

Before WordPress

\n

Several years ago, I went through a tough time in my life. I lost my job and I was desperately in need of a career change. Because of the economic climate in Zimbabwe, I didn’t see many options, but I felt that IT held the most promising future.

\n

So I completed an A+ course and obtained a CCNA certification. Unfortunately, in Zimbabwe, skills and certifications were not enough to secure meaningful employment. Being a college drop-out, I didn’t have the required diploma or degree that employers were looking for.

\n

That’s when I enrolled in a diploma in management of information systems. In this course, there was a module called “Programming and Web Design”. I was introduced to HTML, CSS and Javascript, among other programming languages. But it was only an introduction… it wasn’t enough to be able to create my own website.

\n

After graduating, I studied online tutorials and learned how to create a website. That was the beginning of my personal website, franksweb.org, a static HTML website that I created from scratch.

\n

Not long after that, I was hired by an an online design and marketing firm that was looking for a web developer. To my surprise, I found that they only used content management systems (CMS) to create websites. No one was making static HTML websites!

\n

Joomla! was the preferred CMS at this company. It wasn’t until I was assigned to create a website for a local recording artist that I discovered WordPress. I was searching for templates that suited the client’s needs and discovered a template that just happened to be WordPress!

\n

I had heard of WordPress, even though they didn’t teach us about content management systems in my diploma course. All I knew was that WordPress was a free blogging service.

\n

I had no idea how much more was possible using WordPress.

\n

I soon discovered the numerous advantages of using WordPress over Joomla! (There’s a reason why 27% of the web uses WordPress, whereas Joomla! is used by only 3%!) Soon after, I re-designed franksweb.org using WordPress. So began my love affair with WordPress.

\n

Freelancing

\n

After having worked for my employer for a little over one and a half years, receiving a very small salary, the time came for me to move on. My employer had been failing to pay our salaries and owed me a lot of money in back pay (which has never been paid to me to this day). So I had no choice but to leave and I started freelancing.

\n

Since I started freelancing, all the websites I’ve created for my clients (except for one) have been WordPress sites. WordPress has empowered me to make a living from creating functional websites that are easy to manage for my clients.

\n

Here in Zimbabwe, very few web designers and web developers create static HTML websites. The majority use content management systems, and for good reason. Of course, the overwhelming majority are WordPress sites. This is just a testament to how WordPress makes our jobs easier and the potential to make money using WordPress.

\n

The WordPress Community

\n

One thing that we were taught in my diploma course was the importance of continuous professional development (CPD). That, and the fact that I had a genuine passion for all things WordPress, led me to soak up anything WordPress-related that I could get my hands on. I watched a lot of Morten Rand-Hendriksen’s tutorials on lynda.com to advance my skills. The WordPress.org website became a permanent tab on my desktop whenever you opened my web browser (my “WordPress Bible”). I also made sure the “WordPress News” box was always open in all my Dashboards so I could keep up with the latest in WordPress.

\n

One day I saw a WPTavern article in my Dashboard calling for applications to participate in the first WordCamp incubator program. I was very interested since Zimbabwe had never had a WordCamp before. I didn’t know of anyone else in Harare who had the same desire but I applied anyway.

\n

More than a hundred cities applied so I honestly wasn’t expecting my application to be chosen, especially because of the challenges that my country is facing.

\n

I was shocked when I got an email from Rocio Valdivia and Hugh Lashbrooke saying they wanted to interview me for the incubator program.

\n

Later on, I received an email from Andrea Middleton saying my application to be a WordCamp organizer had been accepted! This was a very exciting time for me. It was now going to be possible to experience the things I had read about the WordPress Community here in Zimbabwe, too.

\n\"FirstFirst meetup at the Computer Society of Zimbabwe, August 20, 2016\n

The first thing that I needed to do was start a monthly WordPress meetup group in Harare because there was no regular meetup that I was aware of, and therefore no real WordPress Community. It was a struggle but thanks to the guidance and support of WordCamp Central, and the support of the Computer Society of Zimbabwe, we were able to have meetups and the membership grew.

\n

Months later, we hosted the very first WordCamp in Zimbabwe: WordCamp Harare 2016.

\n

It was a success and much better than I thought it would be. Along with our monthly meetups, WordCamp did a lot to promote awareness of the WordPress Community. Since then, quite a number of local WordPress users have become active in the WordPress Community. I absolutely love hosting meetups and sharing knowledge about something which I am passionate about.

\n\"FirstFirst WordCamp Harare at Harare City Library\n

On a personal level, working with the WordPress Community opened up a world that I didn’t know existed within WordPress. I got to know so many amazing people and everyone has been helpful and kind. The WordPress Community is made up of people who are generous and willing to give their time and share knowledge with others. For me, it is very fulfilling to be able to give back to something which I have benefited from so much.

\n

One of the highlights of WordCamp for me was meeting Job Thomas and Herman Kok, two of our speakers who came from South Africa. They both work for Automattic, the company that owns WordPress.com, WooCommerce, Jetpack and other WordPress-related products. (Before I became active in the WordPress Community, I had no idea Automattic had an office in South Africa!) Talking to them, I got a strong sense that they were passionate, not only about what they do, but about sharing their knowledge and experience with others.

\n

I was encouraged and inspired to apply to work for Automattic. The position that I wish to apply for is called “Happiness Engineer”. Basically, your job is customer support. For me, this is a dream job: getting paid to do something that I have a passion for which is share my knowledge of WordPress with others. They say that if you find something that you love to do, you’ll never work another day in your life. So currently, I spend time helping other users in Automattic product forums in order to gain more direct experience before I apply.

\n

This past year has been an awesome journey for me. If it wasn’t for WordPress, I would never have experienced being part of an open-source community and the doors that have opened for me. There are so many awesome people that I never would have gotten to know. WordPress truly changed my life.

\n

The post WordPress Opened Up a Whole New World appeared first on HeroPress.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Mar 2017 12:00:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Thabo Tswana\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: HackerOne Launches Free Community Edition for Non-Commercial Open Source Projects\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66592\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wptavern.com/hackerone-launches-free-community-edition-for-non-commercial-open-source-projects\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5076:\"

\n

HackerOne, the vulnerability coordination and bug bounty platform, has launched a new Community Edition for open source projects. The company is built around the notion that, “given enough eyeballs, all vulnerabilities are shallow.” HackerOne announced a $40 million round of funding earlier this month, which allows the company to expand its market and add new features to the platform.

\n

Open source projects are one area where HackerOne is expanding its reach. The company participates in the Internet Bug Bounty program, which helps secure core internet infrastructure and open source software, but HackerOne is now opening up its own platform.

\n

“One of the goals I have had in my work with HackerOne is to build an even closer bridge between HackerOne and the open source community,” community strategy consultant Jono Bacon said. Bacon announced the availability of HackerOne’s new Community Edition, which has not yet been formally announced but is already open for applicants.

\n

The Community Edition has all the same features as HackerOne’s Professional Edition, including vulnerability submission/coordination, duplicate detection, hacker reputation, analytics, and more. The only difference is that it doesn’t include paid customer support and program assistance. It also integrates with many popular issue tracking tools, such as JIRA, GitHub, Bugzilla, Zendesk, Track, and others.

\n

\n

Although the name “Community Edition” might suggest to some that it is self-hosted, HackerOne actually provides it as a SaaS offering with no setup or deployment required.

\n

Open source projects are eligible if they meet a few requirements:

\n\n

WordPress doesn’t have its own listing in the HackerOne directory but Automattic’s page says the company also welcomes reports for WordPress, BuddyPress, and bbPress. Automattic has had 446 bugs resolved through its program on HackerOne, which it has maintained for the past three years. A handful of other WordPress-related projects are also listed in the directory, including the WordPoints plugin, Ian Dunn’s projects, and Flox.

\n

Having a crowd-sourced security program in place is becoming more critical, as breeches are costing companies billions of dollars every year. The World Economic Forum’s 2016 Global Risks Report estimated that “crimes in cyberspace cost the global economy an estimated $445 billion.”

\n

Not all organizations listed on HackerOne offer bug bounties, but bounties are a proven method of attracting security talent. Since HackerOne launched, its customers have resolved more than 37,000 vulnerabilities and have paid out more than $13 million in bug bounties. By the end of 2016, HackerOne’s community of hackers had grown to nearly 100,000.

\n

The new Community Edition gives smaller open source projects and organizations exposure to HackerOne’s network of thousands of security researchers and the tools for managing communication about vulnerabilities. Projects applying for the Community Edition must be non-commercial and able to run an effective security program. Applications are usually answered within one business week.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Mar 2017 04:56:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: Freemius Launches Insights for WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66740\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/freemius-launches-insights-for-wordpress-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8722:\"

Freemius Insights has announced that its analytics service that was previously only available to WordPress plugins is now available for themes. The company was founded in 2015 by Vova Feldman and his team after discovering how much information is not available to developers who host plugins and themes on the official WordPress directories and marketplaces.

\nFreemius Insights for Themes\n

Freemius Insights for themes gives developers an opportunity to collect a large variety of data, including, email addresses, PHP, plugin, WordPress version distribution, and more. When a user installs a theme that uses Freemius, an opt-in prompt is displayed that notifies them that data will be sent to Freemius.com to help improve the product. Selecting Skip prevents data from reaching Freemius.com.

\nFreemius Opt-in Prompt\n

Feldman says that he and his team have worked closely with the WordPress Theme Review Team to ensure that Freemius Insights does not violate the theme directory requirements. One of the most informative features that Freemius Insights provides is the ability for users to provide feedback if they decide to switch to a different theme.

\n

When a user switches away from a product using Freemius, a prompt is shown with randomly displayed questions asking for feedback. These responses are saved and can be viewed at a later time in the Freemius dashboard. If a user switches themes because it doesn’t have a specific feature and it’s added at some point, a developer can go back and notify them that the feature exists.

\n

Data Collection Leads to Description, Settings, and Documentation Improvements for FooBox

\n

Adam Warner, Co-founder of FooPlugins.com, added Freemius Insights to FooBox, an image lightbox plugin after noticing that other plugins were collecting opt-in usage data. His team realized they needed the data but didn’t have the resources to build a custom solution in a reasonable amount of time.

\n

Warner shares what he discovered with the data collected by Freemius. “Install, uninstall, deactivation, and feedback data is some of the most important data we’ve obtained,” he responded.

\n

“Not long after we discovered that of those who deactivated the plugin, the two top reasons were ‘expected something else’ and ‘didn’t understand how it works.’ That is valuable insight that we might not have had otherwise and allowed us to revamp our plugin description on .org and in the plugin settings.”

\n

One of the main reasons for collecting data is to improve the product. Based on the data collected, improvements to FooBox were geared towards documentation and the plugin’s settings pages, “After learning from the insights that Freemius provided us, we wrote longer explanations of various settings and what they do, as well as putting in links to documentation and video walkthroughs,” he said.

\n

Freemius Usage Data Ramps Up Priority for NextGEN Gallery Wizard

\n

NextGEN Gallery is Freemius’ most popular plugin tracked so I asked Erick Danzer, Founder and CEO of Imagely, makers of NextGEN Gallery, what his team has learned and if any improvements are a direct result of the data collected.

\n

Since adding Freemius to NextGEN Gallery, the opt-in form has been exposed to about 200K new users. Out of these, 37.5% or 75K users have opted to submit data.

\n

“We’ve learned that 21% of users deactivate or uninstall the plugin entirely,” Danzer said. “Conversely, that means we have about a 79% retention rate. It’s hard to know how that compares to the WordPress ecosystem as a whole, but our sense is that retention rate is not bad (even if we’d like it to be better). I’d love to see comparative data across other plugins at some point.”

\n

Of those who uninstall the plugin, 20% which is the largest share, do so because they don’t understand how it works, “This wasn’t a surprise. We know that NextGEN Gallery is powerful and thus overwhelming to some users,” Danzer said. “But this is the first time we’ve been able to put actual numbers on that behavior.”

\n

Some of the biggest improvements to NextGEN Gallery that are a result of the data that’s been collected deal with the user interface. “We now know that 21% of users uninstall and that the biggest reason is too much complexity getting started,” Danzer said. “That tells us that if we want to improve our retention rate, we need to make it easier to start.”

\n

“To that end, we’ve done two things. First, we just released a start-up Gallery Wizard late last fall that walks new users through the process of setting up their first gallery. Second, we’re about 70% done with an overhaul of the interface to simplify the presentation of options. These are both things we probably would have done anyways, but we upped their priority based on Freemius data.”

\n

Data From Freemius Insights Points to a Common Dead-end With Plugins

\n

For more than a year, Freemius Insights has been collecting mountains of data for plugins. Feldman was gracious enough to supply the Tavern with some interesting data. There are more than 750 developers registered to the site and more than 400K users have opted-in to usage tracking. NextGEN Gallery is the service’s most popular tracked plugin active on more than 1.5M sites.

\n

Out of the plugins tracked, there have been 114K feedback responses on why users deactivated a plugin. The top five reasons plugins were deactivated are:

\n\n

The most interesting aspect of this data is the second most popular reason why users deactivate a plugin. When users activate a plugin, many don’t know what the next step is. It could be searching for a link to the settings page or not doing anything at all. Most of the time, users have no idea because the plugin doesn’t tell them.

\n

WooCommerce is a good example of a plugin that bucks this trend with an onboarding wizard that when completed, puts users in a place where they can immediately start selling products.

\nWooCommerce Onboarding Wizard\n

Not every plugin is as complex as WooCommerce and doesn’t need a onboarding wizard. For these use cases, developers might consider using Admin Pointers, a feature that was added in WordPress 3.3. With Admin Pointers you can inform users about a new feature or provide further instructions after a plugin is activated.

\n

Insights for Themes is free for non-commercial themes however, only two weeks of historical aggregated metrics and the 100 most recent user emails will be collected. In exchange for aggregating the data, Freemius asks that a symbolic attribution that ‘freemius’ is a contributor be added to the theme’s readme.txt file. No email exports or webhooks are included with the free plan.

\n

Freemius is an example of a service that is filling a huge void of nonexistent data from WordPress.org for plugin and theme authors. A void that doesn’t appear likely to be filled anytime soon. As noted above, the data that is collected, especially direct feedback from users, has surfaced issues that may not have otherwise been discovered.

\n

If you use Freemius Insights in your plugins or themes, please tell us about your experience and what you’ve learned from the collected data.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Feb 2017 22:43:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: Amazon S3 Outage Hits WordPress Businesses, Disrupting Services and Support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66751\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wptavern.com/amazon-s3-outage-hits-wordpress-businesses-disrupting-service-and-support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5853:\"

\n

Amazon is currently experiencing “high error rates with S3 in US-EAST-1,” causing a massive outage for sites, apps, and services across the web. The AWS service health dashboard was also temporarily affected by the outage. Amazon says it is working at repairing S3 and that they believe they have identified the root cause.

\n
\n

@awscloud Care to share the architecture of this status page as an anti-pattern?

\n

— Thorben Heins (@thorbenheins) February 28, 2017

\n

\n

The outage is affecting many popular sites, such as Quora, Netflix, Splitwise, Business Insider, Giphy, Trello, IFTTT, many publishers’ image hosting, filesharing in Slack, and the Docker Registry Hub.

\n

WordPress businesses are also currently affected, especially those that host customer downloads. WooCommerce customers are currently unable to access downloads they purchased. Similarly Envato customers are having difficulty accessing downloads and content.

\n
\n

Yes, we are affected by #AWS #S3 outage too. S3 is having a snag right now…. Quora, Slack, Envato and millions more are suffering…

\n

— WPBakery (@wpbakery) February 28, 2017

\n

\n
\n

We\'re aware of issues with functionality of the https://t.co/dGuVluPt9A site, such as My Downloads. This is related to the @awscloud outage

\n

— WooCommerce (@WooCommerce) February 28, 2017

\n

\n
\n

Amazon S3 has identified high error rate issue that\'s impacting the Envato Market specifically our downloads and content. We are monitoring!

\n

— Envato Help (@envato_help) February 28, 2017

\n

\n
\n

Downloading and updating our premium plugins is possible again, after a short downtime due to problems at S3. Sorry for the inconvenience!

\n

— Yoast (@yoast) February 28, 2017

\n

\n
\n

Due to the AWS outage, we are experiencing problems with sales, support, and development. Please accept our apologies…we\'ll be back soon!

\n

— WP Ninjas, LLC (@wpninjas) February 28, 2017

\n

\n

Joost de Valk, CEO and founder of Yoast, said the company experienced minor effects from the outage but has already been planning on switching from S3 to a new storage provider.

\n

“The outage doesn’t seem to have affected our revenue much,” de Valk said. “It was slightly annoying and led to some images not working and people not being able to download their plugins for a while, which is always a shame. However, not directly related to this, we’re already looking at ditching S3. That’s because our new hosting setup at SiteGround combined with CDN from MaxCDN actually negates the need for S3 entirely.”

\n

Other companies that have AWS integrated into their support services experienced more disruption due to customers not being able to receive help.

\n

“Obviously our website is hosted using AWS technology through Pagely,” WP Ninjas co-founder James Laws said. “I’m not sure how they’ve been affected directly, but we have noticed intermittent downtime. Perhaps the biggest impact is that our support service is built on AWS and with it down we are completely unable to provide any support to our users.”

\n

Laws said the company has had fairly decent uptime with AWS in the past and that the idea of switching services because of an outage would not be worth the effort.

\n

“The truth is that 100% uptime is more a fantasy than anything,” Laws said. “The idea of having to move a website or change a support system temporarily or even permanently for a short period of downtime would be pretty daunting. You probably could create contingency plans for something like this, but the technical and administrative costs are not generally worth it in my opinion.”

\n

The outage serves as a painful reminder of how dependent the web is on cloud storage providers and how few services have a backup plan for instances like these.

\n

At 12:52 PM PST Amazon released an update, promising improvements for customers within the hour: “We are seeing recovery for S3 object retrievals, listing and deletions. We continue to work on recovery for adding new objects to S3 and expect to start seeing improved error rates within the hour.” The ability to retrieve, list, and delete was fully recovered within half an hour and Amazon continues to work on fixing the ability to add new objects to S3.

\n
\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Feb 2017 21:54:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n\t\n\t\n\t\n\t\n\t\n\t\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Donncha: Coming up in WP Super Cache 1.5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://odd.blog/?p=89500157\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://odd.blog/2017/02/28/coming-up-in-wp-super-cache-1-5-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5618:\"

The next version of WP Super Cache will be one with some big changes! There are many small bug fixes and improvements but the one I’m most excited about is moving the legacy cache files into the supercache directory.

\n

The legacy cache files were the files created by the old WP-Cache plugin upon which this plugin is based. They’re really useful as they store the headers sent from the server as well as the page contents. If you’re serving pages that aren’t regular html, such as JSON or XML you don’t want to tell the browser they’re text/html documents. This caching method is also used for anyone who is logged into your site, or left a comment.
\nThere is a problem however. They’re stored in one directory. If you have many thousands of visitors interacting with your site you may end up with a directory containing thousands of files. The names of the cache files are a hash of the URL, gzip support and browser cookies so one file can match one user, or one file can be used by thousands of anonymous users. In the event that someone left a comment on a popular post the plugin has to search through all those files looking for the pages cached for other users who were also looking at that page. On a busy server that can cause problems.

\n

So, in #177 I added code that moves the legacy cache files into the supercache directory. That means the files are stored in directories that reflect the URL of the page that was served which makes it very easy to delete the cached files belonging to that page as they’re all in the same directory!

\n

The new code will look in the old location for legacy files first as some sites will have a large collection of cached files, but any new cache files will be created in the supercache directory.

\n

Ian Dunn submitted code to cache the REST API. It’s not yet complete but we’ll be able to build on the changes to the legacy cache to make caching the API more efficient than it would have been before.

\n

I really need people to help test this. The latest code is running on this site so I’m very confident in how well it works but just because it works on my odd little server doesn’t mean it will work right everywhere. If you want to give it a spin, visit the plugin Github repository and click on the “Clone or download” button. If you don’t know how to clone a Git respository just grab the zip file and install it on your server, overwriting the files in the plugins/wp-super-cache/ directory. If the changes to where cache files go doesn’t interest you, some of the changes in this list might:

\n\n\n

Related Posts

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Feb 2017 15:05:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 21 Mar 2017 10:45:06 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Tue, 21 Mar 2017 10:30:07 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911040210\";}","no"); INSERT INTO `wp_options` VALUES("129","_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9","1490136306","no"); INSERT INTO `wp_options` VALUES("130","_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9","1490093106","no"); INSERT INTO `wp_options` VALUES("131","_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109","1490136306","no"); INSERT INTO `wp_options` VALUES("132","_transient_feed_b9388c83948825c1edaef0d856b7b109","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\t\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:117:\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\t\t\n\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\n\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Mar 2017 10:41:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"753@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"The original SEO plugin for WordPress, downloaded over 30,000,000 times since 2007.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/hello-dolly/#post-5790\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 May 2008 22:11:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"5790@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WP-PageNavi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wp-pagenavi/#post-363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 23:17:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"363@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Adds a more advanced paging navigation interface.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Lester Chan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"UpdraftPlus WordPress Backup Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/updraftplus/#post-38058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 May 2012 15:14:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"38058@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Anderson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Regenerate Thumbnails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/regenerate-thumbnails/#post-6743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Aug 2008 14:38:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"6743@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Allows you to regenerate your thumbnails after changing the thumbnail sizes.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Alex Mills (Viper007Bond)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2572@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2082@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Extends and enhances TinyMCE, the WordPress Visual Editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"15@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"Akismet checks your comments and contact form submissions against our global database of spam to protect you and your site from malicious content.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Really Simple CAPTCHA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/really-simple-captcha/#post-9542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Mar 2009 02:17:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"9542@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Page Builder by SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"51888@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"23862@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"The one plugin you need for stats, related posts, search engine optimization, social sharing, protection, backups, speed, and email list management.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29860@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Duplicate Post\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/duplicate-post/#post-2646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Dec 2007 17:40:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2646@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Clone posts and pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Lopo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"NextGEN Gallery - WordPress Gallery Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"1169@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 16.5 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Yoast SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"8321@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the Yoast SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Google Analytics for WordPress by MonsterInsights\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2316@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"The best Google Analytics plugin for WordPress. See how visitors find and use your website, so you can keep them coming back.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Syed Balkhi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"25254@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2141@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"132@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"18101@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29832@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"Secure your website with the most comprehensive WordPress security plugin. Firewall, malware scan, blocking, live traffic, login security & more.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"W3 Total Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"12073@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"Search Engine (SEO) & Performance Optimization (WPO) via caching. Integrated caching: CDN, Minify, Page, Object, Fragment, Database support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"50539@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"Displays Google Analytics stats in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Duplicator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/duplicator/#post-26607\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2011 12:15:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26607@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Cory Lamle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Disable Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/disable-comments/#post-26907\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2011 04:42:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26907@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly. Provides tool t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Samir Shah\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WP Multibyte Patch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wp-multibyte-patch/#post-28395\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Jul 2011 12:22:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"28395@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Multibyte functionality enhancement for the WordPress Japanese package.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"plugin-master\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Black Studio TinyMCE Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Nov 2011 15:06:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"31973@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The visual editor widget for Wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"SiteOrigin Widgets Bundle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/so-widgets-bundle/#post-67824\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 24 May 2014 14:27:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"67824@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"A collection of all widgets, neatly bundled into a single plugin. It's also a framework to code your own widgets on top of.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"21738@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"Take the guesswork out of WordPress security. iThemes Security offers 30+ ways to lock down WordPress in an easy-to-use WordPress security plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"iThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t\t\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ninja Forms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/ninja-forms/#post-33147\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Dec 2011 18:11:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"33147@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:147:\"Drag and drop fields in an intuitive UI to create create contact forms, email subscription forms, order forms, payment forms, send emails and more!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Kevin Stover\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 21 Mar 2017 10:45:06 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:7:\"expires\";s:29:\"Tue, 21 Mar 2017 11:16:49 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Tue, 21 Mar 2017 10:41:49 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911040210\";}","no"); INSERT INTO `wp_options` VALUES("133","_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109","1490136306","no"); INSERT INTO `wp_options` VALUES("134","_transient_feed_mod_b9388c83948825c1edaef0d856b7b109","1490093106","no"); INSERT INTO `wp_options` VALUES("135","_transient_timeout_plugin_slugs","1490180226","no"); INSERT INTO `wp_options` VALUES("136","_transient_plugin_slugs","a:5:{i:0;s:19:\"akismet/akismet.php\";i:1;s:25:\"bizpro_cpt/bizpro_cpt.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:9:\"hello.php\";i:4;s:23:\"revslider/revslider.php\";}","no"); INSERT INTO `wp_options` VALUES("137","_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b","1490136306","no"); INSERT INTO `wp_options` VALUES("138","_transient_dash_88ae138922fe95674369b1cb3d215a2b","
","no"); INSERT INTO `wp_options` VALUES("139","_site_transient_timeout_popular_importers_d6ea163d1df9e7f632e0b9ff40fc010f","1490265916","no"); INSERT INTO `wp_options` VALUES("140","_site_transient_popular_importers_d6ea163d1df9e7f632e0b9ff40fc010f","a:2:{s:9:\"importers\";a:8:{s:7:\"blogger\";a:4:{s:4:\"name\";s:7:\"Blogger\";s:11:\"description\";s:54:\"Import posts, comments, and users from a Blogger blog.\";s:11:\"plugin-slug\";s:16:\"blogger-importer\";s:11:\"importer-id\";s:7:\"blogger\";}s:9:\"wpcat2tag\";a:4:{s:4:\"name\";s:29:\"Categories and Tags Converter\";s:11:\"description\";s:71:\"Convert existing categories to tags or tags to categories, selectively.\";s:11:\"plugin-slug\";s:18:\"wpcat2tag-importer\";s:11:\"importer-id\";s:10:\"wp-cat2tag\";}s:11:\"livejournal\";a:4:{s:4:\"name\";s:11:\"LiveJournal\";s:11:\"description\";s:46:\"Import posts from LiveJournal using their API.\";s:11:\"plugin-slug\";s:20:\"livejournal-importer\";s:11:\"importer-id\";s:11:\"livejournal\";}s:11:\"movabletype\";a:4:{s:4:\"name\";s:24:\"Movable Type and TypePad\";s:11:\"description\";s:62:\"Import posts and comments from a Movable Type or TypePad blog.\";s:11:\"plugin-slug\";s:20:\"movabletype-importer\";s:11:\"importer-id\";s:2:\"mt\";}s:4:\"opml\";a:4:{s:4:\"name\";s:8:\"Blogroll\";s:11:\"description\";s:28:\"Import links in OPML format.\";s:11:\"plugin-slug\";s:13:\"opml-importer\";s:11:\"importer-id\";s:4:\"opml\";}s:3:\"rss\";a:4:{s:4:\"name\";s:3:\"RSS\";s:11:\"description\";s:30:\"Import posts from an RSS feed.\";s:11:\"plugin-slug\";s:12:\"rss-importer\";s:11:\"importer-id\";s:3:\"rss\";}s:6:\"tumblr\";a:4:{s:4:\"name\";s:6:\"Tumblr\";s:11:\"description\";s:53:\"Import posts & media from Tumblr using their API.\";s:11:\"plugin-slug\";s:15:\"tumblr-importer\";s:11:\"importer-id\";s:6:\"tumblr\";}s:9:\"wordpress\";a:4:{s:4:\"name\";s:9:\"WordPress\";s:11:\"description\";s:96:\"Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.\";s:11:\"plugin-slug\";s:18:\"wordpress-importer\";s:11:\"importer-id\";s:9:\"wordpress\";}}s:10:\"translated\";b:0;}","no"); INSERT INTO `wp_options` VALUES("141","_site_transient_timeout_wporg_theme_feature_list","1490104296","no"); INSERT INTO `wp_options` VALUES("142","_site_transient_wporg_theme_feature_list","a:3:{s:6:\"Layout\";a:7:{i:0;s:11:\"grid-layout\";i:1;s:10:\"one-column\";i:2;s:11:\"two-columns\";i:3;s:13:\"three-columns\";i:4;s:12:\"four-columns\";i:5;s:12:\"left-sidebar\";i:6;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:15:\"flexible-header\";i:10;s:14:\"footer-widgets\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:9:{i:0;s:4:\"blog\";i:1;s:10:\"e-commerce\";i:2;s:9:\"education\";i:3;s:13:\"entertainment\";i:4;s:14:\"food-and-drink\";i:5;s:7:\"holiday\";i:6;s:4:\"news\";i:7;s:11:\"photography\";i:8;s:9:\"portfolio\";}}","no"); INSERT INTO `wp_options` VALUES("145","current_theme","BizPro","yes"); INSERT INTO `wp_options` VALUES("146","theme_mods_bizpro","a:2:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;}","yes"); INSERT INTO `wp_options` VALUES("147","theme_switched","","yes"); INSERT INTO `wp_options` VALUES("153","rs-templates-new","","no"); INSERT INTO `wp_options` VALUES("154","widget_bizpro_flickr","a:1:{s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("155","widget_bizpro_contact","a:1:{s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("156","widget_bizpro_embed","a:1:{s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("157","widget_bizpro_ads","a:1:{s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("158","widget_bizpro_portfolio","a:1:{s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("159","widget_bizpro_subscription","a:1:{s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("160","widget_bizpro_instagram","a:1:{s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("194","slider_types_children","a:0:{}","yes"); INSERT INTO `wp_options` VALUES("195","clients_types_children","a:0:{}","yes"); INSERT INTO `wp_options` VALUES("196","testimonial_types_children","a:0:{}","yes"); INSERT INTO `wp_options` VALUES("172","optionsframework","a:2:{s:2:\"id\";s:6:\"bizpro\";s:12:\"knownoptions\";a:1:{i:0;s:6:\"bizpro\";}}","yes"); INSERT INTO `wp_options` VALUES("173","bizpro","a:185:{s:10:\"page_style\";s:4:\"full\";s:10:\"responsive\";s:1:\"1\";s:4:\"zoom\";b:0;s:7:\"animate\";s:1:\"1\";s:12:\"page_loading\";b:0;s:13:\"loading_style\";s:3:\"ld8\";s:17:\"loading_ind_color\";s:7:\"#000000\";s:16:\"loading_bg_color\";s:7:\"#FFFFFF\";s:18:\"loading_bg_opacity\";s:3:\"100\";s:13:\"loading_speed\";s:4:\"1000\";s:13:\"loading_scale\";s:4:\"scl1\";s:13:\"loading_image\";s:0:\"\";s:23:\"loading_image_animation\";s:4:\"none\";s:12:\"boxed_border\";b:0;s:11:\"wrap_shadow\";b:0;s:15:\"blocked_corners\";b:0;s:6:\"bg_img\";s:0:\"\";s:9:\"bg_repeat\";s:6:\"repeat\";s:13:\"bg_img_select\";s:1:\"0\";s:16:\"meta_description\";s:27:\"Just another WordPress site\";s:13:\"meta_keywords\";s:0:\"\";s:11:\"meta_robots\";a:2:{s:5:\"index\";s:1:\"1\";s:6:\"follow\";s:1:\"1\";}s:13:\"header_bg_img\";s:0:\"\";s:9:\"is_sticky\";s:1:\"1\";s:15:\"is_smart_sticky\";s:1:\"1\";s:12:\"header_style\";s:2:\"v1\";s:12:\"small_header\";s:1:\"1\";s:15:\"menu_margin_top\";s:4:\"40px\";s:10:\"bh_opacity\";s:3:\"100\";s:10:\"sh_opacity\";s:3:\"100\";s:13:\"header_shadow\";s:1:\"1\";s:15:\"submenu_opacity\";s:3:\"100\";s:4:\"logo\";s:64:\"http://atheltree.com/ar/wp-content/themes/bizpro/images/logo.png\";s:10:\"logo_width\";s:5:\"170px\";s:15:\"logo_margin_top\";s:4:\"40px\";s:18:\"logo_margin_bottom\";s:4:\"40px\";s:17:\"logo_width_sticky\";s:5:\"130px\";s:18:\"menu_sticky_margin\";s:12:\"18px 0px 0px\";s:7:\"favicon\";s:67:\"http://atheltree.com/ar/wp-content/themes/bizpro/images/favicon.png\";s:6:\"search\";s:1:\"1\";s:14:\"right_sub_text\";s:157:\" info@yourname.com +1 (888) 0000\";s:16:\"fontsize_infobar\";s:4:\"14px\";s:15:\"info_margin_top\";s:4:\"42px\";s:18:\"breadcrumbs_bg_img\";s:0:\"\";s:13:\"bread_padding\";s:8:\"30px 0px\";s:9:\"font_text\";a:4:{s:4:\"size\";s:4:\"12px\";s:4:\"face\";s:7:\"Raleway\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#7A7A7A\";}s:9:\"font_menu\";a:4:{s:4:\"size\";s:4:\"14px\";s:4:\"face\";s:4:\"Lora\";s:5:\"style\";s:4:\"bold\";s:5:\"color\";s:7:\"#4a4a4a\";}s:16:\"fontsize_submenu\";s:4:\"12px\";s:15:\"font_menu_trans\";s:9:\"uppercase\";s:7:\"font_h1\";a:4:{s:4:\"size\";s:4:\"36px\";s:4:\"face\";s:4:\"Lora\";s:5:\"style\";s:4:\"bold\";s:5:\"color\";s:7:\"#4a4a4a\";}s:7:\"font_h2\";a:4:{s:4:\"size\";s:4:\"28px\";s:4:\"face\";s:4:\"Lora\";s:5:\"style\";s:4:\"bold\";s:5:\"color\";s:7:\"#4a4a4a\";}s:7:\"font_h3\";a:4:{s:4:\"size\";s:4:\"20px\";s:4:\"face\";s:4:\"Lora\";s:5:\"style\";s:4:\"bold\";s:5:\"color\";s:7:\"#4a4a4a\";}s:7:\"font_h4\";a:4:{s:4:\"size\";s:4:\"16px\";s:4:\"face\";s:4:\"Lora\";s:5:\"style\";s:4:\"bold\";s:5:\"color\";s:7:\"#4a4a4a\";}s:7:\"font_h5\";a:4:{s:4:\"size\";s:4:\"13px\";s:4:\"face\";s:4:\"Lora\";s:5:\"style\";s:4:\"bold\";s:5:\"color\";s:7:\"#4a4a4a\";}s:7:\"font_h6\";a:4:{s:4:\"size\";s:4:\"12px\";s:4:\"face\";s:4:\"Lora\";s:5:\"style\";s:4:\"bold\";s:5:\"color\";s:7:\"#4a4a4a\";}s:12:\"blog_sidebar\";s:5:\"right\";s:14:\"blog_item_slug\";s:4:\"blog\";s:14:\"blog_page_name\";s:4:\"Blog\";s:19:\"number_of_blog_item\";s:2:\"10\";s:12:\"excerpt_blog\";s:2:\"30\";s:13:\"blog_metadata\";a:4:{s:8:\"comments\";s:1:\"1\";s:6:\"author\";s:1:\"1\";s:4:\"time\";s:1:\"1\";s:8:\"category\";s:1:\"1\";}s:16:\"blog_more_button\";s:1:\"1\";s:11:\"blog_button\";s:18:\"Read more ›\";s:17:\"blog_button_style\";s:8:\"tbutton3\";s:10:\"blog_thumb\";s:1:\"c\";s:7:\"blog_gs\";b:0;s:15:\"blog_title_type\";s:10:\"cpmb_title\";s:20:\"blog_single_metadata\";a:4:{s:8:\"comments\";s:1:\"1\";s:6:\"author\";s:1:\"1\";s:4:\"time\";s:1:\"1\";s:8:\"category\";s:1:\"1\";}s:8:\"blog_nav\";s:1:\"1\";s:12:\"blog_comment\";s:1:\"1\";s:10:\"blog_share\";s:1:\"1\";s:16:\"share_title_post\";s:15:\"Share This Post\";s:15:\"blog_details_gs\";b:0;s:17:\"category_template\";s:11:\"blog-medium\";s:19:\"portfolio_item_slug\";s:7:\"project\";s:19:\"portfolio_page_name\";s:9:\"Portfolio\";s:19:\"portfolio_page_slug\";s:9:\"portfolio\";s:9:\"filtering\";s:1:\"1\";s:12:\"filter_style\";s:3:\"st7\";s:12:\"filter_align\";s:3:\"tal\";s:24:\"number_of_portfolio_item\";s:2:\"12\";s:17:\"excerpt_portfolio\";s:2:\"30\";s:21:\"portfolio_more_button\";s:1:\"1\";s:16:\"portfolio_button\";s:12:\"View Details\";s:22:\"portfolio_button_style\";s:8:\"tbutton3\";s:17:\"portfolio_sidebar\";s:4:\"left\";s:13:\"portfolio_nav\";s:1:\"1\";s:15:\"portfolio_share\";s:1:\"1\";s:21:\"share_title_portfolio\";s:18:\"Share This Project\";s:17:\"related_portfolio\";s:1:\"1\";s:23:\"related_portfolio_title\";s:16:\"Related Projects\";s:17:\"portfolio_comment\";s:1:\"1\";s:15:\"project_details\";s:3:\"acc\";s:11:\"woo_sidebar\";s:5:\"right\";s:7:\"woo_col\";s:1:\"3\";s:8:\"woo_item\";s:2:\"12\";s:14:\"woo_shop_title\";s:4:\"Shop\";s:22:\"woo_breadcrumbs_bg_img\";s:0:\"\";s:13:\"woo_dark_text\";b:0;s:14:\"woo_title_type\";s:16:\"cpmb_breadcrumbs\";s:18:\"woo_header_overlay\";b:0;s:13:\"woo_cart_icon\";b:0;s:15:\"woo_cart_margin\";s:4:\"45px\";s:13:\"woo_cart_type\";s:5:\"cart1\";s:10:\"footer_col\";s:1:\"1\";s:11:\"footer_text\";s:137:\"Copyright © 2016 BizPro Theme. Designed by ThemeTor.\";s:14:\"footer_gototop\";s:1:\"1\";s:11:\"footer_menu\";b:0;s:17:\"footer_menu_align\";s:10:\"menu-right\";s:13:\"footer_bg_img\";s:0:\"\";s:6:\"rev_cs\";s:1:\"1\";s:17:\"slider_pause_time\";s:4:\"4000\";s:12:\"slider_speed\";s:3:\"700\";s:17:\"nivo_slider_style\";s:4:\"full\";s:18:\"nivo_slider_shadow\";s:8:\"noshadow\";s:21:\"flex_slider_direction\";s:10:\"horizontal\";s:12:\"kwick_height\";s:3:\"315\";s:13:\"kwick_maxsize\";s:3:\"750\";s:13:\"kwick_spacing\";s:1:\"0\";s:15:\"kwicks_autoplay\";s:1:\"1\";s:14:\"kwick_duration\";s:4:\"4500\";s:13:\"kwicks_shadow\";s:1:\"1\";s:9:\"kwicks_gs\";b:0;s:18:\"slider_orientation\";s:1:\"r\";s:12:\"slice_shadow\";s:1:\"1\";s:12:\"slice_border\";b:0;s:13:\"slice_rounded\";s:1:\"1\";s:10:\"acc_height\";s:3:\"300\";s:9:\"acc_theme\";s:4:\"flat\";s:17:\"roundabout_height\";s:5:\"260px\";s:19:\"header_social_icons\";s:1:\"1\";s:17:\"social_margin_top\";s:4:\"48px\";s:20:\"social_icons_tooltip\";s:1:\"1\";s:21:\"social_icons_tipstyle\";s:6:\"toptip\";s:24:\"social_icons_link_target\";s:1:\"1\";s:12:\"twitter_link\";s:1:\"#\";s:13:\"facebook_link\";s:1:\"#\";s:14:\"pinterest_link\";s:0:\"\";s:11:\"github_link\";s:0:\"\";s:11:\"flickr_link\";s:1:\"#\";s:11:\"google_link\";s:0:\"\";s:12:\"youtube_link\";s:0:\"\";s:13:\"dribbble_link\";s:0:\"\";s:14:\"instagram_link\";s:0:\"\";s:13:\"linkedin_link\";s:0:\"\";s:10:\"skype_link\";s:0:\"\";s:11:\"tumblr_link\";s:0:\"\";s:8:\"rss_link\";s:1:\"#\";s:13:\"email_address\";s:0:\"\";s:12:\"sitemap_link\";s:0:\"\";s:12:\"share_button\";a:5:{s:8:\"facebook\";s:1:\"1\";s:6:\"google\";s:1:\"1\";s:8:\"linkedin\";s:1:\"1\";s:4:\"xing\";s:1:\"1\";s:7:\"twitter\";s:1:\"1\";}s:17:\"rp_carousel_speed\";s:4:\"1000\";s:22:\"rp_carousel_pause_time\";s:4:\"4000\";s:19:\"orderby_rp_carousel\";s:4:\"date\";s:17:\"order_rp_carousel\";s:4:\"DESC\";s:7:\"gs_post\";s:1:\"1\";s:24:\"portfolio_carousel_speed\";s:4:\"1000\";s:29:\"portfolio_carousel_pause_time\";s:4:\"4000\";s:26:\"orderby_portfolio_carousel\";s:10:\"menu_order\";s:24:\"order_portfolio_carousel\";s:3:\"ASC\";s:17:\"number_of_clients\";s:2:\"10\";s:19:\"carousel_pause_time\";s:4:\"4000\";s:14:\"carousel_speed\";s:4:\"1000\";s:24:\"orderby_clients_carousel\";s:10:\"menu_order\";s:22:\"order_clients_carousel\";s:3:\"ASC\";s:8:\"lb_theme\";s:10:\"pp_default\";s:18:\"lb_animation_speed\";s:4:\"fast\";s:10:\"lb_opacity\";s:3:\"0.8\";s:14:\"lightbox_title\";s:1:\"1\";s:10:\"lb_gallery\";s:1:\"1\";s:11:\"lb_autoplay\";b:0;s:18:\"lb_slideshow_speed\";s:4:\"5000\";s:9:\"lb_resize\";s:1:\"1\";s:6:\"lb_sep\";s:2:\"of\";s:9:\"lb_social\";s:1:\"1\";s:8:\"lb_small\";s:1:\"1\";s:11:\"date_format\";s:6:\"jS M Y\";s:11:\"rtl_support\";b:0;s:10:\"e404_title\";s:18:\"404 Page Not Found\";s:9:\"e404_text\";s:58:\"Sorry, We could not find the content you were looking for.\";s:10:\"custom_css\";s:0:\"\";s:9:\"custom_js\";s:0:\"\";s:9:\"main_mode\";b:0;s:9:\"main_page\";s:7:\"default\";s:9:\"main_html\";s:97:\"

We are currently in maintenance mode, please check back shortly.

\";}","yes"); INSERT INTO `wp_options` VALUES("189","wpb_js_composer_license_activation_notified","yes","yes"); INSERT INTO `wp_options` VALUES("187","vc_version","5.1","yes"); INSERT INTO `wp_options` VALUES("175","recently_activated","a:0:{}","yes"); INSERT INTO `wp_options` VALUES("176","revslider-library-check","1490093824","yes"); INSERT INTO `wp_options` VALUES("177","rs-library","a:2:{s:7:\"objects\";a:169:{i:198;a:11:{s:2:\"id\";s:3:\"198\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_dvd_1.png\";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: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:11:{s:2:\"id\";s:3:\"197\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";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: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:11:{s:2:\"id\";s:3:\"196\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"beach_houses.jpg\";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: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:11:{s:2:\"id\";s:3:\"195\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";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: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:11:{s:2:\"id\";s:3:\"194\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"clean_desk.jpg\";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: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:11:{s:2:\"id\";s:3:\"193\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";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: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:11:{s:2:\"id\";s:3:\"192\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"corn_field.jpg\";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: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:11:{s:2:\"id\";s:3:\"191\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";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: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:11:{s:2:\"id\";s:3:\"190\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";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: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:11:{s:2:\"id\";s:3:\"189\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";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: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:11:{s:2:\"id\";s:3:\"188\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_plant_1.png\";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: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:11:{s:2:\"id\";s:3:\"187\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_pen_1.png\";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: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:11:{s:2:\"id\";s:3:\"186\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"greens_street.jpg\";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: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:11:{s:2:\"id\";s:3:\"185\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"desert.jpg\";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: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:11:{s:2:\"id\";s:3:\"184\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";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: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:11:{s:2:\"id\";s:3:\"183\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"laptop.jpg\";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: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:11:{s:2:\"id\";s:3:\"182\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";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: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:11:{s:2:\"id\";s:3:\"181\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";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: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:11:{s:2:\"id\";s:3:\"180\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"highway_night.jpg\";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: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:11:{s:2:\"id\";s:3:\"179\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_water.jpg\";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: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:11:{s:2:\"id\";s:3:\"177\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"woman_beach.jpg\";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: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:11:{s:2:\"id\";s:3:\"175\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:12:\"cool_guy.jpg\";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: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:11:{s:2:\"id\";s:3:\"174\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"beach_sea.jpg\";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: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:11:{s:2:\"id\";s:3:\"173\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";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: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:11:{s:2:\"id\";s:3:\"172\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_egg_1.png\";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: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:11:{s:2:\"id\";s:3:\"171\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_guitar_1.png\";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: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:11:{s:2:\"id\";s:3:\"170\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_1.png\";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: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:11:{s:2:\"id\";s:3:\"169\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_2.png\";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: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:11:{s:2:\"id\";s:3:\"168\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_2.png\";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: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:11:{s:2:\"id\";s:3:\"167\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_eggs_1.png\";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: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:11:{s:2:\"id\";s:3:\"166\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";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: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:11:{s:2:\"id\";s:3:\"165\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";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: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:11:{s:2:\"id\";s:3:\"164\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";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: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:11:{s:2:\"id\";s:3:\"163\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_speaker_1.png\";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: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:11:{s:2:\"id\";s:3:\"162\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_eraser_1.png\";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: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:11:{s:2:\"id\";s:3:\"161\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";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: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:11:{s:2:\"id\";s:3:\"160\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_booklet_1.png\";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: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:11:{s:2:\"id\";s:3:\"159\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_2.png\";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: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:11:{s:2:\"id\";s:3:\"158\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";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: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:11:{s:2:\"id\";s:3:\"157\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_1.png\";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: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:11:{s:2:\"id\";s:3:\"156\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";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: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:11:{s:2:\"id\";s:3:\"155\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_turntable_1.png\";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: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:11:{s:2:\"id\";s:3:\"154\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_2.png\";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: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:11:{s:2:\"id\";s:3:\"153\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_4.png\";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: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:11:{s:2:\"id\";s:3:\"152\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_1.png\";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: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:11:{s:2:\"id\";s:3:\"151\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_pencup_1.png\";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: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:11:{s:2:\"id\";s:3:\"150\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";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: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:11:{s:2:\"id\";s:3:\"149\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_headphones_1.png\";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: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:11:{s:2:\"id\";s:3:\"148\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_1.png\";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: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:11:{s:2:\"id\";s:3:\"147\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_3.png\";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: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:11:{s:2:\"id\";s:3:\"146\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";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: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:11:{s:2:\"id\";s:3:\"145\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_muffin_1.png\";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: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:11:{s:2:\"id\";s:3:\"144\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_2.png\";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: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:11:{s:2:\"id\";s:3:\"143\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_2.png\";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: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:11:{s:2:\"id\";s:3:\"142\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";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: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:11:{s:2:\"id\";s:3:\"141\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";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: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:11:{s:2:\"id\";s:3:\"140\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_2.png\";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: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:11:{s:2:\"id\";s:3:\"139\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_bread_1.png\";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: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:11:{s:2:\"id\";s:3:\"138\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_2.png\";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: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:11:{s:2:\"id\";s:3:\"137\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";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: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:11:{s:2:\"id\";s:3:\"136\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_2.png\";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: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:11:{s:2:\"id\";s:3:\"135\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_1.png\";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: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:11:{s:2:\"id\";s:3:\"134\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_1.png\";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: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:11:{s:2:\"id\";s:3:\"133\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_1.png\";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: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:11:{s:2:\"id\";s:3:\"132\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_3.png\";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: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:11:{s:2:\"id\";s:3:\"131\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_1.png\";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: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:11:{s:2:\"id\";s:3:\"130\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_2.png\";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: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:11:{s:2:\"id\";s:3:\"129\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_1.png\";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: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:11:{s:2:\"id\";s:3:\"128\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_fork_1.png\";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: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:11:{s:2:\"id\";s:3:\"127\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";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: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:11:{s:2:\"id\";s:3:\"126\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";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: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:11:{s:2:\"id\";s:3:\"125\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";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: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:11:{s:2:\"id\";s:3:\"124\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_antenna.png\";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: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:11:{s:2:\"id\";s:3:\"123\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_solarpanel.png\";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: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:11:{s:2:\"id\";s:3:\"122\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_wacom.png\";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: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:11:{s:2:\"id\";s:3:\"121\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_earth_2.png\";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: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:11:{s:2:\"id\";s:3:\"120\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_1.png\";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: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:11:{s:2:\"id\";s:3:\"119\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";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: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:11:{s:2:\"id\";s:3:\"118\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_windturbine.png\";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: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:11:{s:2:\"id\";s:3:\"117\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_earth.png\";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: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:11:{s:2:\"id\";s:3:\"116\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";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: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:11:{s:2:\"id\";s:3:\"115\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"desert_trees.jpg\";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: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:11:{s:2:\"id\";s:3:\"114\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";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: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:11:{s:2:\"id\";s:3:\"113\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";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: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:11:{s:2:\"id\";s:3:\"112\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";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: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:11:{s:2:\"id\";s:3:\"111\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_smoke.jpg\";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: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:11:{s:2:\"id\";s:3:\"110\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";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: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:11:{s:2:\"id\";s:3:\"109\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"sky_night.jpg\";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: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:11:{s:2:\"id\";s:3:\"108\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";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: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:11:{s:2:\"id\";s:3:\"107\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"concert_people.jpg\";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: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:11:{s:2:\"id\";s:3:\"106\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"forest_road.jpg\";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: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:11:{s:2:\"id\";s:3:\"105\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";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: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:11:{s:2:\"id\";s:3:\"104\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"mountain_night.jpg\";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: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:11:{s:2:\"id\";s:3:\"103\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";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: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:11:{s:2:\"id\";s:3:\"102\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"forest.jpg\";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: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:11:{s:2:\"id\";s:3:\"101\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";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: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:11:{s:2:\"id\";s:3:\"100\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"country_road.jpg\";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: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:11:{s:2:\"id\";s:2:\"99\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:9:\"beach.jpg\";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: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:11:{s:2:\"id\";s:2:\"98\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"city_skyline.jpg\";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: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:11:{s:2:\"id\";s:2:\"97\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"night_skyline.jpg\";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: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:11:{s:2:\"id\";s:2:\"96\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_river.jpg\";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: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:11:{s:2:\"id\";s:2:\"95\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";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: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:11:{s:2:\"id\";s:2:\"94\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"misty_farm.jpg\";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: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:11:{s:2:\"id\";s:2:\"93\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_path.jpg\";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: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:11:{s:2:\"id\";s:2:\"92\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";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: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:11:{s:2:\"id\";s:2:\"91\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_view.jpg\";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: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:11:{s:2:\"id\";s:2:\"90\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";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: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:11:{s:2:\"id\";s:2:\"89\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";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: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:11:{s:2:\"id\";s:2:\"88\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";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: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:11:{s:2:\"id\";s:2:\"87\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_notebook_1.png\";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: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:11:{s:2:\"id\";s:2:\"86\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_macbook_1.png\";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: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:11:{s:2:\"id\";s:2:\"85\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_2.png\";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: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:11:{s:2:\"id\";s:2:\"84\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_3.png\";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: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:11:{s:2:\"id\";s:2:\"83\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_2.png\";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: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:11:{s:2:\"id\";s:2:\"82\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";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: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:11:{s:2:\"id\";s:2:\"81\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_1.png\";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: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:11:{s:2:\"id\";s:2:\"80\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_deco_1.png\";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: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:11:{s:2:\"id\";s:2:\"79\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";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: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:11:{s:2:\"id\";s:2:\"78\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";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: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:11:{s:2:\"id\";s:2:\"77\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";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: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:11:{s:2:\"id\";s:2:\"76\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_1.png\";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: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:11:{s:2:\"id\";s:2:\"75\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_1.png\";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: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:11:{s:2:\"id\";s:2:\"74\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_2.png\";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: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:11:{s:2:\"id\";s:2:\"73\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_1.png\";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: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:11:{s:2:\"id\";s:2:\"72\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";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: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:11:{s:2:\"id\";s:2:\"71\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_2.png\";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: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:11:{s:2:\"id\";s:2:\"70\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_2.png\";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: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:11:{s:2:\"id\";s:2:\"69\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_printer_1.png\";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: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:11:{s:2:\"id\";s:2:\"68\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";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: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:11:{s:2:\"id\";s:2:\"67\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_3.png\";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: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:11:{s:2:\"id\";s:2:\"66\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_1.png\";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: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:11:{s:2:\"id\";s:2:\"65\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";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: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:11:{s:2:\"id\";s:2:\"64\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";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: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:11:{s:2:\"id\";s:2:\"63\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";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: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:11:{s:2:\"id\";s:2:\"62\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";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: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:11:{s:2:\"id\";s:2:\"49\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_bottle_1.png\";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: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:11:{s:2:\"id\";s:2:\"48\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_1.png\";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: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:11:{s:2:\"id\";s:2:\"47\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_1.png\";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: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:11:{s:2:\"id\";s:2:\"46\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";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: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:11:{s:2:\"id\";s:2:\"45\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_2.png\";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: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:11:{s:2:\"id\";s:2:\"44\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";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: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:11:{s:2:\"id\";s:2:\"43\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_5.png\";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: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:11:{s:2:\"id\";s:2:\"42\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";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: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:11:{s:2:\"id\";s:2:\"41\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_4.png\";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: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:11:{s:2:\"id\";s:2:\"40\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_2.png\";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: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:11:{s:2:\"id\";s:2:\"39\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_2.png\";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: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:11:{s:2:\"id\";s:2:\"38\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";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: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:11:{s:2:\"id\";s:2:\"37\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_2.png\";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: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:11:{s:2:\"id\";s:2:\"36\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_1.png\";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: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:11:{s:2:\"id\";s:2:\"35\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_2.png\";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: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:11:{s:2:\"id\";s:2:\"34\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_2.png\";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: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:11:{s:2:\"id\";s:2:\"33\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_gloves_1.png\";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: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:11:{s:2:\"id\";s:2:\"32\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";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: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:11:{s:2:\"id\";s:2:\"31\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_3.png\";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: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:11:{s:2:\"id\";s:2:\"30\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_1.png\";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: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:11:{s:2:\"id\";s:2:\"29\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_1.png\";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: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:11:{s:2:\"id\";s:2:\"28\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_1.png\";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: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:11:{s:2:\"id\";s:2:\"27\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_2.png\";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: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:11:{s:2:\"id\";s:2:\"26\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_cloth_1.png\";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: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:11:{s:2:\"id\";s:2:\"25\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";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: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:11:{s:2:\"id\";s:2:\"24\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";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: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:11:{s:2:\"id\";s:2:\"23\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";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: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:11:{s:2:\"id\";s:2:\"22\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_1.png\";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: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:11:{s:2:\"id\";s:2:\"21\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";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: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:11:{s:2:\"id\";s:2:\"20\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";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: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:11:{s:2:\"id\";s:2:\"11\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"table_radio_right.png\";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: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:11:{s:2:\"id\";s:2:\"10\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"keyboard_apple.png\";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: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:11:{s:2:\"id\";s:1:\"9\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";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: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:11:{s:2:\"id\";s:1:\"8\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";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: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:13:{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: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: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\";}}}","no"); INSERT INTO `wp_options` VALUES("178","revslider_checktables","1","yes"); INSERT INTO `wp_options` VALUES("179","rs_tables_created","1","yes"); INSERT INTO `wp_options` VALUES("180","revslider_table_version","1.0.6","yes"); INSERT INTO `wp_options` VALUES("181","revslider-global-settings","a:0:{}","yes"); INSERT INTO `wp_options` VALUES("182","revslider_update_version","5.2.5.5","yes"); INSERT INTO `wp_options` VALUES("183","widget_rev-slider-widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes"); INSERT INTO `wp_options` VALUES("192","category_children","a:0:{}","yes"); INSERT INTO `wp_options` VALUES("193","portfolio_types_children","a:0:{}","yes"); INSERT INTO `wp_options` VALUES("152","rs-templates","a:2:{s:6:\"slider\";a:149:{i:0;a:20:{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:310:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:20:{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:308:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:20:{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:308:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:20:{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:439:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:20:{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:449:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:20:{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:437:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:20:{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:617:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:20:{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:308:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:20:{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:308:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:20:{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:326:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:20:{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:440:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:20:{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:617:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:20:{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:308:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:20:{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:308:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:20:{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:315:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:20:{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:326:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:20:{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:308:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:20:{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:447:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:20:{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:326:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:20:{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:315:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:20:{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:461:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:20:{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:617:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:20:{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:617:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:20:{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:617:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:20:{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:346:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:20:{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:310:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:20:{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:326:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:20:{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.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 Twitter stream. Just one slide is needed to show a whole feed!\r\n\";s:11:\"setup_notes\";s:438:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:20:{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.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: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:436:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:20:{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:461:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:20:{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:617:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:20:{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:326:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:20:{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:315:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:20:{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:617:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:20:{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:438:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:20:{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:630:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:20:{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:508:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:20:{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:397:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:20:{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:397:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:20:{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:518:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:20:{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:449:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:20:{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:397:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:20:{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:323:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:20:{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:316:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:20:{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:326:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:20:{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:443:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:20:{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:308:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:20:{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:444:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:20:{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:444:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:20:{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:461:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:20:{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:397:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:20:{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:691:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:20:{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:693:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:20:{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.0\";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:532:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:20:{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:543:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:20:{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:661:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:20:{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:508:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:20:{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:461:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:20:{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:449:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:20:{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:397:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:20:{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:326:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:20:{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:308:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:20:{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:449:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:20:{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:441:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:20:{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:447:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:20:{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:572:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:20:{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:516:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:23:{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:448:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:20:{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:303:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:20:{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:303:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:20:{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.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:131:\"A full-screen slider that contains a menu with slide blur effect.\r\n\";s:11:\"setup_notes\";s:449:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:20:{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:449:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:23:{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.0\";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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:23:{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:446:\"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\";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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:23:{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:446:\"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\";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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:20:{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:449:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:20:{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:303:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:23:{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.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: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:913:\"\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:1:{i:0;s:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:23:{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:913:\"\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:1:{i:0;s:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:23:{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:913:\"\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:1:{i:0;s:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:23:{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:913:\"\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:1:{i:0;s:6:\"slider\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:23:{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:913:\"\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:1:{i:0;s:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:20:{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:326:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:20:{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.0\";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:303:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:20:{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:303:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:23:{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:913:\"\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:1:{i:0;s:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:20:{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:426:\"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:170:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-on-typewriter\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:20:{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:326:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:23:{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.0\";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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:112;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:113;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:114;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:115;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:116;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:117;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:118;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:119;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:120;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:121;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:122;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:123;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:125;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:126;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:127;a:23:{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:446:\"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\";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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:128;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:129;a:23:{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:446:\"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:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:130;a:23:{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:568:\"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:1:{i:0;s:4:\"hero\";}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:131;a:20:{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:343:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:20:{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:341:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:20:{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:197:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:23:{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:446:\"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;N;}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:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:135;a:20:{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:197:\"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:164:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:20:{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:468:\"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:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:20:{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:197:\"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:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:20:{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:463:\"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:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:20:{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:421:\"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:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:20:{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:197:\"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:190:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:20:{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:197:\"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:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:142;a:20:{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:197:\"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:352:\"[{\"path\":\"revslider-404-addon\\/revslider-404-addon.php\",\"name\":\"404 Page Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:143;a:20:{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:197:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:20:{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:197:\"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:191:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:145;a:20:{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:197:\"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:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:146;a:20:{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:197:\"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-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:147;a:20:{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:197:\"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:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:148;a:20:{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:197:\"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-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}}s:6:\"slides\";a:143:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}}}","no"); DROP TABLE IF EXISTS `wp_postmeta`; SET character_set_client = utf8; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM AUTO_INCREMENT=6641 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; INSERT INTO `wp_postmeta` VALUES("1","2","_wp_page_template","default"); INSERT INTO `wp_postmeta` VALUES("4","5","_form","\n\n\n\n\n\n\n\n[submit \"Send\"]"); INSERT INTO `wp_postmeta` VALUES("5","5","_mail","a:8:{s:7:\"subject\";s:27:\"Athel Tree \"[your-subject]\"\";s:6:\"sender\";s:37:\"[your-name] \";s:4:\"body\";s:172:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Athel Tree (http://atheltree.com/ar)\";s:9:\"recipient\";s:23:\"eng.sheshtawy@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}"); INSERT INTO `wp_postmeta` VALUES("6","5","_mail_2","a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:27:\"Athel Tree \"[your-subject]\"\";s:6:\"sender\";s:36:\"Athel Tree \";s:4:\"body\";s:114:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Athel Tree (http://atheltree.com/ar)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:33:\"Reply-To: eng.sheshtawy@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}"); INSERT INTO `wp_postmeta` VALUES("7","5","_messages","a:8:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";}"); INSERT INTO `wp_postmeta` VALUES("8","5","_additional_settings",NULL); INSERT INTO `wp_postmeta` VALUES("9","5","_locale","en_US"); INSERT INTO `wp_postmeta` VALUES("10","6","_wp_attached_file","2017/03/atheltreecom.wordpress.2017-03-21.xml_.txt"); INSERT INTO `wp_postmeta` VALUES("11","6","_wp_attachment_context","import"); INSERT INTO `wp_postmeta` VALUES("12","218","_wp_attached_file","2016/08/slide2.jpg"); INSERT INTO `wp_postmeta` VALUES("13","218","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2016/08/slide2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"slide2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"slide2-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:18:\"slide2-420x210.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:18:\"slide2-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:18:\"slide2-860x430.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:18:\"slide2-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:19:\"slide2-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("14","219","_wp_attached_file","2016/08/slide3.jpg"); INSERT INTO `wp_postmeta` VALUES("15","219","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2016/08/slide3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"slide3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"slide3-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:18:\"slide3-420x210.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:18:\"slide3-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:18:\"slide3-860x430.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:18:\"slide3-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:19:\"slide3-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("16","248","_wp_attached_file","2016/08/para5.jpg"); INSERT INTO `wp_postmeta` VALUES("17","248","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:17:\"2016/08/para5.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"para5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"para5-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:17:\"para5-420x210.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:17:\"para5-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:17:\"para5-860x430.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:17:\"para5-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:18:\"para5-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("18","249","_wp_attached_file","2016/08/slide4.jpg"); INSERT INTO `wp_postmeta` VALUES("19","249","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2016/08/slide4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"slide4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"slide4-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:18:\"slide4-420x210.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:18:\"slide4-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:18:\"slide4-860x430.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:18:\"slide4-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:19:\"slide4-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("20","253","_wp_attached_file","2016/08/slide8.jpg"); INSERT INTO `wp_postmeta` VALUES("21","253","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2016/08/slide8.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"slide8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"slide8-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:18:\"slide8-420x210.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:18:\"slide8-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:18:\"slide8-860x430.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:18:\"slide8-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:19:\"slide8-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("22","254","_wp_attached_file","2016/08/slide9.jpg"); INSERT INTO `wp_postmeta` VALUES("23","254","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2016/08/slide9.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"slide9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"slide9-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:18:\"slide9-420x210.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:18:\"slide9-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:18:\"slide9-860x430.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:18:\"slide9-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:19:\"slide9-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("24","256","_wp_attached_file","2016/08/slide12.jpg"); INSERT INTO `wp_postmeta` VALUES("25","256","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2016/08/slide12.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"slide12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"slide12-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:19:\"slide12-420x210.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:19:\"slide12-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:19:\"slide12-860x430.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:19:\"slide12-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:20:\"slide12-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("26","257","_wp_attached_file","2016/08/slide13.jpg"); INSERT INTO `wp_postmeta` VALUES("27","257","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2016/08/slide13.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"slide13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"slide13-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:19:\"slide13-420x210.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:19:\"slide13-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:19:\"slide13-860x430.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:19:\"slide13-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:20:\"slide13-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("28","319","_wp_attached_file","2016/08/tst1.jpg"); INSERT INTO `wp_postmeta` VALUES("29","319","_wp_attachment_metadata","a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:16:\"2016/08/tst1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("30","320","_wp_attached_file","2016/08/tst2.jpg"); INSERT INTO `wp_postmeta` VALUES("31","320","_wp_attachment_metadata","a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:16:\"2016/08/tst2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("32","321","_wp_attached_file","2016/08/tst3.jpg"); INSERT INTO `wp_postmeta` VALUES("33","321","_wp_attachment_metadata","a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:16:\"2016/08/tst3.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("34","323","_wp_attached_file","2016/08/para6.jpg"); INSERT INTO `wp_postmeta` VALUES("35","323","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:17:\"2016/08/para6.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"para6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"para6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:17:\"para6-420x280.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:17:\"para6-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:17:\"para6-860x574.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:17:\"para6-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:18:\"para6-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("36","367","_wp_attached_file","2016/08/services1.png"); INSERT INTO `wp_postmeta` VALUES("37","367","_wp_attachment_metadata","a:5:{s:5:\"width\";i:423;s:6:\"height\";i:412;s:4:\"file\";s:21:\"2016/08/services1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"services1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:21:\"services1-420x409.png\";s:5:\"width\";i:420;s:6:\"height\";i:409;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:21:\"services1-420x270.png\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:21:\"services1-423x400.png\";s:5:\"width\";i:423;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("38","391","_wp_attached_file","2016/08/1.jpg"); INSERT INTO `wp_postmeta` VALUES("39","391","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:859;s:4:\"file\";s:13:\"2016/08/1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"1-768x559.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:13:\"1-420x306.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:13:\"1-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:13:\"1-860x626.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:13:\"1-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:14:\"1-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:23:\"Alessio Ponti - Fotolia\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("40","392","_wp_attached_file","2016/08/2.jpg"); INSERT INTO `wp_postmeta` VALUES("41","392","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:787;s:4:\"file\";s:13:\"2016/08/2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:13:\"2-420x280.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:13:\"2-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:13:\"2-860x574.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:13:\"2-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:14:\"2-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:32:\"© Corbis. All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("42","393","_wp_attached_file","2016/08/3.jpg"); INSERT INTO `wp_postmeta` VALUES("43","393","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:787;s:4:\"file\";s:13:\"2016/08/3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:13:\"3-420x280.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:13:\"3-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:13:\"3-860x574.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:13:\"3-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:14:\"3-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:32:\"© Corbis. All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("44","394","_wp_attached_file","2016/08/4.jpg"); INSERT INTO `wp_postmeta` VALUES("45","394","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:787;s:4:\"file\";s:13:\"2016/08/4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:13:\"4-420x280.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:13:\"4-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:13:\"4-860x574.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:13:\"4-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:14:\"4-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("46","395","_wp_attached_file","2016/08/5.jpg"); INSERT INTO `wp_postmeta` VALUES("47","395","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:787;s:4:\"file\";s:13:\"2016/08/5.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:13:\"5-420x280.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:13:\"5-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:13:\"5-860x574.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:13:\"5-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:14:\"5-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("48","396","_wp_attached_file","2016/08/6.jpg"); INSERT INTO `wp_postmeta` VALUES("49","396","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:702;s:4:\"file\";s:13:\"2016/08/6.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"6-768x457.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:13:\"6-420x250.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:13:\"6-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:13:\"6-860x512.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:13:\"6-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:14:\"6-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("50","397","_wp_attached_file","2016/08/7.jpg"); INSERT INTO `wp_postmeta` VALUES("51","397","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:867;s:4:\"file\";s:13:\"2016/08/7.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"7-768x564.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:13:\"7-420x309.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:13:\"7-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:13:\"7-860x632.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:632;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:13:\"7-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:14:\"7-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("52","398","_wp_attached_file","2016/08/8.jpg"); INSERT INTO `wp_postmeta` VALUES("53","398","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:787;s:4:\"file\";s:13:\"2016/08/8.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:13:\"8-420x280.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:13:\"8-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:13:\"8-860x574.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:13:\"8-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:14:\"8-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("54","399","_wp_attached_file","2016/08/9.jpg"); INSERT INTO `wp_postmeta` VALUES("55","399","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:787;s:4:\"file\";s:13:\"2016/08/9.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:13:\"9-420x280.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:13:\"9-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:13:\"9-860x574.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:13:\"9-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:14:\"9-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("56","400","_wp_attached_file","2016/08/10.jpg"); INSERT INTO `wp_postmeta` VALUES("57","400","_wp_attachment_metadata","a:5:{s:5:\"width\";i:600;s:6:\"height\";i:867;s:4:\"file\";s:14:\"2016/08/10.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:14:\"10-420x607.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:607;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:14:\"10-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:14:\"10-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:14:\"10-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("58","401","_wp_attached_file","2016/08/11.jpg"); INSERT INTO `wp_postmeta` VALUES("59","401","_wp_attachment_metadata","a:5:{s:5:\"width\";i:643;s:6:\"height\";i:787;s:4:\"file\";s:14:\"2016/08/11.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:14:\"11-420x514.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:14:\"11-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:14:\"11-643x480.jpg\";s:5:\"width\";i:643;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:14:\"11-643x400.jpg\";s:5:\"width\";i:643;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:32:\"© Corbis. All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("60","403","_wp_attached_file","2016/08/13.jpg"); INSERT INTO `wp_postmeta` VALUES("61","403","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:787;s:4:\"file\";s:14:\"2016/08/13.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"13-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:14:\"13-420x280.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:14:\"13-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:14:\"13-860x574.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:14:\"13-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:15:\"13-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"www.fahmy.tk\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("62","404","_wp_attached_file","2016/08/14.jpg"); INSERT INTO `wp_postmeta` VALUES("63","404","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:808;s:4:\"file\";s:14:\"2016/08/14.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"14-768x526.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:526;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:14:\"14-420x288.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:14:\"14-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:14:\"14-860x589.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:589;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:14:\"14-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:15:\"14-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("64","410","_wp_attached_file","2016/09/5r.jpg"); INSERT INTO `wp_postmeta` VALUES("65","410","_wp_attachment_metadata","a:5:{s:5:\"width\";i:248;s:6:\"height\";i:120;s:4:\"file\";s:14:\"2016/09/5r.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"5r-150x120.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("66","516","_wp_attached_file","2016/08/package1-1.jpg"); INSERT INTO `wp_postmeta` VALUES("67","516","_wp_attachment_metadata","a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:22:\"2016/08/package1-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"package1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:22:\"package1-1-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:22:\"package1-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("68","517","_wp_attached_file","2016/08/package2-1.jpg"); INSERT INTO `wp_postmeta` VALUES("69","517","_wp_attachment_metadata","a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:22:\"2016/08/package2-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"package2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:22:\"package2-1-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:22:\"package2-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("70","518","_wp_attached_file","2016/08/package3-1.jpg"); INSERT INTO `wp_postmeta` VALUES("71","518","_wp_attachment_metadata","a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:22:\"2016/08/package3-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"package3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:22:\"package3-1-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:22:\"package3-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("72","519","_wp_attached_file","2016/08/package4-1.jpg"); INSERT INTO `wp_postmeta` VALUES("73","519","_wp_attachment_metadata","a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:22:\"2016/08/package4-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"package4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:22:\"package4-1-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:22:\"package4-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("74","525","_wp_attached_file","2016/08/package.jpg"); INSERT INTO `wp_postmeta` VALUES("75","525","_wp_attachment_metadata","a:5:{s:5:\"width\";i:550;s:6:\"height\";i:680;s:4:\"file\";s:19:\"2016/08/package.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"package-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:19:\"package-420x519.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:519;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:19:\"package-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:19:\"package-550x480.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:19:\"package-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("76","587","_wp_attached_file","2016/08/team1.jpg"); INSERT INTO `wp_postmeta` VALUES("77","587","_wp_attachment_metadata","a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:17:\"2016/08/team1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:17:\"team1-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("78","588","_wp_attached_file","2016/08/team2.jpg"); INSERT INTO `wp_postmeta` VALUES("79","588","_wp_attachment_metadata","a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:17:\"2016/08/team2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:17:\"team2-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("80","589","_wp_attached_file","2016/08/team3.jpg"); INSERT INTO `wp_postmeta` VALUES("81","589","_wp_attachment_metadata","a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:17:\"2016/08/team3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:17:\"team3-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("82","590","_wp_attached_file","2016/08/team4.jpg"); INSERT INTO `wp_postmeta` VALUES("83","590","_wp_attachment_metadata","a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:17:\"2016/08/team4.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:17:\"team4-400x270.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("84","592","_wp_attached_file","2016/08/package64.jpg"); INSERT INTO `wp_postmeta` VALUES("85","592","_wp_attachment_metadata","a:5:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:21:\"2016/08/package64.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("86","955","_wp_attached_file","2016/09/pr1.jpg"); INSERT INTO `wp_postmeta` VALUES("87","955","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:15:\"2016/09/pr1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"pr1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"pr1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:15:\"pr1-420x420.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:15:\"pr1-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:15:\"pr1-860x860.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:15:\"pr1-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:16:\"pr1-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("88","956","_wp_attached_file","2016/09/pr2.jpg"); INSERT INTO `wp_postmeta` VALUES("89","956","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:15:\"2016/09/pr2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"pr2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"pr2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:15:\"pr2-420x420.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:15:\"pr2-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:15:\"pr2-860x860.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:15:\"pr2-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:16:\"pr2-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("90","957","_wp_attached_file","2016/09/pr3.jpg"); INSERT INTO `wp_postmeta` VALUES("91","957","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:15:\"2016/09/pr3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"pr3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"pr3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:15:\"pr3-420x420.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:15:\"pr3-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:15:\"pr3-860x860.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:15:\"pr3-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:16:\"pr3-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("92","958","_wp_attached_file","2016/09/pr4.jpg"); INSERT INTO `wp_postmeta` VALUES("93","958","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:15:\"2016/09/pr4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"pr4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"pr4-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:15:\"pr4-420x420.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:15:\"pr4-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:15:\"pr4-860x860.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:15:\"pr4-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:16:\"pr4-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("94","959","_wp_attached_file","2016/09/pr5.jpg"); INSERT INTO `wp_postmeta` VALUES("95","959","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:15:\"2016/09/pr5.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"pr5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"pr5-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:15:\"pr5-420x420.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:15:\"pr5-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:15:\"pr5-860x860.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:15:\"pr5-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:16:\"pr5-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("96","960","_wp_attached_file","2016/09/pr6.jpg"); INSERT INTO `wp_postmeta` VALUES("97","960","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:15:\"2016/09/pr6.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"pr6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"pr6-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:15:\"pr6-420x420.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:15:\"pr6-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:15:\"pr6-860x860.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:15:\"pr6-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:16:\"pr6-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("98","961","_wp_attached_file","2016/09/pr7.jpg"); INSERT INTO `wp_postmeta` VALUES("99","961","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:15:\"2016/09/pr7.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"pr7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"pr7-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:15:\"pr7-420x420.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:15:\"pr7-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:15:\"pr7-860x860.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:15:\"pr7-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:16:\"pr7-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("100","962","_wp_attached_file","2016/09/pr8.jpg"); INSERT INTO `wp_postmeta` VALUES("101","962","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:15:\"2016/09/pr8.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"pr8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"pr8-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:15:\"pr8-420x420.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:15:\"pr8-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:15:\"pr8-860x860.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:15:\"pr8-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:16:\"pr8-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("102","963","_wp_attached_file","2016/09/pr9.jpg"); INSERT INTO `wp_postmeta` VALUES("103","963","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:15:\"2016/09/pr9.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"pr9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"pr9-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:15:\"pr9-420x420.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:15:\"pr9-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:15:\"pr9-860x860.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:15:\"pr9-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:16:\"pr9-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("104","1026","_wp_attached_file","2016/09/Money.png"); INSERT INTO `wp_postmeta` VALUES("105","1026","_wp_attachment_metadata","a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:17:\"2016/09/Money.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("106","1027","_wp_attached_file","2016/09/Company.png"); INSERT INTO `wp_postmeta` VALUES("107","1027","_wp_attachment_metadata","a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:19:\"2016/09/Company.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("108","1072","_wp_attached_file","2016/09/mapmarker.png"); INSERT INTO `wp_postmeta` VALUES("109","1072","_wp_attachment_metadata","a:5:{s:5:\"width\";i:48;s:6:\"height\";i:48;s:4:\"file\";s:21:\"2016/09/mapmarker.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("110","1177","_wp_attached_file","2016/09/slide2.jpg"); INSERT INTO `wp_postmeta` VALUES("111","1177","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:450;s:4:\"file\";s:18:\"2016/09/slide2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"slide2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"slide2-768x293.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:18:\"slide2-420x160.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:18:\"slide2-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:18:\"slide2-860x328.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:18:\"slide2-860x450.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:19:\"slide2-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:32:\"© Corbis. All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("112","1178","_wp_attached_file","2016/09/slide3.jpg"); INSERT INTO `wp_postmeta` VALUES("113","1178","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:450;s:4:\"file\";s:18:\"2016/09/slide3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"slide3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"slide3-768x293.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:18:\"slide3-420x160.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:18:\"slide3-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:18:\"slide3-860x328.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:18:\"slide3-860x450.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:19:\"slide3-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:32:\"© Corbis. All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("114","1179","_wp_attached_file","2016/09/slide4.jpg"); INSERT INTO `wp_postmeta` VALUES("115","1179","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:450;s:4:\"file\";s:18:\"2016/09/slide4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"slide4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"slide4-768x293.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:18:\"slide4-420x160.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:18:\"slide4-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:18:\"slide4-860x328.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:18:\"slide4-860x450.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:19:\"slide4-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:32:\"© Corbis. All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("116","1180","_wp_attached_file","2016/09/slide5-1.jpg"); INSERT INTO `wp_postmeta` VALUES("117","1180","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2016/09/slide5-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"slide5-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"slide5-1-768x293.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:20:\"slide5-1-420x160.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:20:\"slide5-1-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:20:\"slide5-1-860x328.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:20:\"slide5-1-860x450.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:21:\"slide5-1-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:32:\"© Corbis. All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("118","1753","_wp_attached_file","2016/09/marker-light.png"); INSERT INTO `wp_postmeta` VALUES("119","1753","_wp_attachment_metadata","a:5:{s:5:\"width\";i:48;s:6:\"height\";i:48;s:4:\"file\";s:24:\"2016/09/marker-light.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("120","1787","_wp_attached_file","2016/09/2.jpg"); INSERT INTO `wp_postmeta` VALUES("121","1787","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:787;s:4:\"file\";s:13:\"2016/09/2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:13:\"2-420x280.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:13:\"2-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:13:\"2-860x574.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:13:\"2-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:14:\"2-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:32:\"© Corbis. All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("122","1788","_wp_attached_file","2016/09/11.jpg"); INSERT INTO `wp_postmeta` VALUES("123","1788","_wp_attachment_metadata","a:5:{s:5:\"width\";i:643;s:6:\"height\";i:787;s:4:\"file\";s:14:\"2016/09/11.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:14:\"11-420x514.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:14:\"11-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:14:\"11-643x480.jpg\";s:5:\"width\";i:643;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:14:\"11-643x400.jpg\";s:5:\"width\";i:643;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:32:\"© Corbis. All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("124","1904","_wp_attached_file","2016/12/slide9.jpg"); INSERT INTO `wp_postmeta` VALUES("125","1904","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2016/12/slide9.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"slide9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"slide9-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:18:\"slide9-420x210.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:18:\"slide9-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:18:\"slide9-860x430.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:18:\"slide9-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:19:\"slide9-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("126","1905","_wp_attached_file","2016/12/slide3.jpg"); INSERT INTO `wp_postmeta` VALUES("127","1905","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2016/12/slide3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"slide3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"slide3-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:18:\"slide3-420x210.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:18:\"slide3-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:18:\"slide3-860x430.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:18:\"slide3-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:19:\"slide3-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("128","1906","_wp_attached_file","2016/12/slide4.jpg"); INSERT INTO `wp_postmeta` VALUES("129","1906","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2016/12/slide4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"slide4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"slide4-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:18:\"slide4-420x210.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:18:\"slide4-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:18:\"slide4-860x430.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:18:\"slide4-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:19:\"slide4-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("130","1907","_wp_attached_file","2016/12/slide9-1.jpg"); INSERT INTO `wp_postmeta` VALUES("131","1907","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2016/12/slide9-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"slide9-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"slide9-1-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:20:\"slide9-1-420x210.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:20:\"slide9-1-420x270.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:20:\"slide9-1-860x430.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:20:\"slide9-1-860x480.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:21:\"slide9-1-1180x400.jpg\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("132","1956","_wp_attached_file","2016/12/Untitled-62.gif"); INSERT INTO `wp_postmeta` VALUES("133","1956","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2016/12/Untitled-62.gif\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Untitled-62-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Untitled-62-768x307.gif\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:23:\"Untitled-62-420x168.gif\";s:5:\"width\";i:420;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:23:\"Untitled-62-420x270.gif\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:23:\"Untitled-62-860x344.gif\";s:5:\"width\";i:860;s:6:\"height\";i:344;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:23:\"Untitled-62-860x480.gif\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:24:\"Untitled-62-1180x400.gif\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("134","1957","_wp_attached_file","2016/12/Untitled-62-1.gif"); INSERT INTO `wp_postmeta` VALUES("135","1957","_wp_attachment_metadata","a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2016/12/Untitled-62-1.gif\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Untitled-62-1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Untitled-62-1-768x307.gif\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"bizpro_blog1\";a:4:{s:4:\"file\";s:25:\"Untitled-62-1-420x168.gif\";s:5:\"width\";i:420;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"bizpro_blog1c\";a:4:{s:4:\"file\";s:25:\"Untitled-62-1-420x270.gif\";s:5:\"width\";i:420;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"bizpro_blog2\";a:4:{s:4:\"file\";s:25:\"Untitled-62-1-860x344.gif\";s:5:\"width\";i:860;s:6:\"height\";i:344;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"bizpro_blog2c\";a:4:{s:4:\"file\";s:25:\"Untitled-62-1-860x480.gif\";s:5:\"width\";i:860;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/gif\";}s:13:\"bizpro_blog3c\";a:4:{s:4:\"file\";s:26:\"Untitled-62-1-1180x400.gif\";s:5:\"width\";i:1180;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("136","1974","_wp_attached_file","2016/12/Untitled-62-2-e1481846123122.gif"); INSERT INTO `wp_postmeta` VALUES("137","1974","_wp_attachment_metadata","a:5:{s:5:\"width\";i:150;s:6:\"height\";i:60;s:4:\"file\";s:40:\"2016/12/Untitled-62-2-e1481846123122.gif\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Untitled-62-2-e1481846123122-150x60.gif\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("138","1974","_wp_attachment_backup_sizes","a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1500;s:6:\"height\";i:600;s:4:\"file\";s:17:\"Untitled-62-2.gif\";}}"); INSERT INTO `wp_postmeta` VALUES("139","1975","_wp_attached_file","2016/12/Untitled-6-12-e1481846238400.jpg"); INSERT INTO `wp_postmeta` VALUES("140","1975","_wp_attachment_metadata","a:5:{s:5:\"width\";i:150;s:6:\"height\";i:60;s:4:\"file\";s:40:\"2016/12/Untitled-6-12-e1481846238400.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Untitled-6-12-e1481846238400-150x60.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}"); INSERT INTO `wp_postmeta` VALUES("141","1975","_wp_attachment_backup_sizes","a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1500;s:6:\"height\";i:600;s:4:\"file\";s:17:\"Untitled-6-12.jpg\";}}"); INSERT INTO `wp_postmeta` VALUES("142","1984","_wp_attached_file","2016/12/Untitled-59.gif"); INSERT INTO `wp_postmeta` VALUES("145","1974","_wp_attachment_backup_sizes","a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1500;s:6:\"height\";i:600;s:4:\"file\";s:17:\"Untitled-62-2.gif\";}}"); INSERT INTO `wp_postmeta` VALUES("146","1975","_wp_attachment_backup_sizes","a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1500;s:6:\"height\";i:600;s:4:\"file\";s:17:\"Untitled-6-12.jpg\";}}"); INSERT INTO `wp_postmeta` VALUES("147","407","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("148","407","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("149","407","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("150","407","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("151","407","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("152","407","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("153","407","_thumbnail_id","2132"); INSERT INTO `wp_postmeta` VALUES("154","407","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("155","414","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("156","414","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("157","414","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("158","414","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("159","414","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("160","414","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("161","414","_thumbnail_id","2130"); INSERT INTO `wp_postmeta` VALUES("162","414","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("163","415","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("164","415","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("165","415","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("166","415","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("167","415","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("168","415","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("169","415","_thumbnail_id","2128"); INSERT INTO `wp_postmeta` VALUES("170","415","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("171","416","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("172","416","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("173","416","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("174","416","_thumbnail_id","2127"); INSERT INTO `wp_postmeta` VALUES("175","416","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("176","416","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("177","416","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("178","416","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("179","417","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("180","417","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("181","417","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("182","417","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("183","417","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("184","417","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("185","417","_thumbnail_id","2129"); INSERT INTO `wp_postmeta` VALUES("186","417","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("187","418","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("188","418","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("189","418","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("190","418","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("191","418","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("192","418","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("193","418","_thumbnail_id","2131"); INSERT INTO `wp_postmeta` VALUES("194","418","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("195","1986","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("196","1986","_menu_item_type","custom"); INSERT INTO `wp_postmeta` VALUES("197","1986","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("198","1986","_menu_item_object_id","1986"); INSERT INTO `wp_postmeta` VALUES("199","1986","_menu_item_object","custom"); INSERT INTO `wp_postmeta` VALUES("200","1986","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("201","1986","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("202","1986","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("203","1986","_menu_item_url","#"); INSERT INTO `wp_postmeta` VALUES("204","1987","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("205","1987","_menu_item_type","custom"); INSERT INTO `wp_postmeta` VALUES("206","1987","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("207","1987","_menu_item_object_id","1987"); INSERT INTO `wp_postmeta` VALUES("208","1987","_menu_item_object","custom"); INSERT INTO `wp_postmeta` VALUES("209","1987","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("210","1987","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("211","1987","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("212","1987","_menu_item_url","#"); INSERT INTO `wp_postmeta` VALUES("213","1988","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("214","1988","_menu_item_type","custom"); INSERT INTO `wp_postmeta` VALUES("215","1988","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("216","1988","_menu_item_object_id","1988"); INSERT INTO `wp_postmeta` VALUES("217","1988","_menu_item_object","custom"); INSERT INTO `wp_postmeta` VALUES("218","1988","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("219","1988","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("220","1988","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("221","1988","_menu_item_url","#about"); INSERT INTO `wp_postmeta` VALUES("222","1989","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("223","1989","_menu_item_type","custom"); INSERT INTO `wp_postmeta` VALUES("224","1989","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("225","1989","_menu_item_object_id","1989"); INSERT INTO `wp_postmeta` VALUES("226","1989","_menu_item_object","custom"); INSERT INTO `wp_postmeta` VALUES("227","1989","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("228","1989","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("229","1989","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("230","1989","_menu_item_url","#team"); INSERT INTO `wp_postmeta` VALUES("231","1990","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("232","1990","_menu_item_type","custom"); INSERT INTO `wp_postmeta` VALUES("233","1990","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("234","1990","_menu_item_object_id","1990"); INSERT INTO `wp_postmeta` VALUES("235","1990","_menu_item_object","custom"); INSERT INTO `wp_postmeta` VALUES("236","1990","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("237","1990","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("238","1990","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("239","1990","_menu_item_url","#services"); INSERT INTO `wp_postmeta` VALUES("240","1991","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("241","1991","_menu_item_type","custom"); INSERT INTO `wp_postmeta` VALUES("242","1991","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("243","1991","_menu_item_object_id","1991"); INSERT INTO `wp_postmeta` VALUES("244","1991","_menu_item_object","custom"); INSERT INTO `wp_postmeta` VALUES("245","1991","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("246","1991","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("247","1991","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("248","1991","_menu_item_url","#works"); INSERT INTO `wp_postmeta` VALUES("249","1992","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("250","1992","_menu_item_type","custom"); INSERT INTO `wp_postmeta` VALUES("251","1992","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("252","1992","_menu_item_object_id","1992"); INSERT INTO `wp_postmeta` VALUES("253","1992","_menu_item_object","custom"); INSERT INTO `wp_postmeta` VALUES("254","1992","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("255","1992","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("256","1992","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("257","1992","_menu_item_url","#skills"); INSERT INTO `wp_postmeta` VALUES("258","1993","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("259","1993","_menu_item_type","custom"); INSERT INTO `wp_postmeta` VALUES("260","1993","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("261","1993","_menu_item_object_id","1993"); INSERT INTO `wp_postmeta` VALUES("262","1993","_menu_item_object","custom"); INSERT INTO `wp_postmeta` VALUES("263","1993","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("264","1993","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("265","1993","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("266","1993","_menu_item_url","#testimonials"); INSERT INTO `wp_postmeta` VALUES("267","1994","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("268","1994","_menu_item_type","custom"); INSERT INTO `wp_postmeta` VALUES("269","1994","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("270","1994","_menu_item_object_id","1994"); INSERT INTO `wp_postmeta` VALUES("271","1994","_menu_item_object","custom"); INSERT INTO `wp_postmeta` VALUES("272","1994","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("273","1994","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("274","1994","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("275","1994","_menu_item_url","#pricing"); INSERT INTO `wp_postmeta` VALUES("276","1995","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("277","1995","_menu_item_type","custom"); INSERT INTO `wp_postmeta` VALUES("278","1995","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("279","1995","_menu_item_object_id","1995"); INSERT INTO `wp_postmeta` VALUES("280","1995","_menu_item_object","custom"); INSERT INTO `wp_postmeta` VALUES("281","1995","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("282","1995","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("283","1995","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("284","1995","_menu_item_url","#news"); INSERT INTO `wp_postmeta` VALUES("285","1996","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("286","1996","_menu_item_type","custom"); INSERT INTO `wp_postmeta` VALUES("287","1996","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("288","1996","_menu_item_object_id","1996"); INSERT INTO `wp_postmeta` VALUES("289","1996","_menu_item_object","custom"); INSERT INTO `wp_postmeta` VALUES("290","1996","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("291","1996","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("292","1996","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("293","1996","_menu_item_url","#contact"); INSERT INTO `wp_postmeta` VALUES("294","2209","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("295","2209","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("296","2209","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("297","2209","_thumbnail_id","2210"); INSERT INTO `wp_postmeta` VALUES("298","2209","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("299","2209","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("300","2209","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("301","22","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("302","22","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("303","23","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("304","23","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("305","24","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("306","24","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("307","25","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("308","25","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("309","26","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("310","26","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("311","27","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("312","27","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("313","28","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("314","28","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("315","29","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("316","29","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("317","30","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("318","30","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("319","31","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("320","31","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("321","32","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("322","32","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("323","33","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("324","33","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("325","34","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("326","34","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("327","35","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("328","35","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("329","36","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("330","36","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("331","37","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("332","37","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("333","38","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("334","38","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("335","39","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("336","39","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("337","40","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("338","40","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("339","41","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("340","41","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("341","42","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("342","42","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("343","43","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("344","43","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("345","44","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("346","44","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("347","45","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("348","45","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("349","49","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("350","49","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("351","49","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("352","50","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("353","50","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("354","50","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("355","51","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("356","51","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("357","51","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("358","52","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("359","52","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("360","52","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("361","53","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("362","53","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("363","53","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("364","54","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("365","54","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("366","54","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("367","55","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("368","55","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("369","55","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("370","56","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("371","56","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("372","56","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("373","57","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("374","57","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("375","57","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("376","58","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("377","58","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("378","58","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("379","59","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("380","59","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("381","59","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("382","60","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("383","60","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("384","60","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("385","61","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("386","61","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("387","61","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("388","62","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("389","62","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("390","62","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("391","63","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("392","63","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("393","63","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("394","64","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("395","64","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("396","64","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("397","65","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("398","65","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("399","65","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("400","66","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("401","66","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("402","66","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("403","67","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("404","67","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("405","67","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("406","68","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("407","68","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("408","68","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("409","69","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("410","69","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("411","69","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("412","70","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("413","70","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("414","70","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("415","71","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("416","71","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("417","71","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("418","72","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("419","72","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("420","72","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("421","73","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("422","73","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("423","73","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("424","74","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("425","74","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("426","74","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("427","75","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("428","75","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("429","75","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("430","76","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("431","76","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("432","76","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("433","77","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("434","77","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("435","77","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("436","78","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("437","78","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("438","78","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("439","79","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("440","79","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("441","79","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("442","80","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("443","80","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("444","80","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("445","81","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("446","81","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("447","81","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("448","82","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("449","82","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("450","82","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("451","83","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("452","83","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("453","83","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("454","84","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("455","84","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("456","84","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("457","85","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("458","85","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("459","85","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("460","86","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("461","86","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("462","86","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("463","87","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("464","87","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("465","87","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("466","88","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("467","88","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("468","88","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("469","89","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("470","89","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("471","89","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("472","90","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("473","90","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("474","90","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("475","91","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("476","91","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("477","91","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("478","92","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("479","92","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("480","92","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("481","93","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("482","93","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("483","93","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("484","94","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("485","94","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("486","94","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("487","95","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("488","95","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("489","95","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("490","96","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("491","96","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("492","96","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("493","104","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("494","104","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("495","104","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("496","105","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("497","105","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("498","105","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("499","106","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("500","106","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("501","106","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("502","107","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("503","107","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("504","107","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("505","108","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("506","108","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("507","108","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("508","109","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("509","109","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("510","109","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("511","110","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("512","110","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("513","110","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("514","111","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("515","111","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("516","111","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("517","112","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("518","112","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("519","112","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("520","113","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("521","113","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("522","113","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("523","114","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("524","114","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("525","114","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("526","115","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("527","115","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("528","115","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("529","116","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("530","116","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("531","116","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("532","117","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("533","117","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("534","117","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("535","118","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("536","118","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("537","118","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("538","119","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("539","119","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("540","119","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("541","120","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("542","120","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("543","120","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("544","121","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("545","121","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("546","121","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("547","122","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("548","122","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("549","122","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("550","123","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("551","123","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("552","123","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("553","124","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("554","124","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("555","124","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("556","125","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("557","125","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("558","125","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("559","126","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("560","126","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("561","126","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("562","127","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("563","127","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("564","127","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("565","128","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("566","128","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("567","128","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("568","129","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("569","129","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("570","129","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("571","130","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("572","130","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("573","130","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("574","131","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("575","131","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("576","131","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("577","132","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("578","132","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("579","132","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("580","133","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("581","133","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("582","133","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("583","134","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("584","134","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("585","134","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("586","135","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("587","135","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("588","135","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("589","137","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("590","137","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("591","137","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("592","138","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("593","138","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("594","138","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("595","139","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("596","139","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("597","139","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("598","140","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("599","140","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("600","140","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("601","141","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("602","141","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("603","141","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("604","142","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("605","142","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("606","142","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("607","143","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("608","143","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("609","143","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("610","144","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("611","144","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("612","144","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("613","145","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("614","145","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("615","145","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("616","146","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("617","146","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("618","146","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("619","147","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("620","147","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("621","147","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("622","148","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("623","148","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("624","148","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("625","149","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("626","149","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("627","149","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("628","150","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("629","150","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("630","150","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("631","151","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("632","151","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("633","151","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("634","152","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("635","152","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("636","152","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("637","153","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("638","153","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("639","153","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("640","154","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("641","154","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("642","154","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("643","155","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("644","155","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("645","155","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("646","156","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("647","156","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("648","156","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("649","157","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("650","157","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("651","157","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("652","158","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("653","158","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("654","158","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("655","159","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("656","159","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("657","159","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("658","160","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("659","160","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("660","160","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("661","161","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("662","161","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("663","161","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("664","162","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("665","162","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("666","162","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("667","163","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("668","163","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("669","163","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("670","164","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("671","164","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("672","164","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("673","165","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("674","165","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("675","165","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("676","166","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("677","166","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("678","166","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("679","167","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("680","167","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("681","167","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("682","168","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("683","168","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("684","168","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("685","169","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("686","169","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("687","169","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("688","170","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("689","170","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("690","170","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("691","171","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("692","171","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("693","171","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("694","172","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("695","172","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("696","172","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("697","173","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("698","173","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("699","173","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("700","174","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("701","174","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("702","174","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("703","175","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("704","175","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("705","175","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("706","176","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("707","176","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("708","176","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("709","177","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("710","177","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("711","177","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("712","178","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("713","178","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("714","178","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("715","179","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("716","179","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("717","179","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("718","180","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("719","180","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("720","180","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("721","181","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("722","181","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("723","181","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("724","182","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("725","182","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("726","182","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("727","183","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("728","183","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("729","183","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("730","184","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("731","184","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("732","184","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("733","185","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("734","185","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("735","185","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("736","186","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("737","186","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("738","186","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("739","187","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("740","187","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("741","187","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("742","188","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("743","188","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("744","188","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("745","189","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("746","189","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("747","189","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("748","190","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("749","190","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("750","190","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("751","191","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("752","191","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("753","191","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("754","192","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("755","192","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("756","192","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("757","193","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("758","193","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("759","193","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("760","194","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("761","194","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("762","194","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("763","195","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("764","195","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("765","195","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("766","196","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("767","196","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("768","196","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("769","197","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("770","197","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("771","197","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("772","198","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("773","198","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("774","198","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("775","199","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("776","199","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("777","199","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("778","200","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("779","200","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("780","200","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("781","201","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("782","201","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("783","201","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("784","202","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("785","202","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("786","202","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("787","203","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("788","203","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("789","203","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("790","204","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("791","204","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("792","204","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("793","205","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("794","205","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("795","205","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("796","206","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("797","206","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("798","206","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("799","207","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("800","207","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("801","207","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("802","208","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("803","208","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("804","208","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("805","209","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("806","209","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("807","209","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("808","210","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("809","210","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("810","210","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("811","211","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("812","211","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("813","211","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("814","212","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("815","212","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("816","212","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("817","213","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("818","213","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("819","213","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("820","214","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("821","214","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("822","214","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("823","215","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("824","215","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("825","215","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("826","216","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("827","216","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("828","216","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("829","220","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("830","220","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("831","220","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("832","221","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("833","221","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("834","221","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("835","222","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("836","222","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("837","222","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("838","223","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("839","223","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("840","223","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("841","224","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("842","224","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("843","224","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("844","225","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("845","225","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("846","225","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("847","226","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("848","226","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("849","226","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("850","227","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("851","227","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("852","227","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("853","228","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("854","228","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("855","228","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("856","229","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("857","229","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("858","229","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("859","230","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("860","230","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("861","230","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("862","231","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("863","231","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("864","231","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("865","232","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("866","232","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("867","232","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("868","233","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("869","233","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("870","233","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("871","234","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("872","234","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("873","234","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("874","235","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("875","235","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("876","235","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("877","259","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("878","259","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("879","259","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("880","260","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("881","260","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("882","260","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("883","261","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("884","261","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("885","261","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("886","262","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("887","262","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("888","262","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("889","263","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("890","263","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("891","263","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("892","264","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("893","264","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("894","264","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("895","265","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("896","265","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("897","265","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("898","266","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("899","266","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("900","266","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("901","267","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("902","267","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("903","267","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("904","268","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("905","268","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("906","268","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("907","269","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("908","269","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("909","269","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("910","270","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("911","270","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("912","270","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("913","271","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("914","271","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("915","271","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("916","272","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("917","272","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("918","272","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("919","273","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("920","273","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("921","273","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("922","274","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("923","274","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("924","274","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("925","281","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("926","281","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("927","281","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("928","282","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("929","282","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("930","282","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("931","283","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("932","283","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("933","283","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("934","284","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("935","284","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("936","284","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("937","285","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("938","285","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("939","285","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("940","286","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("941","286","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("942","286","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("943","287","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("944","287","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("945","287","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("946","288","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("947","288","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("948","288","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("949","289","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("950","289","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("951","289","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("952","290","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("953","290","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("954","290","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("955","291","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("956","291","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("957","291","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("958","292","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("959","292","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("960","292","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("961","293","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("962","293","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("963","293","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("964","294","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("965","294","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("966","294","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("967","295","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("968","295","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("969","295","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("970","296","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("971","296","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("972","296","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("973","297","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("974","297","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("975","297","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("976","298","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("977","298","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("978","298","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("979","299","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("980","299","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("981","299","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("982","300","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("983","300","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("984","300","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("985","301","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("986","301","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("987","301","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("988","302","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("989","302","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("990","302","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("991","303","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("992","303","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("993","303","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("994","304","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("995","304","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("996","304","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("997","338","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("998","338","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("999","338","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1000","339","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1001","339","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1002","339","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1003","340","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1004","340","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1005","340","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1006","341","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1007","341","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1008","341","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1009","342","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1010","342","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1011","342","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1012","343","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1013","343","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1014","343","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1015","344","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1016","344","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1017","344","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1018","345","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1019","345","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1020","345","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1021","432","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1022","432","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1023","432","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1024","433","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1025","433","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1026","433","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1027","434","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1028","434","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1029","434","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1030","435","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1031","435","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1032","435","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1033","436","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1034","436","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1035","436","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1036","437","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1037","437","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1038","437","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1039","438","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1040","438","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1041","438","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1042","439","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1043","439","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1044","439","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1045","440","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1046","440","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1047","440","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1048","441","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1049","441","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1050","441","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1051","442","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1052","442","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1053","442","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1054","443","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1055","443","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1056","443","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1057","444","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1058","444","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1059","444","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1060","445","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1061","445","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1062","445","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1063","446","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1064","446","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1065","446","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1066","447","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1067","447","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1068","447","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1069","448","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1070","448","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1071","448","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1072","449","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1073","449","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1074","449","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1075","450","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1076","450","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1077","450","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1078","451","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1079","451","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1080","451","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1081","452","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1082","452","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1083","452","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1084","453","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1085","453","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1086","453","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1087","454","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1088","454","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1089","454","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1090","455","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1091","455","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1092","455","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1093","456","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1094","456","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1095","456","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1096","457","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1097","457","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1098","457","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1099","458","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1100","458","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1101","458","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1102","459","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1103","459","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1104","459","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1105","460","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1106","460","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1107","460","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1108","461","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1109","461","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1110","461","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1111","462","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1112","462","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1113","462","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1114","463","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1115","463","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1116","463","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1117","464","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1118","464","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1119","464","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1120","465","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1121","465","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1122","465","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1123","466","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1124","466","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1125","466","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1126","467","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1127","467","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1128","467","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1129","468","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1130","468","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1131","468","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1132","469","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1133","469","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1134","469","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1135","470","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1136","470","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1137","470","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1138","471","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1139","471","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1140","471","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1141","472","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1142","472","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1143","472","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1144","473","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1145","473","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1146","473","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1147","474","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1148","474","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1149","474","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1150","475","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1151","475","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1152","475","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1153","476","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1154","476","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1155","476","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1156","477","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1157","477","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1158","477","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1159","478","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1160","478","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1161","478","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1162","479","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1163","479","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1164","479","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1165","483","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1166","483","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1167","483","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1168","484","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1169","484","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1170","484","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1171","485","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1172","485","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1173","485","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1174","486","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1175","486","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1176","486","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1177","487","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1178","487","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1179","487","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1180","488","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1181","488","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1182","488","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1183","489","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1184","489","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1185","489","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1186","490","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1187","490","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1188","490","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1189","492","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1190","492","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1191","492","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1192","493","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1193","493","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1194","493","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1195","494","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1196","494","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1197","494","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1198","495","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1199","495","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1200","495","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1201","496","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1202","496","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1203","496","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1204","497","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1205","497","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1206","497","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1207","498","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1208","498","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1209","498","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1210","499","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1211","499","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1212","499","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1213","500","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1214","500","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1215","500","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1216","501","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1217","501","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1218","501","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1219","502","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1220","502","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1221","502","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1222","503","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1223","503","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1224","503","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1225","504","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1226","504","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1227","504","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1228","505","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1229","505","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1230","505","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1231","506","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1232","506","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1233","506","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1234","507","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1235","507","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1236","507","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1237","528","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1238","528","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1239","528","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1240","529","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1241","529","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1242","529","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1243","530","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1244","530","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1245","530","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1246","531","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1247","531","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1248","531","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1249","532","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1250","532","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1251","532","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1252","533","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1253","533","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1254","533","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1255","534","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1256","534","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1257","534","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1258","535","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1259","535","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1260","535","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1261","536","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1262","536","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1263","536","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1264","537","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1265","537","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1266","537","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1267","538","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1268","538","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1269","538","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1270","539","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1271","539","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1272","539","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1273","540","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1274","540","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1275","540","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1276","541","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1277","541","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1278","541","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1279","542","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1280","542","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1281","542","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1282","543","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1283","543","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1284","543","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1285","567","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1286","567","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1287","567","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1288","568","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1289","568","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1290","568","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1291","569","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1292","569","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1293","569","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1294","570","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1295","570","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1296","570","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1297","571","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1298","571","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1299","571","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1300","572","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1301","572","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1302","572","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1303","573","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1304","573","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1305","573","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1306","574","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1307","574","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1308","574","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1309","575","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1310","575","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1311","575","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1312","576","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1313","576","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1314","576","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1315","577","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1316","577","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1317","577","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1318","578","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1319","578","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1320","578","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1321","579","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1322","579","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1323","579","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1324","580","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1325","580","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1326","580","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1327","581","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1328","581","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1329","581","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1330","582","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1331","582","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1332","582","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1333","626","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1334","626","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1335","626","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1336","627","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1337","627","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1338","627","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1339","628","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1340","628","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1341","628","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1342","629","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1343","629","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1344","629","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1345","630","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1346","630","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1347","630","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1348","631","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1349","631","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1350","631","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1351","632","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1352","632","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1353","632","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1354","633","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1355","633","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1356","633","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1357","634","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1358","634","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1359","634","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1360","635","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1361","635","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1362","635","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1363","636","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1364","636","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1365","636","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1366","637","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1367","637","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1368","637","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1369","638","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1370","638","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1371","638","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1372","639","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1373","639","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1374","639","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1375","640","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1376","640","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1377","640","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1378","641","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1379","641","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1380","641","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1381","670","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1382","670","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1383","670","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1384","671","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1385","671","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1386","671","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1387","672","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1388","672","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1389","672","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1390","673","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1391","673","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1392","673","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1393","674","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1394","674","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1395","674","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1396","675","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1397","675","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1398","675","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1399","676","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1400","676","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1401","676","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1402","677","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1403","677","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1404","677","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1405","678","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1406","678","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1407","678","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1408","679","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1409","679","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1410","679","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1411","680","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1412","680","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1413","680","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1414","681","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1415","681","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1416","681","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1417","682","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1418","682","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1419","682","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1420","683","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1421","683","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1422","683","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1423","684","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1424","684","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1425","684","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1426","685","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1427","685","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1428","685","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1429","687","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1430","687","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1431","687","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1432","688","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1433","688","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1434","688","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1435","689","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1436","689","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1437","689","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1438","690","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1439","690","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1440","690","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1441","691","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1442","691","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1443","691","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1444","692","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1445","692","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1446","692","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1447","693","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1448","693","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1449","693","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1450","694","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1451","694","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1452","694","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1453","695","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1454","695","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1455","695","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1456","696","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1457","696","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1458","696","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1459","697","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1460","697","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1461","697","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1462","698","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1463","698","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1464","698","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1465","699","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1466","699","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1467","699","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1468","700","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1469","700","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1470","700","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1471","701","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1472","701","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1473","701","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1474","702","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1475","702","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1476","702","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1477","703","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1478","703","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1479","703","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1480","704","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1481","704","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1482","704","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1483","705","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1484","705","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1485","705","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1486","706","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1487","706","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1488","706","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1489","707","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1490","707","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1491","707","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1492","708","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1493","708","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1494","708","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1495","709","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1496","709","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1497","709","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1498","710","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1499","710","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1500","710","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1501","711","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1502","711","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1503","711","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1504","712","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1505","712","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1506","712","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1507","713","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1508","713","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1509","713","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1510","714","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1511","714","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1512","714","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1513","715","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1514","715","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1515","715","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1516","716","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1517","716","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1518","716","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1519","717","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1520","717","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1521","717","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1522","718","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1523","718","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1524","718","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1525","725","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1526","725","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1527","725","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1528","726","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1529","726","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1530","726","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1531","727","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1532","727","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1533","727","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1534","728","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1535","728","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1536","728","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1537","729","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1538","729","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1539","729","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1540","730","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1541","730","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1542","730","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1543","731","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1544","731","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1545","731","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1546","732","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1547","732","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1548","732","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1549","733","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1550","733","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1551","733","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1552","734","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1553","734","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1554","734","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1555","735","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1556","735","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1557","735","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1558","736","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1559","736","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1560","736","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1561","737","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1562","737","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1563","737","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1564","738","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1565","738","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1566","738","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1567","739","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1568","739","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1569","739","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1570","740","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1571","740","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1572","740","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1573","741","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1574","741","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1575","741","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1576","742","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1577","742","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1578","742","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1579","743","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1580","743","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1581","743","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1582","744","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1583","744","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1584","744","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1585","745","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1586","745","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1587","745","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1588","746","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1589","746","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1590","746","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1591","747","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1592","747","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1593","747","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1594","748","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1595","748","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1596","748","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1597","749","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1598","749","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1599","749","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1600","750","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1601","750","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1602","750","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1603","751","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1604","751","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1605","751","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1606","752","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1607","752","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1608","752","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1609","753","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1610","753","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1611","753","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1612","754","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1613","754","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1614","754","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1615","755","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1616","755","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1617","755","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1618","756","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1619","756","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1620","756","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1621","757","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1622","757","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1623","757","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1624","758","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1625","758","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1626","758","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1627","759","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1628","759","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1629","759","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1630","760","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1631","760","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1632","760","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1633","761","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1634","761","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1635","761","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1636","762","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1637","762","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1638","762","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1639","763","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1640","763","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1641","763","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1642","764","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1643","764","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1644","764","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1645","765","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1646","765","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1647","765","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1648","766","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1649","766","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1650","766","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1651","767","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1652","767","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1653","767","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1654","768","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1655","768","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1656","768","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1657","769","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1658","769","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1659","769","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1660","770","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1661","770","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1662","770","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1663","771","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1664","771","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1665","771","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1666","772","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1667","772","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1668","772","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1669","779","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1670","779","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1671","779","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1672","780","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1673","780","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1674","780","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1675","781","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1676","781","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1677","781","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1678","782","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1679","782","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1680","782","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1681","783","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1682","783","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1683","783","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1684","784","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1685","784","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1686","784","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1687","785","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1688","785","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1689","785","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1690","786","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1691","786","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1692","786","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1693","787","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1694","787","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1695","787","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1696","788","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1697","788","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1698","788","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1699","789","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1700","789","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1701","789","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1702","790","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1703","790","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1704","790","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1705","791","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1706","791","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1707","791","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1708","792","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1709","792","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1710","792","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1711","793","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1712","793","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1713","793","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1714","794","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1715","794","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1716","794","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1717","795","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1718","795","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1719","795","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1720","796","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1721","796","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1722","796","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1723","797","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1724","797","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1725","797","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1726","798","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1727","798","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1728","798","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1729","799","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1730","799","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1731","799","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1732","800","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1733","800","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1734","800","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1735","801","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1736","801","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1737","801","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1738","802","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1739","802","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1740","802","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1741","803","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1742","803","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1743","803","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1744","804","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1745","804","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1746","804","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1747","805","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1748","805","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1749","805","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1750","806","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1751","806","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1752","806","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1753","807","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1754","807","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1755","807","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1756","808","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1757","808","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1758","808","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1759","809","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1760","809","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1761","809","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1762","810","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1763","810","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1764","810","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1765","811","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1766","811","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1767","811","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1768","812","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1769","812","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1770","812","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1771","813","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1772","813","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1773","813","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1774","814","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1775","814","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1776","814","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1777","815","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1778","815","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1779","815","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1780","816","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1781","816","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1782","816","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1783","817","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1784","817","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1785","817","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1786","818","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1787","818","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1788","818","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1789","819","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1790","819","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1791","819","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1792","820","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1793","820","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1794","820","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1795","821","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1796","821","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1797","821","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1798","822","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1799","822","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1800","822","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1801","823","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1802","823","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1803","823","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1804","824","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1805","824","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1806","824","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1807","825","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1808","825","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1809","825","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1810","826","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1811","826","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1812","826","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1813","827","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1814","827","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1815","827","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1816","828","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1817","828","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1818","828","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1819","829","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1820","829","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1821","829","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1822","830","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1823","830","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1824","830","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1825","831","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1826","831","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1827","831","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1828","832","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1829","832","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1830","832","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1831","833","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1832","833","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1833","833","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1834","834","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1835","834","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1836","834","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1837","835","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1838","835","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1839","835","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1840","836","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1841","836","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1842","836","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1843","837","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1844","837","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1845","837","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1846","838","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1847","838","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1848","838","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1849","839","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1850","839","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1851","839","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1852","840","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1853","840","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1854","840","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1855","841","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1856","841","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1857","841","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1858","842","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1859","842","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1860","842","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1861","843","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1862","843","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1863","843","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1864","844","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1865","844","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1866","844","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1867","845","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1868","845","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1869","845","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1870","846","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1871","846","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1872","846","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1873","847","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1874","847","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1875","847","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1876","848","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1877","848","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1878","848","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1879","849","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1880","849","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1881","849","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1882","850","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1883","850","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1884","850","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1885","851","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1886","851","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1887","851","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1888","852","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1889","852","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1890","852","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1891","853","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1892","853","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1893","853","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1894","854","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1895","854","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1896","854","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1897","855","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1898","855","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1899","855","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1900","856","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1901","856","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1902","856","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1903","857","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1904","857","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1905","857","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1906","858","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1907","858","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1908","858","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1909","976","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1910","976","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1911","976","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1912","977","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1913","977","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1914","977","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1915","978","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1916","978","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1917","978","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1918","979","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1919","979","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1920","979","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1921","980","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1922","980","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1923","980","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1924","981","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1925","981","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1926","981","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1927","982","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1928","982","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1929","982","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1930","983","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1931","983","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1932","983","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1933","984","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1934","984","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1935","984","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1936","985","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1937","985","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1938","985","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1939","986","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1940","986","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1941","986","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1942","987","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1943","987","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1944","987","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1945","988","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1946","988","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1947","988","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1948","989","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1949","989","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1950","989","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1951","990","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1952","990","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1953","990","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1954","991","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1955","991","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1956","991","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1957","992","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1958","992","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1959","992","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1960","993","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1961","993","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1962","993","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1963","994","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1964","994","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1965","994","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1966","995","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1967","995","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1968","995","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1969","996","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1970","996","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1971","996","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1972","997","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1973","997","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1974","997","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1975","998","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1976","998","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1977","998","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1978","999","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1979","999","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1980","999","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1981","1000","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1982","1000","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1983","1000","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1984","1001","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1985","1001","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1986","1001","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1987","1002","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1988","1002","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1989","1002","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1990","1003","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1991","1003","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1992","1003","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1993","1004","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1994","1004","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1995","1004","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1996","1005","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1997","1005","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1998","1005","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("1999","1006","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2000","1006","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2001","1006","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2002","1007","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2003","1007","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2004","1007","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2005","1008","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2006","1008","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2007","1008","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2008","1009","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2009","1009","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2010","1009","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2011","1010","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2012","1010","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2013","1010","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2014","1011","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2015","1011","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2016","1011","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2017","1012","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2018","1012","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2019","1012","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2020","1013","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2021","1013","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2022","1013","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2023","1014","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2024","1014","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2025","1014","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2026","1015","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2027","1015","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2028","1015","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2029","1016","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2030","1016","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2031","1016","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2032","1017","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2033","1017","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2034","1017","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2035","1018","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2036","1018","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2037","1018","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2038","1019","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2039","1019","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2040","1019","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2041","1020","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2042","1020","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2043","1020","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2044","1021","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2045","1021","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2046","1021","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2047","1022","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2048","1022","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2049","1022","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2050","1023","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2051","1023","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2052","1023","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2053","1031","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2054","1031","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2055","1031","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2056","1032","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2057","1032","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2058","1032","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2059","1033","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2060","1033","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2061","1033","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2062","1034","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2063","1034","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2064","1034","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2065","1035","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2066","1035","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2067","1035","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2068","1036","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2069","1036","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2070","1036","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2071","1037","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2072","1037","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2073","1037","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2074","1038","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2075","1038","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2076","1038","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2077","1039","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2078","1039","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2079","1039","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2080","1040","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2081","1040","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2082","1040","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2083","1041","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2084","1041","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2085","1041","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2086","1042","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2087","1042","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2088","1042","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2089","1043","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2090","1043","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2091","1043","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2092","1044","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2093","1044","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2094","1044","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2095","1045","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2096","1045","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2097","1045","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2098","1046","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2099","1046","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2100","1046","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2101","1054","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2102","1054","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2103","1054","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2104","1055","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2105","1055","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2106","1055","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2107","1056","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2108","1056","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2109","1056","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2110","1057","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2111","1057","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2112","1057","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2113","1058","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2114","1058","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2115","1058","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2116","1059","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2117","1059","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2118","1059","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2119","1060","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2120","1060","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2121","1060","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2122","1061","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2123","1061","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2124","1061","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2125","1062","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2126","1062","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2127","1062","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2128","1063","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2129","1063","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2130","1063","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2131","1064","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2132","1064","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2133","1064","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2134","1065","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2135","1065","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2136","1065","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2137","1066","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2138","1066","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2139","1066","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2140","1067","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2141","1067","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2142","1067","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2143","1068","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2144","1068","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2145","1068","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2146","1069","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2147","1069","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2148","1069","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2149","1114","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2150","1114","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2151","1114","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2152","1115","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2153","1115","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2154","1115","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2155","1116","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2156","1116","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2157","1116","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2158","1117","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2159","1117","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2160","1117","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2161","1118","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2162","1118","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2163","1118","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2164","1119","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2165","1119","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2166","1119","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2167","1120","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2168","1120","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2169","1120","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2170","1121","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2171","1121","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2172","1121","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2173","1122","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2174","1122","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2175","1122","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2176","1123","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2177","1123","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2178","1123","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2179","1124","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2180","1124","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2181","1124","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2182","1125","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2183","1125","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2184","1125","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2185","1126","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2186","1126","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2187","1126","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2188","1127","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2189","1127","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2190","1127","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2191","1128","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2192","1128","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2193","1128","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2194","1129","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2195","1129","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2196","1129","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2197","1130","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2198","1130","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2199","1130","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2200","1131","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2201","1131","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2202","1131","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2203","1132","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2204","1132","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2205","1132","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2206","1133","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2207","1133","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2208","1133","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2209","1134","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2210","1134","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2211","1134","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2212","1135","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2213","1135","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2214","1135","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2215","1136","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2216","1136","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2217","1136","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2218","1137","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2219","1137","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2220","1137","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2221","1138","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2222","1138","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2223","1138","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2224","1139","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2225","1139","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2226","1139","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2227","1140","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2228","1140","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2229","1140","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2230","1141","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2231","1141","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2232","1141","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2233","1142","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2234","1142","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2235","1142","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2236","1143","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2237","1143","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2238","1143","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2239","1144","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2240","1144","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2241","1144","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2242","1145","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2243","1145","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2244","1145","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2245","1146","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2246","1146","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2247","1146","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2248","1147","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2249","1147","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2250","1147","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2251","1148","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2252","1148","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2253","1148","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2254","1149","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2255","1149","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2256","1149","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2257","1150","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2258","1150","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2259","1150","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2260","1151","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2261","1151","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2262","1151","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2263","1152","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2264","1152","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2265","1152","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2266","1153","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2267","1153","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2268","1153","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2269","1154","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2270","1154","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2271","1154","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2272","1155","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2273","1155","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2274","1155","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2275","1156","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2276","1156","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2277","1156","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2278","1157","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2279","1157","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2280","1157","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2281","1158","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2282","1158","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2283","1158","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2284","1159","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2285","1159","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2286","1159","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2287","1160","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2288","1160","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2289","1160","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2290","1161","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2291","1161","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2292","1161","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2293","1162","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2294","1162","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2295","1162","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2296","1163","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2297","1163","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2298","1163","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2299","1164","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2300","1164","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2301","1164","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2302","1165","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2303","1165","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2304","1165","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2305","1166","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2306","1166","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2307","1166","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2308","1167","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2309","1167","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2310","1167","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2311","1168","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2312","1168","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2313","1168","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2314","1169","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2315","1169","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2316","1169","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2317","1187","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2318","1187","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2319","1187","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2320","1188","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2321","1188","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2322","1188","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2323","1189","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2324","1189","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2325","1189","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2326","1190","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2327","1190","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2328","1190","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2329","1191","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2330","1191","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2331","1191","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2332","1192","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2333","1192","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2334","1192","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2335","1193","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2336","1193","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2337","1193","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2338","1194","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2339","1194","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2340","1194","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2341","1234","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2342","1234","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2343","1234","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2344","1235","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2345","1235","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2346","1235","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2347","1236","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2348","1236","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2349","1236","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2350","1237","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2351","1237","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2352","1237","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2353","1238","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2354","1238","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2355","1238","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2356","1239","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2357","1239","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2358","1239","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2359","1240","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2360","1240","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2361","1240","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2362","1241","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2363","1241","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2364","1241","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2365","1242","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2366","1242","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2367","1242","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2368","1243","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2369","1243","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2370","1243","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2371","1244","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2372","1244","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2373","1244","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2374","1245","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2375","1245","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2376","1245","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2377","1246","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2378","1246","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2379","1246","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2380","1247","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2381","1247","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2382","1247","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2383","1248","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2384","1248","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2385","1248","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2386","1249","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2387","1249","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2388","1249","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2389","1250","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2390","1250","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2391","1250","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2392","1251","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2393","1251","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2394","1251","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2395","1252","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2396","1252","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2397","1252","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2398","1253","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2399","1253","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2400","1253","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2401","1254","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2402","1254","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2403","1254","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2404","1255","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2405","1255","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2406","1255","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2407","1256","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2408","1256","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2409","1256","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2410","1257","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2411","1257","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2412","1257","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2413","1258","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2414","1258","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2415","1258","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2416","1259","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2417","1259","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2418","1259","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2419","1260","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2420","1260","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2421","1260","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2422","1261","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2423","1261","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2424","1261","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2425","1262","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2426","1262","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2427","1262","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2428","1263","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2429","1263","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2430","1263","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2431","1264","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2432","1264","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2433","1264","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2434","1265","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2435","1265","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2436","1265","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2437","1266","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2438","1266","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2439","1266","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2440","1267","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2441","1267","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2442","1267","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2443","1268","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2444","1268","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2445","1268","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2446","1269","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2447","1269","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2448","1269","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2449","1270","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2450","1270","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2451","1270","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2452","1271","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2453","1271","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2454","1271","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2455","1272","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2456","1272","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2457","1272","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2458","1273","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2459","1273","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2460","1273","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2461","1274","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2462","1274","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2463","1274","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2464","1275","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2465","1275","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2466","1275","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2467","1276","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2468","1276","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2469","1276","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2470","1277","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2471","1277","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2472","1277","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2473","1278","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2474","1278","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2475","1278","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2476","1279","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2477","1279","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2478","1279","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2479","1280","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2480","1280","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2481","1280","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2482","1281","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2483","1281","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2484","1281","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2485","1282","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2486","1282","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2487","1282","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2488","1283","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2489","1283","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2490","1283","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2491","1284","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2492","1284","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2493","1284","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2494","1285","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2495","1285","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2496","1285","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2497","1286","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2498","1286","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2499","1286","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2500","1287","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2501","1287","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2502","1287","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2503","1288","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2504","1288","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2505","1288","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2506","1289","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2507","1289","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2508","1289","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2509","1290","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2510","1290","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2511","1290","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2512","1291","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2513","1291","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2514","1291","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2515","1292","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2516","1292","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2517","1292","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2518","1293","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2519","1293","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2520","1293","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2521","1294","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2522","1294","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2523","1294","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2524","1295","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2525","1295","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2526","1295","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2527","1296","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2528","1296","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2529","1296","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2530","1297","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2531","1297","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2532","1297","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2533","1298","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2534","1298","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2535","1298","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2536","1299","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2537","1299","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2538","1299","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2539","1300","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2540","1300","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2541","1300","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2542","1301","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2543","1301","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2544","1301","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2545","1302","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2546","1302","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2547","1302","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2548","1303","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2549","1303","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2550","1303","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2551","1304","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2552","1304","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2553","1304","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2554","1305","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2555","1305","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2556","1305","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2557","1306","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2558","1306","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2559","1306","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2560","1307","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2561","1307","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2562","1307","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2563","1308","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2564","1308","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2565","1308","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2566","1309","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2567","1309","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2568","1309","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2569","1310","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2570","1310","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2571","1310","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2572","1311","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2573","1311","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2574","1311","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2575","1312","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2576","1312","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2577","1312","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2578","1313","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2579","1313","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2580","1313","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2581","1314","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2582","1314","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2583","1314","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2584","1315","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2585","1315","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2586","1315","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2587","1316","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2588","1316","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2589","1316","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2590","1317","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2591","1317","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2592","1317","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2593","1318","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2594","1318","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2595","1318","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2596","1319","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2597","1319","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2598","1319","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2599","1320","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2600","1320","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2601","1320","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2602","1321","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2603","1321","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2604","1321","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2605","1322","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2606","1322","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2607","1322","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2608","1323","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2609","1323","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2610","1323","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2611","1324","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2612","1324","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2613","1324","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2614","1325","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2615","1325","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2616","1325","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2617","1326","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2618","1326","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2619","1326","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2620","1327","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2621","1327","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2622","1327","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2623","1328","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2624","1328","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2625","1328","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2626","1329","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2627","1329","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2628","1329","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2629","1330","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2630","1330","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2631","1330","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2632","1331","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2633","1331","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2634","1331","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2635","1332","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2636","1332","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2637","1332","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2638","1333","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2639","1333","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2640","1333","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2641","1334","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2642","1334","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2643","1334","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2644","1335","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2645","1335","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2646","1335","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2647","1336","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2648","1336","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2649","1336","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2650","1337","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2651","1337","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2652","1337","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2653","1338","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2654","1338","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2655","1338","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2656","1339","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2657","1339","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2658","1339","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2659","1340","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2660","1340","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2661","1340","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2662","1341","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2663","1341","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2664","1341","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2665","1342","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2666","1342","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2667","1342","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2668","1343","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2669","1343","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2670","1343","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2671","1344","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2672","1344","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2673","1344","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2674","1345","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2675","1345","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2676","1345","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2677","1346","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2678","1346","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2679","1346","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2680","1347","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2681","1347","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2682","1347","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2683","1348","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2684","1348","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2685","1348","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2686","1349","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2687","1349","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2688","1349","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2689","1350","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2690","1350","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2691","1350","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2692","1351","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2693","1351","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2694","1351","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2695","1352","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2696","1352","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2697","1352","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2698","1353","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2699","1353","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2700","1353","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2701","1370","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2702","1370","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2703","1370","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2704","1371","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2705","1371","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2706","1371","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2707","1372","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2708","1372","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2709","1372","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2710","1373","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2711","1373","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2712","1373","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2713","1374","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2714","1374","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2715","1374","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2716","1375","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2717","1375","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2718","1375","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2719","1376","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2720","1376","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2721","1376","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2722","1377","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2723","1377","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2724","1377","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2725","1381","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2726","1381","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2727","1381","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2728","1382","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2729","1382","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2730","1382","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2731","1383","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2732","1383","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2733","1383","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2734","1384","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2735","1384","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2736","1384","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2737","1385","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2738","1385","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2739","1385","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2740","1386","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2741","1386","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2742","1386","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2743","1387","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2744","1387","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2745","1387","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2746","1388","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2747","1388","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2748","1388","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2749","1389","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2750","1389","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2751","1389","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2752","1390","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2753","1390","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2754","1390","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2755","1391","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2756","1391","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2757","1391","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2758","1392","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2759","1392","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2760","1392","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2761","1393","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2762","1393","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2763","1393","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2764","1394","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2765","1394","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2766","1394","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2767","1395","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2768","1395","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2769","1395","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2770","1396","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2771","1396","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2772","1396","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2773","1397","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2774","1397","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2775","1397","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2776","1398","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2777","1398","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2778","1398","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2779","1399","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2780","1399","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2781","1399","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2782","1400","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2783","1400","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2784","1400","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2785","1401","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2786","1401","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2787","1401","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2788","1402","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2789","1402","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2790","1402","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2791","1403","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2792","1403","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2793","1403","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2794","1404","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2795","1404","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2796","1404","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2797","1405","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2798","1405","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2799","1405","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2800","1406","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2801","1406","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2802","1406","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2803","1407","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2804","1407","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2805","1407","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2806","1408","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2807","1408","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2808","1408","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2809","1409","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2810","1409","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2811","1409","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2812","1410","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2813","1410","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2814","1410","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2815","1411","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2816","1411","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2817","1411","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2818","1412","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2819","1412","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2820","1412","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2821","1413","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2822","1413","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2823","1413","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2824","1414","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2825","1414","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2826","1414","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2827","1415","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2828","1415","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2829","1415","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2830","1416","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2831","1416","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2832","1416","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2833","1417","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2834","1417","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2835","1417","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2836","1418","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2837","1418","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2838","1418","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2839","1419","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2840","1419","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2841","1419","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2842","1420","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2843","1420","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2844","1420","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2845","1421","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2846","1421","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2847","1421","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2848","1422","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2849","1422","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2850","1422","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2851","1423","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2852","1423","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2853","1423","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2854","1424","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2855","1424","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2856","1424","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2857","1425","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2858","1425","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2859","1425","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2860","1426","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2861","1426","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2862","1426","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2863","1427","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2864","1427","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2865","1427","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2866","1428","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2867","1428","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2868","1428","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2869","1464","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2870","1464","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2871","1464","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2872","1465","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2873","1465","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2874","1465","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2875","1466","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2876","1466","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2877","1466","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2878","1467","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2879","1467","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2880","1467","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2881","1468","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2882","1468","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2883","1468","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2884","1469","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2885","1469","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2886","1469","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2887","1470","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2888","1470","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2889","1470","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2890","1471","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2891","1471","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2892","1471","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2893","1472","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2894","1472","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2895","1472","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2896","1473","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2897","1473","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2898","1473","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2899","1474","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2900","1474","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2901","1474","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2902","1475","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2903","1475","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2904","1475","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2905","1476","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2906","1476","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2907","1476","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2908","1477","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2909","1477","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2910","1477","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2911","1478","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2912","1478","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2913","1478","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2914","1479","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2915","1479","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2916","1479","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2917","1480","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2918","1480","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2919","1480","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2920","1481","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2921","1481","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2922","1481","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2923","1482","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2924","1482","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2925","1482","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2926","1483","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2927","1483","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2928","1483","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2929","1484","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2930","1484","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2931","1484","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2932","1485","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2933","1485","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2934","1485","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2935","1486","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2936","1486","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2937","1486","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2938","1487","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2939","1487","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2940","1487","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2941","1488","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2942","1488","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2943","1488","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2944","1489","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2945","1489","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2946","1489","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2947","1490","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2948","1490","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2949","1490","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2950","1491","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2951","1491","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2952","1491","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2953","1492","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2954","1492","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2955","1492","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2956","1493","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2957","1493","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2958","1493","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2959","1494","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2960","1494","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2961","1494","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2962","1495","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2963","1495","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2964","1495","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2965","1496","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2966","1496","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2967","1496","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2968","1497","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2969","1497","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2970","1497","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2971","1498","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2972","1498","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2973","1498","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2974","1499","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2975","1499","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2976","1499","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2977","1500","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2978","1500","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2979","1500","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2980","1501","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2981","1501","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2982","1501","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2983","1502","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2984","1502","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2985","1502","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2986","1503","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2987","1503","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2988","1503","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2989","1504","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2990","1504","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2991","1504","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2992","1505","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2993","1505","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2994","1505","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2995","1506","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2996","1506","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2997","1506","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2998","1507","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("2999","1507","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3000","1507","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3001","1508","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3002","1508","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3003","1508","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3004","1509","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3005","1509","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3006","1509","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3007","1510","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3008","1510","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3009","1510","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3010","1511","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3011","1511","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3012","1511","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3013","1512","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3014","1512","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3015","1512","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3016","1513","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3017","1513","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3018","1513","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3019","1514","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3020","1514","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3021","1514","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3022","1515","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3023","1515","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3024","1515","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3025","1516","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3026","1516","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3027","1516","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3028","1517","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3029","1517","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3030","1517","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3031","1518","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3032","1518","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3033","1518","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3034","1519","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3035","1519","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3036","1519","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3037","1520","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3038","1520","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3039","1520","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3040","1521","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3041","1521","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3042","1521","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3043","1522","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3044","1522","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3045","1522","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3046","1523","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3047","1523","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3048","1523","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3049","1524","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3050","1524","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3051","1524","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3052","1525","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3053","1525","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3054","1525","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3055","1526","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3056","1526","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3057","1526","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3058","1527","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3059","1527","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3060","1527","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3061","1528","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3062","1528","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3063","1528","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3064","1529","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3065","1529","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3066","1529","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3067","1530","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3068","1530","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3069","1530","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3070","1531","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3071","1531","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3072","1531","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3073","1532","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3074","1532","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3075","1532","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3076","1533","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3077","1533","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3078","1533","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3079","1534","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3080","1534","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3081","1534","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3082","1535","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3083","1535","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3084","1535","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3085","1536","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3086","1536","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3087","1536","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3088","1537","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3089","1537","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3090","1537","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3091","1538","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3092","1538","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3093","1538","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3094","1539","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3095","1539","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3096","1539","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3097","1540","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3098","1540","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3099","1540","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3100","1541","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3101","1541","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3102","1541","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3103","1542","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3104","1542","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3105","1542","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3106","1543","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3107","1543","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3108","1543","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3109","1544","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3110","1544","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3111","1544","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3112","1545","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3113","1545","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3114","1545","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3115","1546","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3116","1546","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3117","1546","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3118","1547","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3119","1547","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3120","1547","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3121","1548","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3122","1548","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3123","1548","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3124","1549","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3125","1549","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3126","1549","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3127","1550","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3128","1550","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3129","1550","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3130","1551","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3131","1551","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3132","1551","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3133","1552","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3134","1552","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3135","1552","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3136","1553","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3137","1553","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3138","1553","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3139","1554","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3140","1554","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3141","1554","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3142","1555","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3143","1555","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3144","1555","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3145","1556","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3146","1556","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3147","1556","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3148","1557","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3149","1557","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3150","1557","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3151","1558","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3152","1558","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3153","1558","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3154","1559","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3155","1559","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3156","1559","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3157","1560","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3158","1560","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3159","1560","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3160","1561","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3161","1561","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3162","1561","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3163","1562","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3164","1562","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3165","1562","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3166","1563","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3167","1563","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3168","1563","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3169","1564","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3170","1564","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3171","1564","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3172","1565","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3173","1565","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3174","1565","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3175","1566","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3176","1566","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3177","1566","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3178","1567","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3179","1567","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3180","1567","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3181","1568","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3182","1568","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3183","1568","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3184","1569","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3185","1569","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3186","1569","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3187","1570","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3188","1570","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3189","1570","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3190","1571","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3191","1571","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3192","1571","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3193","1572","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3194","1572","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3195","1572","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3196","1573","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3197","1573","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3198","1573","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3199","1574","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3200","1574","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3201","1574","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3202","1575","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3203","1575","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3204","1575","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3205","1576","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3206","1576","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3207","1576","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3208","1577","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3209","1577","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3210","1577","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3211","1578","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3212","1578","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3213","1578","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3214","1579","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3215","1579","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3216","1579","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3217","1580","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3218","1580","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3219","1580","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3220","1581","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3221","1581","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3222","1581","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3223","1582","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3224","1582","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3225","1582","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3226","1583","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3227","1583","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3228","1583","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3229","1584","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3230","1584","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3231","1584","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3232","1585","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3233","1585","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3234","1585","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3235","1586","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3236","1586","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3237","1586","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3238","1587","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3239","1587","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3240","1587","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3241","1588","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3242","1588","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3243","1588","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3244","1589","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3245","1589","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3246","1589","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3247","1590","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3248","1590","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3249","1590","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3250","1591","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3251","1591","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3252","1591","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3253","1592","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3254","1592","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3255","1592","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3256","1593","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3257","1593","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3258","1593","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3259","1594","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3260","1594","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3261","1594","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3262","1595","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3263","1595","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3264","1595","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3265","1596","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3266","1596","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3267","1596","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3268","1597","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3269","1597","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3270","1597","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3271","1598","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3272","1598","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3273","1598","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3274","1599","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3275","1599","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3276","1599","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3277","1600","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3278","1600","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3279","1600","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3280","1601","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3281","1601","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3282","1601","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3283","1602","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3284","1602","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3285","1602","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3286","1603","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3287","1603","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3288","1603","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3289","1604","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3290","1604","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3291","1604","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3292","1605","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3293","1605","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3294","1605","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3295","1606","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3296","1606","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3297","1606","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3298","1607","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3299","1607","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3300","1607","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3301","1608","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3302","1608","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3303","1608","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3304","1609","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3305","1609","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3306","1609","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3307","1610","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3308","1610","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3309","1610","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3310","1611","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3311","1611","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3312","1611","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3313","1612","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3314","1612","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3315","1612","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3316","1613","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3317","1613","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3318","1613","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3319","1614","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3320","1614","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3321","1614","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3322","1615","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3323","1615","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3324","1615","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3325","1616","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3326","1616","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3327","1616","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3328","1617","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3329","1617","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3330","1617","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3331","1618","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3332","1618","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3333","1618","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3334","1619","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3335","1619","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3336","1619","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3337","1620","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3338","1620","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3339","1620","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3340","1621","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3341","1621","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3342","1621","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3343","1622","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3344","1622","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3345","1622","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3346","1623","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3347","1623","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3348","1623","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3349","1624","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3350","1624","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3351","1624","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3352","1625","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3353","1625","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3354","1625","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3355","1626","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3356","1626","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3357","1626","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3358","1627","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3359","1627","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3360","1627","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3361","1628","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3362","1628","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3363","1628","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3364","1629","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3365","1629","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3366","1629","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3367","1630","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3368","1630","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3369","1630","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3370","1631","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3371","1631","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3372","1631","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3373","1632","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3374","1632","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3375","1632","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3376","1633","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3377","1633","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3378","1633","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3379","1634","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3380","1634","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3381","1634","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3382","1635","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3383","1635","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3384","1635","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3385","1636","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3386","1636","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3387","1636","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3388","1637","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3389","1637","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3390","1637","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3391","1638","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3392","1638","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3393","1638","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3394","1639","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3395","1639","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3396","1639","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3397","1640","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3398","1640","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3399","1640","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3400","1641","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3401","1641","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3402","1641","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3403","1642","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3404","1642","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3405","1642","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3406","1643","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3407","1643","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3408","1643","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3409","1644","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3410","1644","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3411","1644","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3412","1645","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3413","1645","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3414","1645","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3415","1646","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3416","1646","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3417","1646","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3418","1647","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3419","1647","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3420","1647","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3421","1648","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3422","1648","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3423","1648","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3424","1649","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3425","1649","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3426","1649","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3427","1650","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3428","1650","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3429","1650","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3430","1651","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3431","1651","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3432","1651","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3433","1652","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3434","1652","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3435","1652","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3436","1653","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3437","1653","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3438","1653","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3439","1654","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3440","1654","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3441","1654","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3442","1655","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3443","1655","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3444","1655","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3445","1656","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3446","1656","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3447","1656","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3448","1657","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3449","1657","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3450","1657","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3451","1658","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3452","1658","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3453","1658","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3454","1659","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3455","1659","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3456","1659","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3457","1660","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3458","1660","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3459","1660","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3460","1661","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3461","1661","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3462","1661","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3463","1662","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3464","1662","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3465","1662","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3466","1663","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3467","1663","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3468","1663","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3469","1664","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3470","1664","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3471","1664","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3472","1665","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3473","1665","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3474","1665","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3475","1666","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3476","1666","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3477","1666","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3478","1667","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3479","1667","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3480","1667","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3481","1668","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3482","1668","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3483","1668","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3484","1669","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3485","1669","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3486","1669","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3487","1670","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3488","1670","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3489","1670","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3490","1671","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3491","1671","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3492","1671","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3493","1672","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3494","1672","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3495","1672","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3496","1673","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3497","1673","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3498","1673","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3499","1674","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3500","1674","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3501","1674","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3502","1675","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3503","1675","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3504","1675","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3505","1676","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3506","1676","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3507","1676","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3508","1677","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3509","1677","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3510","1677","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3511","1678","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3512","1678","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3513","1678","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3514","1679","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3515","1679","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3516","1679","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3517","1680","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3518","1680","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3519","1680","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3520","1681","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3521","1681","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3522","1681","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3523","1682","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3524","1682","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3525","1682","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3526","1683","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3527","1683","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3528","1683","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3529","1684","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3530","1684","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3531","1684","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3532","1685","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3533","1685","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3534","1685","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3535","1686","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3536","1686","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3537","1686","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3538","1687","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3539","1687","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3540","1687","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3541","1689","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3542","1689","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3543","1689","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3544","1690","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3545","1690","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3546","1690","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3547","1691","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3548","1691","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3549","1691","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3550","1692","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3551","1692","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3552","1692","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3553","1693","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3554","1693","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3555","1693","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3556","1694","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3557","1694","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3558","1694","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3559","1695","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3560","1695","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3561","1695","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3562","1696","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3563","1696","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3564","1696","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3565","1697","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3566","1697","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3567","1697","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3568","1698","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3569","1698","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3570","1698","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3571","1699","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3572","1699","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3573","1699","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3574","1700","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3575","1700","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3576","1700","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3577","1701","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3578","1701","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3579","1701","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3580","1702","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3581","1702","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3582","1702","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3583","1703","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3584","1703","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3585","1703","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3586","1704","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3587","1704","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3588","1704","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3589","1705","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3590","1705","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3591","1705","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3592","1706","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3593","1706","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3594","1706","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3595","1707","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3596","1707","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3597","1707","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3598","1708","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3599","1708","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3600","1708","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3601","1709","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3602","1709","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3603","1709","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3604","1710","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3605","1710","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3606","1710","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3607","1711","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3608","1711","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3609","1711","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3610","1712","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3611","1712","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3612","1712","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3613","1713","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3614","1713","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3615","1713","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3616","1714","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3617","1714","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3618","1714","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3619","1715","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3620","1715","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3621","1715","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3622","1716","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3623","1716","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3624","1716","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3625","1717","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3626","1717","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3627","1717","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3628","1718","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3629","1718","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3630","1718","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3631","1719","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3632","1719","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3633","1719","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3634","1720","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3635","1720","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3636","1720","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3637","1721","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3638","1721","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3639","1721","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3640","1722","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3641","1722","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3642","1722","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3643","1723","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3644","1723","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3645","1723","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3646","1724","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3647","1724","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3648","1724","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3649","1725","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3650","1725","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3651","1725","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3652","1726","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3653","1726","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3654","1726","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3655","1727","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3656","1727","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3657","1727","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3658","1728","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3659","1728","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3660","1728","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3661","1732","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3662","1732","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3663","1732","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3664","1733","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3665","1733","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3666","1733","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3667","1734","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3668","1734","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3669","1734","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3670","1735","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3671","1735","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3672","1735","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3673","1736","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3674","1736","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3675","1736","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3676","1737","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3677","1737","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3678","1737","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3679","1738","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3680","1738","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3681","1738","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3682","1739","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3683","1739","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3684","1739","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3685","1740","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3686","1740","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3687","1740","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3688","1741","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3689","1741","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3690","1741","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3691","1742","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3692","1742","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3693","1742","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3694","1743","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3695","1743","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3696","1743","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3697","1744","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3698","1744","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3699","1744","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3700","1745","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3701","1745","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3702","1745","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3703","1746","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3704","1746","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3705","1746","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3706","1747","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3707","1747","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3708","1747","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3709","1762","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3710","1762","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3711","1762","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3712","1763","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3713","1763","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3714","1763","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3715","1764","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3716","1764","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3717","1764","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3718","1765","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3719","1765","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3720","1765","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3721","1766","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3722","1766","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3723","1766","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3724","1767","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3725","1767","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3726","1767","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3727","1768","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3728","1768","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3729","1768","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3730","1769","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3731","1769","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3732","1769","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3733","1770","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3734","1770","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3735","1770","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3736","1771","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3737","1771","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3738","1771","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3739","1772","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3740","1772","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3741","1772","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3742","1773","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3743","1773","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3744","1773","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3745","1774","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3746","1774","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3747","1774","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3748","1775","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3749","1775","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3750","1775","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3751","1776","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3752","1776","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3753","1776","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3754","1777","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3755","1777","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3756","1777","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3757","1778","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3758","1778","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3759","1778","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3760","1779","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3761","1779","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3762","1779","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3763","1780","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3764","1780","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3765","1780","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3766","1781","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3767","1781","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3768","1781","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3769","1782","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3770","1782","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3771","1782","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3772","1783","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3773","1783","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3774","1783","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3775","1784","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3776","1784","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3777","1784","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3778","1785","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3779","1785","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3780","1785","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3781","1809","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3782","1809","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3783","1809","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3784","1810","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3785","1810","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3786","1810","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3787","1811","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3788","1811","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3789","1811","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3790","1812","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3791","1812","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3792","1812","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3793","2210","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3794","2210","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3795","7","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3796","7","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3797","8","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3798","8","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3799","9","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3800","9","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3801","10","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3802","10","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3803","11","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3804","11","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3805","12","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3806","12","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3807","13","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3808","13","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3809","1813","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3810","1813","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3811","1813","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3812","1814","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3813","1814","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3814","1814","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3815","1815","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3816","1815","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3817","1815","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3818","1816","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3819","1816","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3820","1816","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3821","1888","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3822","1888","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3823","1889","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3824","1889","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3825","1890","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3826","1890","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3827","1891","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3828","1891","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3829","1892","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3830","1892","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3831","1893","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3832","1893","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3833","1894","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3834","1894","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3835","1895","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3836","1895","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3837","1896","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3838","1896","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3839","1897","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3840","1897","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3841","1898","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3842","1898","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3843","1899","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3844","1899","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3845","1900","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3846","1900","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3847","1901","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3848","1901","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3849","1902","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3850","1902","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3851","1903","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3852","1903","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3853","1908","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3854","1908","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3855","1909","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3856","1909","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3857","1910","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3858","1910","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3859","1911","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3860","1911","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3861","1912","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3862","1912","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3863","1913","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3864","1913","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3865","1914","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3866","1914","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3867","1915","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3868","1915","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3869","1916","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3870","1916","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3871","1917","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3872","1917","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3873","1918","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3874","1918","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3875","1919","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3876","1919","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3877","1920","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3878","1920","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3879","1921","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3880","1921","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3881","1922","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3882","1922","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3883","1923","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3884","1923","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3885","1924","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3886","1924","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3887","1925","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3888","1925","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3889","1926","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3890","1926","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3891","1927","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3892","1927","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3893","1928","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3894","1928","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3895","1929","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3896","1929","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3897","1930","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3898","1930","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3899","1931","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3900","1931","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3901","1932","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3902","1932","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3903","1933","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3904","1933","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3905","1934","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3906","1934","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3907","1935","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3908","1935","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3909","1936","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3910","1936","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3911","1937","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3912","1937","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3913","1938","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3914","1938","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3915","1939","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3916","1939","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3917","1940","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3918","1940","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3919","1941","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3920","1941","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3921","1942","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3922","1942","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3923","1943","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3924","1943","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3925","1944","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3926","1944","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3927","1945","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3928","1945","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3929","1946","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3930","1946","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3931","1947","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3932","1947","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3933","1948","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3934","1948","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3935","1949","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3936","1949","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3937","1950","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3938","1950","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3939","1951","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3940","1951","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3941","1952","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3942","1952","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3943","1953","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3944","1953","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3945","1954","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3946","1954","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3947","1955","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3948","1955","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3949","1958","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3950","1958","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3951","1959","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3952","1959","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3953","1960","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3954","1960","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3955","1961","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3956","1961","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3957","1962","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3958","1962","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3959","1963","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3960","1963","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3961","1964","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3962","1964","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3963","1965","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3964","1965","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3965","1966","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3966","1966","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3967","1967","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3968","1967","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3969","1968","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3970","1968","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3971","1969","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3972","1969","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3973","1970","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3974","1970","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3975","1971","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3976","1971","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3977","1972","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3978","1972","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3979","1973","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3980","1973","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3981","1976","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3982","1976","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3983","1977","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3984","1977","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3985","1978","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3986","1978","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3987","1979","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3988","1979","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3989","1980","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3990","1980","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3991","1981","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3992","1981","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3993","1982","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3994","1982","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3995","1983","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3996","1983","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3997","2211","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3998","2211","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("3999","2212","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4000","2212","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4001","2213","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4002","2213","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4003","2214","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4004","2214","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4005","2215","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4006","2215","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4007","2216","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4008","2216","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4009","2217","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4010","2217","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4011","2218","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4012","2218","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4013","1997","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4014","1997","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4015","1998","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4016","1998","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4017","1999","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4018","1999","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4019","2000","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4020","2000","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4021","2001","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4022","2001","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4023","2002","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4024","2002","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4025","2003","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4026","2003","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4027","2004","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4028","2004","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4029","2006","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4030","2006","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4031","2007","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4032","2007","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4033","2008","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4034","2008","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4035","2009","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4036","2009","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4037","2010","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4038","2010","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4039","2011","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4040","2011","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4041","2012","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4042","2012","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4043","2013","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4044","2013","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4045","2021","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4046","2021","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4047","2022","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4048","2022","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4049","2023","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4050","2023","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4051","2024","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4052","2024","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4053","2025","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4054","2025","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4055","2026","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4056","2026","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4057","2027","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4058","2027","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4059","2028","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4060","2028","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4061","2134","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4062","2134","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4063","2135","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4064","2135","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4065","2136","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4066","2136","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4067","2137","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4068","2137","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4069","2138","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4070","2138","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4071","2139","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4072","2139","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4073","2140","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4074","2140","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4075","2141","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4076","2141","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4077","2142","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4078","2142","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4079","2143","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4080","2143","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4081","2144","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4082","2144","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4083","2145","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4084","2145","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4085","2146","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4086","2146","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4087","2147","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4088","2147","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4089","2148","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4090","2148","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4091","2149","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4092","2149","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4093","2150","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4094","2150","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4095","2151","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4096","2151","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4097","2152","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4098","2152","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4099","2153","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4100","2153","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4101","2154","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4102","2154","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4103","2155","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4104","2155","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4105","2156","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4106","2156","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4107","2157","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4108","2157","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4109","2158","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4110","2158","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4111","2159","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4112","2159","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4113","2160","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4114","2160","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4115","2161","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4116","2161","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4117","2162","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4118","2162","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4119","2163","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4120","2163","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4121","2164","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4122","2164","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4123","2165","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4124","2165","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4125","2166","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4126","2166","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4127","2167","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4128","2167","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4129","2168","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4130","2168","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4131","2169","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4132","2169","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4133","2170","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4134","2170","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4135","2171","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4136","2171","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4137","2172","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4138","2172","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4139","2173","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4140","2173","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4141","2174","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4142","2174","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4143","2175","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4144","2175","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4145","2176","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4146","2176","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4147","2177","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4148","2177","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4149","2178","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4150","2178","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4151","2179","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4152","2179","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4153","2180","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4154","2180","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4155","2181","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4156","2181","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4157","2184","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4158","2184","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4159","2185","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4160","2185","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4161","2186","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4162","2186","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4163","2187","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4164","2187","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4165","2188","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4166","2188","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4167","2189","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4168","2189","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4169","2190","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4170","2190","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4171","2191","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4172","2191","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4173","2192","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4174","2192","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4175","2193","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4176","2193","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4177","2194","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4178","2194","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4179","2195","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4180","2195","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4181","2196","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4182","2196","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4183","2197","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4184","2197","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4185","2198","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4186","2198","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4187","2199","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4188","2199","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4189","2200","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4190","2200","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4191","2201","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4192","2201","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4193","2202","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4194","2202","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4195","2203","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4196","2203","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4197","2204","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4198","2204","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4199","2205","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4200","2205","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4201","2206","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4202","2206","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4203","2207","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4204","2207","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4205","2371","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4206","2371","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4207","2372","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4208","2372","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4209","2373","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4210","2373","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4211","2374","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4212","2374","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4213","2375","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4214","2375","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4215","2376","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4216","2376","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4217","2377","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4218","2377","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4219","2378","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4220","2378","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4221","2379","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4222","2379","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4223","2380","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4224","2380","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4225","2381","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4226","2381","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4227","2382","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4228","2382","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4229","2383","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4230","2383","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4231","2384","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4232","2384","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4233","2385","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4234","2385","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4235","2386","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4236","2386","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4237","2387","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4238","2387","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4239","2388","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4240","2388","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4241","2389","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4242","2389","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4243","2390","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4244","2390","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4245","2391","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4246","2391","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4247","2392","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4248","2392","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4249","2393","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4250","2393","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4251","2394","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4252","2394","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4253","2454","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4254","2454","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4255","2455","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4256","2455","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4257","2456","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4258","2456","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4259","2457","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4260","2457","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4261","2458","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4262","2458","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4263","2459","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4264","2459","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4265","2460","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4266","2460","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4267","2461","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4268","2461","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4269","2463","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4270","2463","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4271","2464","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4272","2464","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4273","2465","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4274","2465","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4275","2466","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4276","2466","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4277","2467","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4278","2467","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4279","2468","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4280","2468","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4281","2469","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4282","2469","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4283","2470","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4284","2470","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4285","2472","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4286","2472","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4287","2473","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4288","2473","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4289","2474","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4290","2474","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4291","2475","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4292","2475","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4293","2476","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4294","2476","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4295","2477","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4296","2477","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4297","2478","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4298","2478","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4299","2479","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4300","2479","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4301","2481","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4302","2481","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4303","2482","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4304","2482","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4305","2483","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4306","2483","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4307","2484","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4308","2484","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4309","2485","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4310","2485","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4311","2486","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4312","2486","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4313","2487","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4314","2487","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4315","2488","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4316","2488","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4317","2490","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4318","2490","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4319","2491","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4320","2491","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4321","2492","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4322","2492","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4323","2493","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4324","2493","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4325","2494","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4326","2494","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4327","2495","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4328","2495","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4329","2496","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4330","2496","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4331","2497","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4332","2497","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4333","2499","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4334","2499","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4335","2500","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4336","2500","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4337","2501","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4338","2501","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4339","2502","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4340","2502","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4341","2503","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4342","2503","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4343","2504","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4344","2504","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4345","2505","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4346","2505","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4347","2506","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4348","2506","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4349","2508","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4350","2508","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4351","2509","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4352","2509","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4353","2510","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4354","2510","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4355","2511","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4356","2511","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4357","2512","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4358","2512","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4359","2513","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4360","2513","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4361","2514","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4362","2514","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4363","2515","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4364","2515","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4365","2516","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4366","2516","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4367","2517","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4368","2517","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4369","2518","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4370","2518","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4371","2519","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4372","2519","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4373","2520","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4374","2520","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4375","2521","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4376","2521","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4377","2522","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4378","2522","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4379","2523","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4380","2523","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4381","2524","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4382","2524","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4383","2525","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4384","2525","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4385","2526","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4386","2526","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4387","2527","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4388","2527","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4389","2528","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4390","2528","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4391","2529","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4392","2529","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4393","2530","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4394","2530","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4395","2531","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4396","2531","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4397","2534","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4398","2534","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4399","2535","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4400","2535","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4401","2536","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4402","2536","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4403","2537","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4404","2537","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4405","2538","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4406","2538","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4407","2539","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4408","2539","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4409","2540","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4410","2540","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4411","2541","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4412","2541","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4413","2543","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4414","2543","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4415","2544","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4416","2544","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4417","2545","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4418","2545","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4419","2546","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4420","2546","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4421","2547","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4422","2547","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4423","2548","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4424","2548","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4425","2549","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4426","2549","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4427","2550","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4428","2550","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4429","2551","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4430","2551","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4431","2552","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4432","2552","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4433","2553","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4434","2553","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4435","2554","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4436","2554","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4437","2555","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4438","2555","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4439","2556","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4440","2556","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4441","2557","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4442","2557","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4443","2558","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4444","2558","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4445","2559","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4446","2559","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4447","2560","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4448","2560","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4449","2561","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4450","2561","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4451","2562","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4452","2562","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4453","2563","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4454","2563","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4455","2564","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4456","2564","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4457","2565","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4458","2565","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4459","2566","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4460","2566","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4461","2567","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4462","2567","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4463","2568","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4464","2568","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4465","2569","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4466","2569","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4467","2570","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4468","2570","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4469","2571","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4470","2571","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4471","2572","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4472","2572","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4473","2573","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4474","2573","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4475","2574","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4476","2574","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4477","2575","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4478","2575","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4479","2576","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4480","2576","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4481","2577","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4482","2577","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4483","2578","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4484","2578","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4485","2579","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4486","2579","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4487","2580","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4488","2580","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4489","2581","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4490","2581","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4491","2582","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4492","2582","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4493","2583","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4494","2583","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4495","2584","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4496","2584","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4497","2585","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4498","2585","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4499","2586","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4500","2586","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4501","2587","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4502","2587","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4503","2588","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4504","2588","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4505","2589","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4506","2589","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4507","2590","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4508","2590","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4509","2591","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4510","2591","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4511","2592","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4512","2592","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4513","2593","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4514","2593","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4515","2594","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4516","2594","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4517","2595","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4518","2595","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4519","2596","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4520","2596","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4521","2597","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4522","2597","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4523","2598","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4524","2598","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4525","2599","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4526","2599","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4527","2600","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4528","2600","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4529","2601","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4530","2601","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4531","2602","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4532","2602","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4533","2603","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4534","2603","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4535","2604","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4536","2604","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4537","2605","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4538","2605","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4539","2606","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4540","2606","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4541","2607","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4542","2607","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4543","2608","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4544","2608","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4545","2609","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4546","2609","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4547","2610","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4548","2610","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4549","2611","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4550","2611","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4551","2612","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4552","2612","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4553","2613","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4554","2613","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4555","2614","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4556","2614","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4557","2615","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4558","2615","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4559","2616","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4560","2616","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4561","2617","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4562","2617","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4563","2618","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4564","2618","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4565","2619","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4566","2619","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4567","2620","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4568","2620","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4569","2621","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4570","2621","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4571","2622","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4572","2622","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4573","2624","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4574","2624","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4575","2625","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4576","2625","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4577","2626","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4578","2626","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4579","2627","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4580","2627","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4581","2628","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4582","2628","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4583","2629","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4584","2629","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4585","2630","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4586","2630","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4587","2631","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4588","2631","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4589","2633","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4590","2633","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4591","2634","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4592","2634","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4593","2635","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4594","2635","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4595","2636","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4596","2636","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4597","2637","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4598","2637","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4599","2638","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4600","2638","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4601","2639","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4602","2639","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4603","2640","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4604","2640","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4605","2641","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4606","2641","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4607","2642","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4608","2642","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4609","2643","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4610","2643","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4611","2644","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4612","2644","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4613","2645","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4614","2645","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4615","2646","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4616","2646","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4617","2647","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4618","2647","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4619","2648","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4620","2648","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4621","2650","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4622","2650","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4623","2651","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4624","2651","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4625","2652","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4626","2652","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4627","2653","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4628","2653","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4629","2654","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4630","2654","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4631","2655","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4632","2655","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4633","2656","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4634","2656","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4635","2657","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4636","2657","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4637","2658","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4638","2658","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4639","2659","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4640","2659","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4641","2660","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4642","2660","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4643","2661","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4644","2661","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4645","2662","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4646","2662","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4647","2663","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4648","2663","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4649","2664","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4650","2664","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4651","2665","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4652","2665","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4653","2667","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4654","2667","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4655","2668","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4656","2668","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4657","2669","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4658","2669","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4659","2670","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4660","2670","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4661","2671","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4662","2671","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4663","2672","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4664","2672","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4665","2673","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4666","2673","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4667","2674","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4668","2674","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4669","2675","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4670","2675","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4671","2676","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4672","2676","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4673","2677","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4674","2677","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4675","2678","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4676","2678","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4677","2679","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4678","2679","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4679","2680","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4680","2680","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4681","2681","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4682","2681","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4683","2682","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4684","2682","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4685","2684","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4686","2684","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4687","2685","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4688","2685","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4689","2686","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4690","2686","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4691","2687","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4692","2687","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4693","2688","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4694","2688","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4695","2689","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4696","2689","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4697","2690","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4698","2690","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4699","2691","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4700","2691","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4701","2693","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4702","2693","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4703","2694","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4704","2694","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4705","2695","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4706","2695","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4707","2696","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4708","2696","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4709","2697","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4710","2697","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4711","2698","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4712","2698","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4713","2699","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4714","2699","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4715","2700","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4716","2700","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4717","2702","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4718","2702","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4719","2703","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4720","2703","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4721","2704","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4722","2704","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4723","2705","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4724","2705","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4725","2706","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4726","2706","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4727","2707","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4728","2707","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4729","2708","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4730","2708","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4731","2709","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4732","2709","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4733","2710","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4734","2710","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4735","2711","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4736","2711","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4737","2712","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4738","2712","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4739","2713","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4740","2713","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4741","2714","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4742","2714","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4743","2715","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4744","2715","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4745","2716","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4746","2716","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4747","2717","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4748","2717","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4749","2718","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4750","2718","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4751","2719","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4752","2719","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4753","2720","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4754","2720","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4755","2721","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4756","2721","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4757","2722","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4758","2722","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4759","2723","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4760","2723","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4761","2724","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4762","2724","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4763","2725","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4764","2725","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4765","2726","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4766","2726","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4767","2727","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4768","2727","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4769","2728","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4770","2728","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4771","2729","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4772","2729","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4773","2730","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4774","2730","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4775","2731","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4776","2731","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4777","2732","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4778","2732","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4779","2733","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4780","2733","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4781","2735","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4782","2735","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4783","2736","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4784","2736","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4785","2737","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4786","2737","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4787","2738","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4788","2738","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4789","2739","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4790","2739","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4791","2740","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4792","2740","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4793","2741","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4794","2741","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4795","2742","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4796","2742","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4797","2745","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4798","2745","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4799","2746","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4800","2746","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4801","2747","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4802","2747","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4803","2748","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4804","2748","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4805","2749","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4806","2749","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4807","2750","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4808","2750","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4809","2751","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4810","2751","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4811","2752","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4812","2752","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4813","2754","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4814","2754","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4815","2755","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4816","2755","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4817","2756","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4818","2756","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4819","2757","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4820","2757","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4821","2758","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4822","2758","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4823","2759","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4824","2759","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4825","2760","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4826","2760","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4827","2761","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4828","2761","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4829","2763","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4830","2763","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4831","2764","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4832","2764","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4833","2765","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4834","2765","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4835","2766","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4836","2766","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4837","2767","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4838","2767","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4839","2768","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4840","2768","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4841","2769","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4842","2769","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4843","2770","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4844","2770","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4845","2772","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4846","2772","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4847","2773","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4848","2773","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4849","2774","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4850","2774","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4851","2775","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4852","2775","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4853","2776","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4854","2776","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4855","2777","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4856","2777","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4857","2778","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4858","2778","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4859","2779","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4860","2779","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4861","2781","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4862","2781","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4863","2782","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4864","2782","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4865","2783","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4866","2783","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4867","2784","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4868","2784","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4869","2785","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4870","2785","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4871","2786","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4872","2786","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4873","2787","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4874","2787","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4875","2788","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4876","2788","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4877","2792","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4878","2792","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4879","2793","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4880","2793","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4881","2794","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4882","2794","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4883","2795","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4884","2795","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4885","2796","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4886","2796","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4887","2797","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4888","2797","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4889","2798","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4890","2798","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4891","2799","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4892","2799","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4893","2800","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4894","2800","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4895","2801","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4896","2801","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4897","2802","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4898","2802","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4899","2803","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4900","2803","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4901","2804","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4902","2804","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4903","2805","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4904","2805","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4905","2806","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4906","2806","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4907","2807","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4908","2807","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4909","2808","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4910","2808","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4911","2809","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4912","2809","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4913","2810","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4914","2810","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4915","2811","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4916","2811","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4917","2812","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4918","2812","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4919","2813","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4920","2813","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4921","2814","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4922","2814","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4923","2815","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4924","2815","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4925","2816","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4926","2816","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4927","2817","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4928","2817","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4929","2818","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4930","2818","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4931","2819","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4932","2819","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4933","2820","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4934","2820","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4935","2821","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4936","2821","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4937","2822","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4938","2822","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4939","2823","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4940","2823","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4941","2824","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4942","2824","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4943","2825","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4944","2825","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4945","2826","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4946","2826","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4947","2827","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4948","2827","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4949","2828","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4950","2828","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4951","2829","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4952","2829","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4953","2830","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4954","2830","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4955","2831","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4956","2831","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4957","2832","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4958","2832","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4959","2833","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4960","2833","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4961","2834","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4962","2834","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4963","2835","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4964","2835","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4965","2836","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4966","2836","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4967","2837","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4968","2837","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4969","2838","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4970","2838","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4971","2839","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4972","2839","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4973","2840","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4974","2840","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4975","2841","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4976","2841","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4977","2842","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4978","2842","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4979","2843","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4980","2843","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4981","2844","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4982","2844","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4983","2845","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4984","2845","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4985","2846","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4986","2846","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4987","2847","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4988","2847","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4989","2848","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4990","2848","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4991","2849","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4992","2849","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4993","2850","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4994","2850","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4995","2851","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4996","2851","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4997","2852","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4998","2852","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("4999","2853","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5000","2853","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5001","2854","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5002","2854","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5003","2855","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5004","2855","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5005","2861","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5006","2861","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5007","2862","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5008","2862","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5009","2863","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5010","2863","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5011","2864","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5012","2864","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5013","2865","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5014","2865","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5015","2866","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5016","2866","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5017","2867","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5018","2867","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5019","2868","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5020","2868","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5021","2870","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5022","2870","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5023","2871","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5024","2871","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5025","2872","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5026","2872","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5027","2873","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5028","2873","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5029","2874","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5030","2874","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5031","2875","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5032","2875","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5033","2876","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5034","2876","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5035","2877","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5036","2877","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5037","4","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5038","4","_wpb_shortcodes_custom_css",".vc_custom_1473104552943{margin-top: -115px !important;}.vc_custom_1473022964624{background-color: #099aad !important;}.vc_custom_1473170988004{background-color: #099aad !important;}.vc_custom_1474329284117{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1474329284117{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}"); INSERT INTO `wp_postmeta` VALUES("5039","4","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5040","4","_wpb_shortcodes_custom_css",".vc_custom_1473104552943{margin-top: -115px !important;}.vc_custom_1473022964624{background-color: #099aad !important;}.vc_custom_1473170988004{background-color: #099aad !important;}.vc_custom_1474329284117{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1474329284117{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}"); INSERT INTO `wp_postmeta` VALUES("5041","4","bizpro_fixed_header","1"); INSERT INTO `wp_postmeta` VALUES("5042","4","bizpro_title","fullscreen"); INSERT INTO `wp_postmeta` VALUES("5043","4","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5044","4","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5045","4","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5046","4","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5047","4","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5048","4","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5049","4","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5050","4","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5051","4","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5052","4","_wpb_vc_js_status","true"); INSERT INTO `wp_postmeta` VALUES("5053","4","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5054","4","_wpb_shortcodes_custom_css",".vc_custom_1473104552943{margin-top: -115px !important;}.vc_custom_1473022964624{background-color: #099aad !important;}.vc_custom_1473170988004{background-color: #099aad !important;}.vc_custom_1474329284117{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1474329284117{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}"); INSERT INTO `wp_postmeta` VALUES("5055","4","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5056","4","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5057","4","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("5058","1804","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5059","1804","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5060","1804","_wp_page_template","default"); INSERT INTO `wp_postmeta` VALUES("5061","1805","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5062","1805","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5063","1805","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5064","1805","bizpro_title","cpmb_roundabout"); INSERT INTO `wp_postmeta` VALUES("5065","1805","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5066","1805","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5067","1805","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5068","1805","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5069","1805","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5070","1805","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5071","1805","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5072","1805","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5073","1805","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5074","1805","_wpb_vc_js_status","true"); INSERT INTO `wp_postmeta` VALUES("5075","1805","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5076","1805","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5077","1805","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5078","1805","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("5079","1806","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5080","1806","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5081","1806","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5082","1806","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5083","1806","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5084","1806","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5085","1806","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5086","1806","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5087","1806","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5088","1806","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5089","1806","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5090","1806","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5091","1806","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5092","1806","_wpb_vc_js_status","true"); INSERT INTO `wp_postmeta` VALUES("5093","1806","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5094","1806","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5095","1806","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5096","1806","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("5097","2878","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5098","2878","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5099","2879","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5100","2879","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5101","2880","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5102","2880","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5103","2881","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5104","2881","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5105","2882","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5106","2882","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5107","2883","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5108","2883","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5109","2884","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5110","2884","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5111","2885","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5112","2885","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5113","2887","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5114","2887","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5115","2888","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5116","2888","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5117","2889","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5118","2889","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5119","2890","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5120","2890","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5121","2891","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5122","2891","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5123","2892","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5124","2892","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5125","2893","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5126","2893","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5127","2894","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5128","2894","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5129","14","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5130","14","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5131","14","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5132","14","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5133","14","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5134","14","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5135","14","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5136","14","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5137","14","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5138","14","bizpro_portfolio_crop","1"); INSERT INTO `wp_postmeta` VALUES("5139","14","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5140","14","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5141","14","_wp_page_template","portfolio3.php"); INSERT INTO `wp_postmeta` VALUES("5142","14","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5143","14","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5144","14","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5145","14","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5146","14","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5147","14","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("5148","14","bizpro_portfoliocat","all"); INSERT INTO `wp_postmeta` VALUES("5149","14","bizpro_portfoliocat","28"); INSERT INTO `wp_postmeta` VALUES("5150","14","bizpro_portfoliocat","26"); INSERT INTO `wp_postmeta` VALUES("5151","14","bizpro_portfoliocat","36"); INSERT INTO `wp_postmeta` VALUES("5152","14","bizpro_portfoliocat","29"); INSERT INTO `wp_postmeta` VALUES("5153","14","bizpro_portfoliocat","25"); INSERT INTO `wp_postmeta` VALUES("5154","14","bizpro_portfoliocat","27"); INSERT INTO `wp_postmeta` VALUES("5155","583","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5156","583","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5157","583","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5158","583","_wp_page_template","blog-large.php"); INSERT INTO `wp_postmeta` VALUES("5159","583","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5160","583","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5161","583","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5162","583","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5163","583","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5164","583","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5165","583","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5166","583","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5167","583","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5168","583","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5169","583","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5170","583","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5171","583","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5172","583","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5173","597","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5174","597","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5175","597","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5176","597","_wp_page_template","blog-medium.php"); INSERT INTO `wp_postmeta` VALUES("5177","597","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5178","597","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5179","597","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5180","597","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5181","597","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5182","597","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5183","597","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5184","597","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5185","597","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5186","597","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5187","597","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5188","597","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5189","597","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5190","597","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5191","599","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5192","599","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5193","599","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5194","599","_wp_page_template","blog-small.php"); INSERT INTO `wp_postmeta` VALUES("5195","599","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5196","599","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5197","599","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5198","599","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5199","599","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5200","599","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5201","599","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5202","599","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5203","599","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5204","599","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5205","599","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5206","599","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5207","599","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5208","599","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5209","601","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5210","601","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5211","601","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5212","601","_wp_page_template","blog-both-sidebars.php"); INSERT INTO `wp_postmeta` VALUES("5213","601","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5214","601","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5215","601","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5216","601","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5217","601","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5218","601","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5219","601","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5220","601","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5221","601","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5222","601","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5223","601","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5224","601","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5225","601","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5226","601","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5227","604","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5228","604","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5229","604","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5230","604","_wp_page_template","blog-both-sidebars-right.php"); INSERT INTO `wp_postmeta` VALUES("5231","604","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5232","604","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5233","604","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5234","604","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5235","604","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5236","604","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5237","604","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5238","604","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5239","604","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5240","604","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5241","604","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5242","604","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5243","604","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5244","604","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5245","606","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5246","606","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5247","606","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5248","606","_wp_page_template","blog-both-sidebars-left.php"); INSERT INTO `wp_postmeta` VALUES("5249","606","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5250","606","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5251","606","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5252","606","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5253","606","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5254","606","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5255","606","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5256","606","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5257","606","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5258","606","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5259","606","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5260","606","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5261","606","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5262","606","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5263","608","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5264","608","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5265","608","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5266","608","_wp_page_template","blog-1eo.php"); INSERT INTO `wp_postmeta` VALUES("5267","608","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5268","608","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5269","608","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5270","608","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5271","608","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5272","608","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5273","608","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5274","608","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5275","608","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5276","608","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5277","608","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5278","608","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5279","608","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5280","608","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5281","610","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5282","610","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5283","610","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5284","610","_wp_page_template","blog-2-columns.php"); INSERT INTO `wp_postmeta` VALUES("5285","610","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5286","610","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5287","610","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5288","610","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5289","610","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5290","610","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5291","610","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5292","610","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5293","610","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5294","610","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5295","610","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5296","610","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5297","610","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5298","610","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5299","612","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5300","612","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5301","612","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5302","612","_wp_page_template","blog-3-columns.php"); INSERT INTO `wp_postmeta` VALUES("5303","612","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5304","612","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5305","612","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5306","612","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5307","612","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5308","612","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5309","612","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5310","612","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5311","612","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5312","612","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5313","612","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5314","612","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5315","612","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5316","612","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5317","614","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5318","614","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5319","614","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5320","614","_wp_page_template","blog-full-wide.php"); INSERT INTO `wp_postmeta` VALUES("5321","614","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5322","614","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5323","614","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5324","614","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5325","614","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5326","614","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5327","614","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5328","614","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5329","614","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5330","614","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5331","614","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5332","614","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5333","614","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5334","614","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5335","643","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5336","643","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5337","643","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5338","643","_wp_page_template","portfolio1.php"); INSERT INTO `wp_postmeta` VALUES("5339","643","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5340","643","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5341","643","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5342","643","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5343","643","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5344","643","bizpro_portfolio_style","style2"); INSERT INTO `wp_postmeta` VALUES("5345","643","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5346","643","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5347","643","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5348","643","bizpro_portfolio_crop","1"); INSERT INTO `wp_postmeta` VALUES("5349","643","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5350","643","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5351","643","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5352","643","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5353","645","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5354","645","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5355","645","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5356","645","_wp_page_template","portfolio2.php"); INSERT INTO `wp_postmeta` VALUES("5357","645","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5358","645","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5359","645","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5360","645","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5361","645","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5362","645","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5363","645","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5364","645","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5365","645","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5366","645","bizpro_portfolio_crop","1"); INSERT INTO `wp_postmeta` VALUES("5367","645","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5368","645","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5369","645","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5370","645","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5371","647","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5372","647","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5373","647","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5374","647","_wp_page_template","portfolio3.php"); INSERT INTO `wp_postmeta` VALUES("5375","647","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5376","647","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5377","647","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5378","647","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5379","647","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5380","647","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5381","647","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5382","647","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5383","647","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5384","647","bizpro_portfolio_crop","1"); INSERT INTO `wp_postmeta` VALUES("5385","647","bizpro_portfolio_greyscale","1"); INSERT INTO `wp_postmeta` VALUES("5386","647","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5387","647","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5388","647","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5389","649","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5390","649","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5391","649","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5392","649","_wp_page_template","portfolio4.php"); INSERT INTO `wp_postmeta` VALUES("5393","649","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5394","649","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5395","649","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5396","649","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5397","649","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5398","649","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5399","649","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5400","649","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5401","649","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5402","649","bizpro_portfolio_crop","1"); INSERT INTO `wp_postmeta` VALUES("5403","649","bizpro_portfolio_greyscale","1"); INSERT INTO `wp_postmeta` VALUES("5404","649","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5405","649","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5406","649","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5407","651","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5408","651","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5409","651","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5410","651","_wp_page_template","portfolio2-masonry.php"); INSERT INTO `wp_postmeta` VALUES("5411","651","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5412","651","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5413","651","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5414","651","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5415","651","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5416","651","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5417","651","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5418","651","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5419","651","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5420","651","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5421","651","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5422","651","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5423","651","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5424","651","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5425","653","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5426","653","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5427","653","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5428","653","_wp_page_template","portfolio3-masonry.php"); INSERT INTO `wp_postmeta` VALUES("5429","653","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5430","653","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5431","653","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5432","653","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5433","653","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5434","653","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5435","653","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5436","653","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5437","653","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5438","653","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5439","653","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5440","653","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5441","653","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5442","653","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5443","655","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5444","655","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5445","655","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5446","655","_wp_page_template","portfolio4-masonry.php"); INSERT INTO `wp_postmeta` VALUES("5447","655","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5448","655","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5449","655","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5450","655","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5451","655","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5452","655","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5453","655","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5454","655","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5455","655","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5456","655","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5457","655","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5458","655","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5459","655","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5460","655","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5461","1807","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5462","1807","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5463","1807","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5464","1807","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5465","1807","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5466","1807","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5467","1807","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5468","1807","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5469","1807","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5470","1807","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5471","1807","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5472","1807","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5473","1807","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5474","1807","_wpb_vc_js_status","true"); INSERT INTO `wp_postmeta` VALUES("5475","1807","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5476","1807","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5477","1807","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5478","1807","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("5479","1808","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5480","1808","_wpb_shortcodes_custom_css",".vc_custom_1475030101400{background-color: #cccccc !important;}"); INSERT INTO `wp_postmeta` VALUES("5481","1808","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5482","1808","_wpb_shortcodes_custom_css",".vc_custom_1475030101400{background-color: #cccccc !important;}"); INSERT INTO `wp_postmeta` VALUES("5483","1808","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5484","1808","bizpro_title","cpmb_liteaccordion"); INSERT INTO `wp_postmeta` VALUES("5485","1808","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5486","1808","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5487","1808","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5488","1808","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5489","1808","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5490","1808","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5491","1808","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5492","1808","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5493","1808","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5494","1808","_wpb_vc_js_status","true"); INSERT INTO `wp_postmeta` VALUES("5495","1808","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5496","1808","_wpb_shortcodes_custom_css",".vc_custom_1475030101400{background-color: #cccccc !important;}"); INSERT INTO `wp_postmeta` VALUES("5497","1808","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5498","1808","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5499","1808","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("5500","657","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5501","657","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5502","657","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5503","657","_wp_page_template","portfolio5-masonry.php"); INSERT INTO `wp_postmeta` VALUES("5504","657","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5505","657","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5506","657","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5507","657","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5508","657","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5509","657","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5510","657","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5511","657","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5512","657","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5513","657","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5514","657","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5515","657","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5516","657","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5517","657","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5518","659","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5519","659","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5520","659","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5521","659","_wp_page_template","portfolio2m.php"); INSERT INTO `wp_postmeta` VALUES("5522","659","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5523","659","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5524","659","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5525","659","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5526","659","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5527","659","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5528","659","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5529","659","bizpro_portfolio_cat","1"); INSERT INTO `wp_postmeta` VALUES("5530","659","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5531","659","bizpro_portfolio_crop","1"); INSERT INTO `wp_postmeta` VALUES("5532","659","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5533","659","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5534","659","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5535","659","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5536","719","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5537","719","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5538","719","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5539","719","_wp_page_template","portfolio3.php"); INSERT INTO `wp_postmeta` VALUES("5540","719","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5541","719","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5542","719","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5543","719","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5544","719","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5545","719","bizpro_portfolio_style","style2"); INSERT INTO `wp_postmeta` VALUES("5546","719","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5547","719","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5548","719","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5549","719","bizpro_portfolio_crop","1"); INSERT INTO `wp_postmeta` VALUES("5550","719","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5551","719","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5552","719","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5553","719","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5554","721","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5555","721","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5556","721","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5557","721","_wp_page_template","portfolio4.php"); INSERT INTO `wp_postmeta` VALUES("5558","721","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5559","721","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5560","721","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5561","721","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5562","721","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5563","721","bizpro_portfolio_style","style2"); INSERT INTO `wp_postmeta` VALUES("5564","721","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5565","721","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5566","721","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5567","721","bizpro_portfolio_crop","1"); INSERT INTO `wp_postmeta` VALUES("5568","721","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5569","721","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5570","721","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5571","721","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5572","859","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5573","859","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5574","859","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5575","859","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5576","859","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5577","859","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5578","859","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5579","859","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5580","859","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5581","859","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5582","859","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5583","859","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5584","859","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5585","859","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5586","859","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5587","859","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5588","859","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5589","861","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5590","861","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5591","861","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5592","861","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5593","861","_wpb_vc_js_status","true"); INSERT INTO `wp_postmeta` VALUES("5594","861","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5595","861","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5596","861","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5597","861","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5598","861","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5599","861","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5600","861","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5601","861","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5602","861","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5603","861","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5604","861","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5605","861","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5606","861","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("5607","863","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5608","863","_wpb_shortcodes_custom_css",".vc_custom_1434707329881{margin-bottom: 0px !important;}"); INSERT INTO `wp_postmeta` VALUES("5609","863","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5610","863","_wpb_shortcodes_custom_css",".vc_custom_1434707329881{margin-bottom: 0px !important;}"); INSERT INTO `wp_postmeta` VALUES("5611","863","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5612","863","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5613","863","_wpb_vc_js_status","true"); INSERT INTO `wp_postmeta` VALUES("5614","863","_wpb_shortcodes_custom_css",".vc_custom_1434707329881{margin-bottom: 0px !important;}"); INSERT INTO `wp_postmeta` VALUES("5615","863","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5616","863","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5617","863","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5618","863","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5619","863","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5620","863","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5621","863","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5622","863","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5623","863","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5624","863","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5625","863","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5626","863","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5627","865","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5628","865","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5629","865","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5630","865","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5631","865","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5632","865","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5633","865","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5634","865","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5635","865","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5636","865","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5637","865","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5638","865","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5639","865","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5640","865","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5641","865","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5642","865","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5643","865","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5644","867","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5645","867","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5646","867","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5647","867","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5648","867","_wpb_vc_js_status","true"); INSERT INTO `wp_postmeta` VALUES("5649","867","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5650","867","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5651","867","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5652","867","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5653","867","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5654","867","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5655","867","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5656","867","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5657","867","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5658","867","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5659","867","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5660","867","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5661","869","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5662","869","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5663","869","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5664","869","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5665","869","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5666","869","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5667","869","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5668","869","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5669","869","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5670","869","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5671","869","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5672","869","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5673","869","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5674","869","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5675","869","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5676","869","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5677","869","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5678","872","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5679","872","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5680","872","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5681","872","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5682","872","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5683","872","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5684","872","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5685","872","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5686","872","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5687","872","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5688","872","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5689","872","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5690","872","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5691","872","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5692","872","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5693","872","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5694","872","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5695","874","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5696","874","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5697","874","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5698","874","_wp_page_template","page-left-sidebar.php"); INSERT INTO `wp_postmeta` VALUES("5699","874","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5700","874","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5701","874","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5702","874","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5703","874","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5704","874","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5705","874","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5706","874","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5707","874","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5708","874","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5709","874","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5710","874","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5711","874","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5712","874","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5713","876","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5714","876","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5715","876","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5716","876","_wp_page_template","page-right-sidebar.php"); INSERT INTO `wp_postmeta` VALUES("5717","876","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5718","876","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5719","876","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5720","876","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5721","876","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5722","876","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5723","876","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5724","876","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5725","876","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5726","876","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5727","876","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5728","876","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5729","876","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5730","876","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5731","879","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5732","879","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5733","879","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5734","879","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5735","879","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5736","879","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5737","879","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5738","879","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5739","879","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5740","879","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5741","879","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5742","879","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5743","879","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5744","879","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5745","879","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5746","879","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5747","879","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5748","881","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5749","881","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5750","881","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5751","881","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5752","881","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5753","881","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5754","881","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5755","881","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5756","881","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5757","881","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5758","881","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5759","881","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5760","881","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5761","881","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5762","881","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5763","881","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5764","881","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5765","883","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5766","883","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5767","883","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5768","883","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5769","883","_wpb_vc_js_status","true"); INSERT INTO `wp_postmeta` VALUES("5770","883","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5771","883","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5772","883","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5773","883","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5774","883","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5775","883","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5776","883","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5777","883","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5778","883","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5779","883","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5780","883","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("5781","883","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5782","883","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5783","885","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5784","885","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5785","885","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5786","885","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5787","885","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5788","885","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5789","885","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5790","885","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5791","885","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5792","885","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5793","885","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5794","885","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5795","885","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5796","885","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5797","885","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5798","885","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5799","885","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5800","887","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5801","887","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5802","887","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5803","887","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5804","887","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5805","887","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5806","887","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5807","887","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5808","887","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5809","887","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5810","887","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5811","887","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5812","887","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5813","887","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5814","887","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5815","887","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5816","887","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5817","889","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5818","889","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5819","889","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5820","889","_wp_page_template","page-onepage.php"); INSERT INTO `wp_postmeta` VALUES("5821","889","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5822","889","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5823","889","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5824","889","bizpro_title","onepage"); INSERT INTO `wp_postmeta` VALUES("5825","889","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5826","889","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5827","889","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5828","889","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5829","889","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5830","889","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5831","889","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5832","889","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5833","889","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5834","889","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5835","891","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5836","891","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5837","891","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5838","891","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5839","891","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5840","891","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5841","891","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5842","891","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5843","891","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5844","891","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5845","891","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5846","891","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5847","891","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5848","891","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5849","891","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5850","891","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5851","891","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5852","893","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5853","893","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5854","893","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5855","893","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5856","893","_wpb_vc_js_status","true"); INSERT INTO `wp_postmeta` VALUES("5857","893","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5858","893","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5859","893","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5860","893","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5861","893","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5862","893","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5863","893","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5864","893","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5865","893","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5866","893","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5867","893","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5868","893","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5869","895","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5870","895","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5871","895","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5872","895","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5873","895","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5874","895","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5875","895","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5876","895","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5877","895","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5878","895","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5879","895","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5880","895","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5881","895","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5882","895","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5883","895","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5884","895","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5885","895","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5886","897","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5887","897","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5888","897","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5889","897","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5890","897","_wpb_vc_js_status","true"); INSERT INTO `wp_postmeta` VALUES("5891","897","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5892","897","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5893","897","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5894","897","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5895","897","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5896","897","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5897","897","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5898","897","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5899","897","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5900","897","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5901","897","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5902","897","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5903","899","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5904","899","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5905","899","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5906","899","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5907","899","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5908","899","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5909","899","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5910","899","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5911","899","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5912","899","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5913","899","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5914","899","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5915","899","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5916","899","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5917","899","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5918","899","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5919","899","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5920","901","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5921","901","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5922","901","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5923","901","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5924","901","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5925","901","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5926","901","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5927","901","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5928","901","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5929","901","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5930","901","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5931","901","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5932","901","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5933","901","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5934","901","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5935","901","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5936","901","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5937","903","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5938","903","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5939","903","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5940","903","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5941","903","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5942","903","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5943","903","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5944","903","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5945","903","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5946","903","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5947","903","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5948","903","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5949","903","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5950","903","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5951","903","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5952","903","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5953","903","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5954","905","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5955","905","_wpb_shortcodes_custom_css",".vc_custom_1432334714424{margin-bottom: 0px !important;}.vc_custom_1435589151028{margin-bottom: -35px !important;}.vc_custom_1432052456715{margin-bottom: -7px !important;}"); INSERT INTO `wp_postmeta` VALUES("5956","905","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5957","905","_wpb_shortcodes_custom_css",".vc_custom_1432334714424{margin-bottom: 0px !important;}.vc_custom_1435589151028{margin-bottom: -35px !important;}.vc_custom_1432052456715{margin-bottom: -7px !important;}"); INSERT INTO `wp_postmeta` VALUES("5958","905","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5959","905","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5960","905","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5961","905","_wpb_shortcodes_custom_css",".vc_custom_1432334714424{margin-bottom: 0px !important;}.vc_custom_1435589151028{margin-bottom: -35px !important;}.vc_custom_1432052456715{margin-bottom: -7px !important;}"); INSERT INTO `wp_postmeta` VALUES("5962","905","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5963","905","bizpro_title","cpmb_image"); INSERT INTO `wp_postmeta` VALUES("5964","905","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5965","905","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5966","905","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5967","905","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5968","905","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5969","905","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5970","905","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5971","905","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5972","905","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5973","905","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5974","907","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5975","907","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5976","907","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5977","907","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5978","907","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5979","907","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5980","907","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5981","907","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5982","907","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("5983","907","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("5984","907","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("5985","907","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("5986","907","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("5987","907","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("5988","907","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("5989","907","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5990","907","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("5991","909","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5992","909","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5993","909","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("5994","909","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("5995","909","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("5996","909","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("5997","909","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("5998","909","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("5999","909","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("6000","909","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("6001","909","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("6002","909","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("6003","909","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("6004","909","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("6005","909","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("6006","909","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6007","909","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6008","911","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6009","911","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6010","911","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6011","911","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6012","911","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("6013","911","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("6014","911","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("6015","911","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("6016","911","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("6017","911","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("6018","911","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("6019","911","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("6020","911","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("6021","911","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("6022","911","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("6023","911","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6024","911","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6025","913","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6026","913","_wpb_shortcodes_custom_css",".vc_custom_1475028489888{background-color: #333333 !important;}.vc_custom_1434498995555{background-color: #000000 !important;}"); INSERT INTO `wp_postmeta` VALUES("6027","913","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6028","913","_wpb_shortcodes_custom_css",".vc_custom_1475028489888{background-color: #333333 !important;}.vc_custom_1434498995555{background-color: #000000 !important;}"); INSERT INTO `wp_postmeta` VALUES("6029","913","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6030","913","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6031","913","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("6032","913","_wpb_shortcodes_custom_css",".vc_custom_1475028489888{background-color: #333333 !important;}.vc_custom_1434498995555{background-color: #000000 !important;}"); INSERT INTO `wp_postmeta` VALUES("6033","913","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("6034","913","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("6035","913","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("6036","913","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("6037","913","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("6038","913","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("6039","913","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("6040","913","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("6041","913","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("6042","913","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("6043","913","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6044","913","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6045","915","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6046","915","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6047","915","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6048","915","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6049","915","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("6050","915","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("6051","915","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("6052","915","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("6053","915","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("6054","915","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("6055","915","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("6056","915","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("6057","915","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("6058","915","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("6059","915","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("6060","915","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6061","915","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6062","917","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6063","917","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6064","917","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6065","917","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6066","917","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("6067","917","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("6068","917","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("6069","917","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("6070","917","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("6071","917","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("6072","917","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("6073","917","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("6074","917","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("6075","917","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("6076","917","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("6077","917","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6078","917","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6079","919","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6080","919","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6081","919","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6082","919","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6083","919","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("6084","919","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("6085","919","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("6086","919","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("6087","919","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("6088","919","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("6089","919","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("6090","919","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("6091","919","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("6092","919","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("6093","919","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("6094","919","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6095","919","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6096","949","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6097","949","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6098","949","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6099","950","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6100","950","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6101","950","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6102","951","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6103","951","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6104","951","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6105","952","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6106","952","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6107","952","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6108","1185","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6109","1185","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6110","1185","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6111","1185","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6112","1185","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("6113","1185","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("6114","1185","bizpro_title","cpmb_nivo"); INSERT INTO `wp_postmeta` VALUES("6115","1185","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("6116","1185","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("6117","1185","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("6118","1185","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("6119","1185","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("6120","1185","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("6121","1185","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("6122","1185","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("6123","1185","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6124","1185","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6125","1196","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6126","1196","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6127","1196","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6128","1196","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6129","1196","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("6130","1196","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("6131","1196","bizpro_title","cpmb_flex"); INSERT INTO `wp_postmeta` VALUES("6132","1196","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("6133","1196","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("6134","1196","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("6135","1196","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("6136","1196","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("6137","1196","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("6138","1196","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("6139","1196","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("6140","1196","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6141","1196","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6142","2895","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6143","2895","_wp_page_template","default"); INSERT INTO `wp_postmeta` VALUES("6144","419","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6145","419","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6146","419","_thumbnail_id","2099"); INSERT INTO `wp_postmeta` VALUES("6147","419","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6148","419","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6149","419","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6150","419","bizpro_portfolio-client","Pharma Consultation"); INSERT INTO `wp_postmeta` VALUES("6151","419","bizpro_portfolio-year","2015"); INSERT INTO `wp_postmeta` VALUES("6152","419","bizpro_portfolio-to","lightbox"); INSERT INTO `wp_postmeta` VALUES("6153","419","bizpro_portfolio-lb","0"); INSERT INTO `wp_postmeta` VALUES("6154","419","bizpro_portfolio-video","youtube"); INSERT INTO `wp_postmeta` VALUES("6155","419","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6156","419","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6157","420","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6158","420","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6159","420","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6160","420","_thumbnail_id","2097"); INSERT INTO `wp_postmeta` VALUES("6161","420","bizpro_portfolio-client","Pharma Group"); INSERT INTO `wp_postmeta` VALUES("6162","420","bizpro_portfolio-year","2016"); INSERT INTO `wp_postmeta` VALUES("6163","420","bizpro_portfolio-to","lightbox"); INSERT INTO `wp_postmeta` VALUES("6164","420","bizpro_portfolio-lb","0"); INSERT INTO `wp_postmeta` VALUES("6165","420","bizpro_portfolio-video","youtube"); INSERT INTO `wp_postmeta` VALUES("6166","420","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6167","420","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6168","420","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6169","420","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6170","421","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6171","421","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6172","421","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6173","421","_thumbnail_id","2096"); INSERT INTO `wp_postmeta` VALUES("6174","421","bizpro_portfolio-client","Client Name"); INSERT INTO `wp_postmeta` VALUES("6175","421","bizpro_portfolio-year","2014"); INSERT INTO `wp_postmeta` VALUES("6176","421","bizpro_portfolio-to","lightbox"); INSERT INTO `wp_postmeta` VALUES("6177","421","bizpro_portfolio-lb","0"); INSERT INTO `wp_postmeta` VALUES("6178","421","bizpro_portfolio-video","youtube"); INSERT INTO `wp_postmeta` VALUES("6179","421","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6180","421","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6181","421","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6182","421","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6183","422","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6184","422","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6185","422","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6186","422","_thumbnail_id","1787"); INSERT INTO `wp_postmeta` VALUES("6187","422","bizpro_portfolio-client","Building Company"); INSERT INTO `wp_postmeta` VALUES("6188","422","bizpro_portfolio-year","2015"); INSERT INTO `wp_postmeta` VALUES("6189","422","bizpro_portfolio-url","http://www.themetor.com"); INSERT INTO `wp_postmeta` VALUES("6190","422","bizpro_portfolio-to","projecturl"); INSERT INTO `wp_postmeta` VALUES("6191","422","bizpro_portfolio-lb","0"); INSERT INTO `wp_postmeta` VALUES("6192","422","bizpro_portfolio-video","youtube"); INSERT INTO `wp_postmeta` VALUES("6193","422","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6194","422","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6195","422","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6196","423","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6197","423","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6198","423","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6199","423","_thumbnail_id","2095"); INSERT INTO `wp_postmeta` VALUES("6200","423","bizpro_portfolio-client","Aloma-Alfaeqa"); INSERT INTO `wp_postmeta` VALUES("6201","423","bizpro_portfolio-year","2015"); INSERT INTO `wp_postmeta` VALUES("6202","423","bizpro_portfolio-to","lightbox"); INSERT INTO `wp_postmeta` VALUES("6203","423","bizpro_portfolio-lb","0"); INSERT INTO `wp_postmeta` VALUES("6204","423","bizpro_portfolio-video","youtube"); INSERT INTO `wp_postmeta` VALUES("6205","423","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6206","423","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6207","423","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6208","423","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6209","424","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6210","424","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6211","424","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6212","424","_thumbnail_id","394"); INSERT INTO `wp_postmeta` VALUES("6213","424","bizpro_portfolio-client","Company Name"); INSERT INTO `wp_postmeta` VALUES("6214","424","bizpro_portfolio-year","2013"); INSERT INTO `wp_postmeta` VALUES("6215","424","bizpro_portfolio-url","http://www.themetor.com"); INSERT INTO `wp_postmeta` VALUES("6216","424","bizpro_portfolio-to","details"); INSERT INTO `wp_postmeta` VALUES("6217","424","bizpro_portfolio-lb","0"); INSERT INTO `wp_postmeta` VALUES("6218","424","bizpro_portfolio-video","youtube"); INSERT INTO `wp_postmeta` VALUES("6219","424","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6220","424","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6221","424","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6222","425","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6223","425","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6224","425","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6225","425","_thumbnail_id","2093"); INSERT INTO `wp_postmeta` VALUES("6226","425","bizpro_portfolio-client","More Solution"); INSERT INTO `wp_postmeta` VALUES("6227","425","bizpro_portfolio-year","2015"); INSERT INTO `wp_postmeta` VALUES("6228","425","bizpro_portfolio-to","lightbox"); INSERT INTO `wp_postmeta` VALUES("6229","425","bizpro_portfolio-lb","0"); INSERT INTO `wp_postmeta` VALUES("6230","425","bizpro_portfolio-video","youtube"); INSERT INTO `wp_postmeta` VALUES("6231","425","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6232","425","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6233","425","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6234","425","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6235","426","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6236","426","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6237","426","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6238","426","_thumbnail_id","2092"); INSERT INTO `wp_postmeta` VALUES("6239","426","bizpro_portfolio-client","Saudi Antiserum"); INSERT INTO `wp_postmeta` VALUES("6240","426","bizpro_portfolio-year","2012"); INSERT INTO `wp_postmeta` VALUES("6241","426","bizpro_portfolio-to","lightbox"); INSERT INTO `wp_postmeta` VALUES("6242","426","bizpro_portfolio-lb","0"); INSERT INTO `wp_postmeta` VALUES("6243","426","bizpro_portfolio-video","youtube"); INSERT INTO `wp_postmeta` VALUES("6244","426","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6245","426","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6246","426","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6247","426","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6248","555","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6249","555","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6250","555","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6251","555","_thumbnail_id","398"); INSERT INTO `wp_postmeta` VALUES("6252","555","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6253","555","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6254","555","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6255","557","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6256","557","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6257","557","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6258","557","_thumbnail_id","394"); INSERT INTO `wp_postmeta` VALUES("6259","557","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6260","557","bizpro_gallery","403"); INSERT INTO `wp_postmeta` VALUES("6261","557","bizpro_gallery","397"); INSERT INTO `wp_postmeta` VALUES("6262","557","bizpro_gallery","396"); INSERT INTO `wp_postmeta` VALUES("6263","557","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6264","557","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6265","559","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6266","559","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6267","559","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6268","559","_thumbnail_id","404"); INSERT INTO `wp_postmeta` VALUES("6269","559","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6270","559","bizpro_format_quote_source_name","Albert Einstein"); INSERT INTO `wp_postmeta` VALUES("6271","559","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6272","559","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6273","561","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6274","561","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6275","561","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6276","561","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6277","561","bizpro_format_video_embed",""); INSERT INTO `wp_postmeta` VALUES("6278","561","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6279","561","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6280","1198","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6281","1198","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6282","1198","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6283","1198","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6284","1198","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("6285","1198","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("6286","1198","bizpro_title","cpmb_3dslice"); INSERT INTO `wp_postmeta` VALUES("6287","1198","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("6288","1198","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("6289","1198","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("6290","1198","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("6291","1198","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("6292","1198","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("6293","1198","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("6294","1198","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("6295","1198","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6296","1198","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6297","1200","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6298","1200","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6299","1200","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6300","1200","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6301","1200","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("6302","1200","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("6303","1200","bizpro_title","cpmb_kwick"); INSERT INTO `wp_postmeta` VALUES("6304","1200","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("6305","1200","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("6306","1200","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("6307","1200","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("6308","1200","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("6309","1200","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("6310","1200","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("6311","1200","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("6312","1200","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6313","1200","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6314","1202","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6315","1202","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6316","1202","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6317","1202","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6318","1202","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("6319","1202","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("6320","1202","bizpro_title","cpmb_roundabout"); INSERT INTO `wp_postmeta` VALUES("6321","1202","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("6322","1202","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("6323","1202","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("6324","1202","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("6325","1202","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("6326","1202","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("6327","1202","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("6328","1202","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("6329","1202","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6330","1202","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6331","1204","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6332","1204","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6333","1204","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6334","1204","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6335","1204","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("6336","1204","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("6337","1204","bizpro_title","cpmb_liteaccordion"); INSERT INTO `wp_postmeta` VALUES("6338","1204","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("6339","1204","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("6340","1204","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("6341","1204","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("6342","1204","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("6343","1204","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("6344","1204","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("6345","1204","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("6346","1204","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6347","1204","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6348","1430","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6349","1430","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6350","1430","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6351","1430","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6352","1430","_wpb_vc_js_status","false"); INSERT INTO `wp_postmeta` VALUES("6353","1430","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("6354","1430","bizpro_title","cpmb_title_center"); INSERT INTO `wp_postmeta` VALUES("6355","1430","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("6356","1430","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("6357","1430","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("6358","1430","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("6359","1430","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("6360","1430","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("6361","1430","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("6362","1430","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("6363","1430","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6364","1430","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6365","1430","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6366","1458","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6367","1458","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6368","1458","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6369","1458","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6370","1458","_wpb_vc_js_status","true"); INSERT INTO `wp_postmeta` VALUES("6371","1458","bizpro_fixed_header","0"); INSERT INTO `wp_postmeta` VALUES("6372","1458","bizpro_title","cpmb_title"); INSERT INTO `wp_postmeta` VALUES("6373","1458","bizpro_breadcrumbs_dark","0"); INSERT INTO `wp_postmeta` VALUES("6374","1458","bizpro_portfolio_style","style1"); INSERT INTO `wp_postmeta` VALUES("6375","1458","bizpro_portfolio_title","0"); INSERT INTO `wp_postmeta` VALUES("6376","1458","bizpro_portfolio_cat","0"); INSERT INTO `wp_postmeta` VALUES("6377","1458","bizpro_portfolio_full","0"); INSERT INTO `wp_postmeta` VALUES("6378","1458","bizpro_portfolio_crop","0"); INSERT INTO `wp_postmeta` VALUES("6379","1458","bizpro_portfolio_greyscale","0"); INSERT INTO `wp_postmeta` VALUES("6380","1458","bizpro_content","no"); INSERT INTO `wp_postmeta` VALUES("6381","1458","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6382","1458","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6383","2896","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6384","2896","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6385","2896","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6386","2896","_thumbnail_id","2212"); INSERT INTO `wp_postmeta` VALUES("6387","2896","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6388","2896","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6389","2896","bizpro_portfolio-to","lightbox"); INSERT INTO `wp_postmeta` VALUES("6390","2896","bizpro_portfolio-lb","1"); INSERT INTO `wp_postmeta` VALUES("6391","2896","bizpro_portfolio-video","youtube"); INSERT INTO `wp_postmeta` VALUES("6392","2896","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6393","2897","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6394","2898","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6395","2898","_form","\n\n\n\n\n\n\n\n[submit \"Send\"]"); INSERT INTO `wp_postmeta` VALUES("6396","2898","_mail","a:8:{s:7:\"subject\";s:30:\"atheltree.com \"[your-subject]\"\";s:6:\"sender\";s:35:\"[your-name] \";s:4:\"body\";s:171:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on atheltree.com (http://atheltree.com)\";s:9:\"recipient\";s:21:\"support@atheltree.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}"); INSERT INTO `wp_postmeta` VALUES("6397","2898","_mail_2","a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"atheltree.com \"[your-subject]\"\";s:6:\"sender\";s:37:\"atheltree.com \";s:4:\"body\";s:113:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on atheltree.com (http://atheltree.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:31:\"Reply-To: support@atheltree.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}"); INSERT INTO `wp_postmeta` VALUES("6398","2898","_messages","a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:74:\"There was an error trying to send your message. Please try again latersss.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:73:\"There was an error trying to send your message. Please try again laterrr.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}"); INSERT INTO `wp_postmeta` VALUES("6399","2898","_additional_settings",""); INSERT INTO `wp_postmeta` VALUES("6400","2898","_locale","en_US"); INSERT INTO `wp_postmeta` VALUES("6401","2898","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6402","46","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6403","46","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6404","46","_form","

[text* your-name placeholder \"Your Name (*)\"]

\n\n

[email* your-email placeholder \"Your Email (*)\"]

\n\n

[text* your-subject placeholder \"Your subject (*)\"]

\n\n

[textarea your-message placeholder \"Your Message\"]

\n\n

[submit \"Send Message\"]

"); INSERT INTO `wp_postmeta` VALUES("6405","46","_mail","a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:35:\"[your-name] \";s:4:\"body\";s:171:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on atheltree.com (http://atheltree.com)\";s:9:\"recipient\";s:21:\"support@atheltree.com\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}"); INSERT INTO `wp_postmeta` VALUES("6406","46","_mail_2","a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"atheltree.com \"[your-subject]\"\";s:6:\"sender\";s:37:\"atheltree.com \";s:4:\"body\";s:192:\"Message Body:\n[Thank your for your interesting to our Products- Services and We will Contact with you soon]\n\n--\nThis e-mail was sent from a contact form on atheltree.com (http://atheltree.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:31:\"Reply-To: support@atheltree.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}"); INSERT INTO `wp_postmeta` VALUES("6407","46","_messages","a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:73:\"There was an error trying to send your message. Please try again laterrr.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:73:\"There was an error trying to send your message. Please try again laterss.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}"); INSERT INTO `wp_postmeta` VALUES("6408","46","_additional_settings",""); INSERT INTO `wp_postmeta` VALUES("6409","46","_locale","en_US"); INSERT INTO `wp_postmeta` VALUES("6410","46","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6411","311","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6412","311","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6413","311","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6414","311","_thumbnail_id","2088"); INSERT INTO `wp_postmeta` VALUES("6415","311","bizpro_testimonial_name","Roshdi Yousef"); INSERT INTO `wp_postmeta` VALUES("6416","311","bizpro_testimonial_job","Financial Consultant in Retaj Pharmacies"); INSERT INTO `wp_postmeta` VALUES("6417","311","bizpro_testimonial","Athel are the best web developers I have worked with, no exception. I had some very convoluted requirements. Their communication, reliability and skills are excellent ."); INSERT INTO `wp_postmeta` VALUES("6418","311","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6419","311","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6420","311","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6421","311","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6422","316","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6423","316","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6424","316","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6425","316","_thumbnail_id","2087"); INSERT INTO `wp_postmeta` VALUES("6426","316","bizpro_testimonial_name","Hani Al-Otabi"); INSERT INTO `wp_postmeta` VALUES("6427","316","bizpro_testimonial","I am pleased with the quality Athel Company and its team has produced on my project and your Project Management capability. This team has excellent communication skills "); INSERT INTO `wp_postmeta` VALUES("6428","316","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6429","316","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6430","316","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6431","316","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6432","316","bizpro_testimonial_job","G.M for Pharma Pharmaceutical Industry "); INSERT INTO `wp_postmeta` VALUES("6433","317","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6434","317","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6435","317","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6436","317","_thumbnail_id","2090"); INSERT INTO `wp_postmeta` VALUES("6437","317","bizpro_testimonial_name","Wahaf Aldahase"); INSERT INTO `wp_postmeta` VALUES("6438","317","bizpro_testimonial_job","CEO of Pharma Drug Store Company"); INSERT INTO `wp_postmeta` VALUES("6439","317","bizpro_testimonial","It’s pleasure doing business with Athel Company. Great team, great project management and execution skills. I’m very happy with the final outcome of the project."); INSERT INTO `wp_postmeta` VALUES("6440","317","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6441","317","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6442","317","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6443","317","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6444","564","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6445","564","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6446","564","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6447","564","_thumbnail_id","392"); INSERT INTO `wp_postmeta` VALUES("6448","564","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6449","564","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6450","564","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6451","1110","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6452","1110","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6453","1110","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6454","1110","_form","

Your Name (required)
\n [text* your-name]

\n\n

Your Email (required)
\n [email* your-email]

\n\n

Department
\n[select menu-59 \"Web Apps\" \"Mobile Apps\" \"Web Site\" \"SEO\" \"Graphics\" \"Networking\"]\n

\n\n

\n[quiz quiz-31 \"3+7=?|10\" \"1+5=?|6\" \"6+3=?|9\" \"7+1=?|8\" \"3+4=?|7\" \"1+2=?|3\"]\n

\n\n

Your Question
\n [textarea your-q]

\n\n

[submit \"Ask\"]

"); INSERT INTO `wp_postmeta` VALUES("6455","1110","_mail","a:8:{s:7:\"subject\";s:25:\"atheltree.com \"[menu-59]\"\";s:6:\"sender\";s:35:\"[your-name] \";s:4:\"body\";s:160:\"From: [your-name] <[your-email]>\nSubject: [menu-59]\n\nMessage Body:\n[your-q]\n\n--\nThis e-mail was sent from a contact form on atheltree.com (http://atheltree.com)\";s:9:\"recipient\";s:21:\"Support@atheltree.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}"); INSERT INTO `wp_postmeta` VALUES("6456","1110","_mail_2","a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:4:\"body\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}"); INSERT INTO `wp_postmeta` VALUES("6457","1110","_messages","a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}"); INSERT INTO `wp_postmeta` VALUES("6458","1110","_additional_settings",""); INSERT INTO `wp_postmeta` VALUES("6459","1110","_locale","en_US"); INSERT INTO `wp_postmeta` VALUES("6460","1175","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6461","1175","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6462","1175","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6463","1175","bizpro_slide_caption_title","Wep Applications"); INSERT INTO `wp_postmeta` VALUES("6464","1175","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6465","1175","_thumbnail_id","2241"); INSERT INTO `wp_postmeta` VALUES("6466","1175","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6467","1175","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6468","1175","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6469","1184","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6470","1184","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6471","1184","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6472","1184","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6473","1184","_thumbnail_id","2244"); INSERT INTO `wp_postmeta` VALUES("6474","1184","bizpro_slide_caption_title","Graphics"); INSERT INTO `wp_postmeta` VALUES("6475","1184","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6476","1184","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6477","1184","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6478","1817","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6479","1817","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6480","1817","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6481","1817","bizpro_slide_caption_title","Mobile Application"); INSERT INTO `wp_postmeta` VALUES("6482","1817","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6483","1817","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6484","1817","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6485","1817","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6486","1817","_thumbnail_id","2240"); INSERT INTO `wp_postmeta` VALUES("6487","1818","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6488","1818","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6489","1818","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6490","1818","_thumbnail_id","2242"); INSERT INTO `wp_postmeta` VALUES("6491","1818","bizpro_slide_caption_title","Web Design"); INSERT INTO `wp_postmeta` VALUES("6492","1818","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6493","1818","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6494","1818","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6495","1818","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6496","1819","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6497","1819","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6498","1819","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6499","1819","_thumbnail_id","1178"); INSERT INTO `wp_postmeta` VALUES("6500","1819","bizpro_slide_caption_title","Lorem Ipsum"); INSERT INTO `wp_postmeta` VALUES("6501","1819","bizpro_slide_caption_text","Mauris vel lacus vitae felis vestibulum volutpat. Etiam est nunc"); INSERT INTO `wp_postmeta` VALUES("6502","1819","bizpro_slide_url","http://www.themetor.com"); INSERT INTO `wp_postmeta` VALUES("6503","1819","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6504","1819","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6505","1819","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6506","1819","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6507","2245","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6508","2245","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6509","2245","bizpro_slide_caption_title","Networking"); INSERT INTO `wp_postmeta` VALUES("6510","2245","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6511","2245","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6512","2245","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6513","2245","_thumbnail_id","2246"); INSERT INTO `wp_postmeta` VALUES("6514","2245","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6515","2247","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6516","2247","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6517","2247","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6518","2247","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6519","2247","_thumbnail_id","396"); INSERT INTO `wp_postmeta` VALUES("6520","2247","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6521","2247","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6522","2248","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6523","2248","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6524","2248","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6525","2248","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6526","2248","_thumbnail_id","399"); INSERT INTO `wp_postmeta` VALUES("6527","2248","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6528","2248","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6529","2249","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6530","2249","_thumbnail_id","249"); INSERT INTO `wp_postmeta` VALUES("6531","2249","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6532","2249","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6533","2249","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6534","2249","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6535","2249","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6536","2902","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6537","2902","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6538","2902","_edit_last","1"); INSERT INTO `wp_postmeta` VALUES("6539","2902","sbg_selected_sidebar_replacement","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6540","2902","sbg_selected_sidebar","a:1:{i:0;s:1:\"0\";}"); INSERT INTO `wp_postmeta` VALUES("6541","2902","slide_template","default"); INSERT INTO `wp_postmeta` VALUES("6542","2903","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6543","2903","_menu_item_type","post_type"); INSERT INTO `wp_postmeta` VALUES("6544","2903","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("6545","2903","_menu_item_object_id","14"); INSERT INTO `wp_postmeta` VALUES("6546","2903","_menu_item_object","page"); INSERT INTO `wp_postmeta` VALUES("6547","2903","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("6548","2903","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("6549","2903","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("6550","2903","_menu_item_url",""); INSERT INTO `wp_postmeta` VALUES("6551","2904","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6552","2904","_menu_item_type","post_type"); INSERT INTO `wp_postmeta` VALUES("6553","2904","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("6554","2904","_menu_item_object_id","1808"); INSERT INTO `wp_postmeta` VALUES("6555","2904","_menu_item_object","page"); INSERT INTO `wp_postmeta` VALUES("6556","2904","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("6557","2904","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("6558","2904","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("6559","2904","_menu_item_url",""); INSERT INTO `wp_postmeta` VALUES("6560","2905","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6561","2905","_menu_item_type","post_type"); INSERT INTO `wp_postmeta` VALUES("6562","2905","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("6563","2905","_menu_item_object_id","1807"); INSERT INTO `wp_postmeta` VALUES("6564","2905","_menu_item_object","page"); INSERT INTO `wp_postmeta` VALUES("6565","2905","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("6566","2905","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("6567","2905","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("6568","2905","_menu_item_url",""); INSERT INTO `wp_postmeta` VALUES("6569","2906","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6570","2906","_menu_item_type","post_type"); INSERT INTO `wp_postmeta` VALUES("6571","2906","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("6572","2906","_menu_item_object_id","1806"); INSERT INTO `wp_postmeta` VALUES("6573","2906","_menu_item_object","page"); INSERT INTO `wp_postmeta` VALUES("6574","2906","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("6575","2906","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("6576","2906","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("6577","2906","_menu_item_url",""); INSERT INTO `wp_postmeta` VALUES("6578","2907","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6579","2907","_menu_item_type","post_type"); INSERT INTO `wp_postmeta` VALUES("6580","2907","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("6581","2907","_menu_item_object_id","1805"); INSERT INTO `wp_postmeta` VALUES("6582","2907","_menu_item_object","page"); INSERT INTO `wp_postmeta` VALUES("6583","2907","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("6584","2907","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("6585","2907","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("6586","2907","_menu_item_url",""); INSERT INTO `wp_postmeta` VALUES("6587","2908","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6588","2908","_menu_item_type","post_type"); INSERT INTO `wp_postmeta` VALUES("6589","2908","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("6590","2908","_menu_item_object_id","4"); INSERT INTO `wp_postmeta` VALUES("6591","2908","_menu_item_object","page"); INSERT INTO `wp_postmeta` VALUES("6592","2908","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("6593","2908","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("6594","2908","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("6595","2908","_menu_item_url",""); INSERT INTO `wp_postmeta` VALUES("6596","2909","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6597","2909","_menu_item_type","post_type"); INSERT INTO `wp_postmeta` VALUES("6598","2909","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("6599","2909","_menu_item_object_id","1805"); INSERT INTO `wp_postmeta` VALUES("6600","2909","_menu_item_object","page"); INSERT INTO `wp_postmeta` VALUES("6601","2909","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("6602","2909","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("6603","2909","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("6604","2909","_menu_item_url",""); INSERT INTO `wp_postmeta` VALUES("6605","2910","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6606","2910","_menu_item_type","post_type"); INSERT INTO `wp_postmeta` VALUES("6607","2910","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("6608","2910","_menu_item_object_id","1806"); INSERT INTO `wp_postmeta` VALUES("6609","2910","_menu_item_object","page"); INSERT INTO `wp_postmeta` VALUES("6610","2910","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("6611","2910","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("6612","2910","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("6613","2910","_menu_item_url",""); INSERT INTO `wp_postmeta` VALUES("6614","2911","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6615","2911","_menu_item_type","post_type"); INSERT INTO `wp_postmeta` VALUES("6616","2911","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("6617","2911","_menu_item_object_id","1807"); INSERT INTO `wp_postmeta` VALUES("6618","2911","_menu_item_object","page"); INSERT INTO `wp_postmeta` VALUES("6619","2911","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("6620","2911","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("6621","2911","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("6622","2911","_menu_item_url",""); INSERT INTO `wp_postmeta` VALUES("6623","2912","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6624","2912","_menu_item_type","post_type"); INSERT INTO `wp_postmeta` VALUES("6625","2912","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("6626","2912","_menu_item_object_id","883"); INSERT INTO `wp_postmeta` VALUES("6627","2912","_menu_item_object","page"); INSERT INTO `wp_postmeta` VALUES("6628","2912","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("6629","2912","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("6630","2912","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("6631","2912","_menu_item_url",""); INSERT INTO `wp_postmeta` VALUES("6632","2913","_vc_post_settings","a:1:{s:10:\"vc_grid_id\";a:0:{}}"); INSERT INTO `wp_postmeta` VALUES("6633","2913","_menu_item_type","post_type"); INSERT INTO `wp_postmeta` VALUES("6634","2913","_menu_item_menu_item_parent","0"); INSERT INTO `wp_postmeta` VALUES("6635","2913","_menu_item_object_id","4"); INSERT INTO `wp_postmeta` VALUES("6636","2913","_menu_item_object","page"); INSERT INTO `wp_postmeta` VALUES("6637","2913","_menu_item_target",""); INSERT INTO `wp_postmeta` VALUES("6638","2913","_menu_item_classes","a:1:{i:0;s:0:\"\";}"); INSERT INTO `wp_postmeta` VALUES("6639","2913","_menu_item_xfn",""); INSERT INTO `wp_postmeta` VALUES("6640","2913","_menu_item_url",""); DROP TABLE IF EXISTS `wp_posts`; SET character_set_client = utf8; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=MyISAM AUTO_INCREMENT=2914 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; INSERT INTO `wp_posts` VALUES("1","1","2017-03-21 10:44:48","2017-03-21 10:44:48","Welcome to WordPress. This is your first post. Edit or delete it, then start writing!","Hello world!","","publish","open","open","","hello-world","","","2017-03-21 10:44:48","2017-03-21 10:44:48","","0","http://atheltree.com/ar/?p=1","0","post","","1"); INSERT INTO `wp_posts` VALUES("2","1","2017-03-21 10:44:48","2017-03-21 10:44:48","This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!","Sample Page","","publish","closed","open","","sample-page","","","2017-03-21 10:44:48","2017-03-21 10:44:48","","0","http://atheltree.com/ar/?page_id=2","0","page","","0"); INSERT INTO `wp_posts` VALUES("3","1","2017-03-21 10:45:03","0000-00-00 00:00:00","","Auto Draft","","auto-draft","open","open","","","","","2017-03-21 10:45:03","0000-00-00 00:00:00","","0","http://atheltree.com/ar/?p=3","0","post","","0"); INSERT INTO `wp_posts` VALUES("5","1","2017-03-21 10:53:58","2017-03-21 10:53:58","\n\n\n\n\n\n\n\n[submit \"Send\"]\nAthel Tree \"[your-subject]\"\n[your-name] \nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Athel Tree (http://atheltree.com/ar)\neng.sheshtawy@gmail.com\nReply-To: [your-email]\n\n0\n0\n\nAthel Tree \"[your-subject]\"\nAthel Tree \nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Athel Tree (http://atheltree.com/ar)\n[your-email]\nReply-To: eng.sheshtawy@gmail.com\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.","Contact form 1","","publish","closed","closed","","contact-form-1","","","2017-03-21 10:53:58","2017-03-21 10:53:58","","0","http://atheltree.com/ar/?post_type=wpcf7_contact_form&p=5","0","wpcf7_contact_form","","0"); INSERT INTO `wp_posts` VALUES("6","1","2017-03-21 10:59:05","2017-03-21 10:59:05","http://atheltree.com/ar/wp-content/uploads/2017/03/atheltreecom.wordpress.2017-03-21.xml_.txt","atheltreecom.wordpress.2017-03-21.xml_.txt","","private","open","closed","","atheltreecom-wordpress-2017-03-21-xml_-txt","","","2017-03-21 10:59:05","2017-03-21 10:59:05","","0","http://atheltree.com/ar/wp-content/uploads/2017/03/atheltreecom.wordpress.2017-03-21.xml_.txt","0","attachment","","0"); INSERT INTO `wp_posts` VALUES("218","1","2016-08-09 22:08:56","2016-08-09 22:08:56","","slide2","","inherit","open","closed","","slide2","","","2016-08-09 22:08:56","2016-08-09 22:08:56","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/slide2.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("219","1","2016-08-09 22:08:59","2016-08-09 22:08:59","","slide3","","inherit","open","closed","","slide3","","","2016-08-09 22:08:59","2016-08-09 22:08:59","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/slide3.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("248","1","2016-08-11 10:27:44","2016-08-11 10:27:44","","para5","","inherit","open","closed","","para5","","","2016-08-11 10:27:44","2016-08-11 10:27:44","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/para5.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("249","1","2016-08-11 10:27:46","2016-08-11 10:27:46","","slide4","","inherit","open","closed","","slide4","","","2016-08-11 10:27:46","2016-08-11 10:27:46","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/slide4.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("253","1","2016-08-11 10:27:52","2016-08-11 10:27:52","","slide8","","inherit","open","closed","","slide8","","","2016-08-11 10:27:52","2016-08-11 10:27:52","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/slide8.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("254","1","2016-08-11 10:27:53","2016-08-11 10:27:53","","slide9","","inherit","open","closed","","slide9","","","2016-08-11 10:27:53","2016-08-11 10:27:53","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/slide9.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("256","1","2016-08-11 10:27:56","2016-08-11 10:27:56","","slide12","","inherit","open","closed","","slide12","","","2016-08-11 10:27:56","2016-08-11 10:27:56","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/slide12.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("257","1","2016-08-11 10:27:58","2016-08-11 10:27:58","","slide13","","inherit","open","closed","","slide13","","","2016-08-11 10:27:58","2016-08-11 10:27:58","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/slide13.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("319","1","2016-08-27 21:21:42","2016-08-27 21:21:42","","tst1","","inherit","open","closed","","tst1","","","2016-08-27 21:21:42","2016-08-27 21:21:42","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/tst1.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("320","1","2016-08-27 21:21:43","2016-08-27 21:21:43","","tst2","","inherit","open","closed","","tst2","","","2016-08-27 21:21:43","2016-08-27 21:21:43","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/tst2.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("321","1","2016-08-27 21:21:44","2016-08-27 21:21:44","","tst3","","inherit","open","closed","","tst3","","","2016-08-27 21:21:44","2016-08-27 21:21:44","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/tst3.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("323","1","2016-08-27 21:25:27","2016-08-27 21:25:27","","para6","","inherit","open","closed","","para6","","","2016-08-27 21:25:27","2016-08-27 21:25:27","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/para6.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("367","1","2016-09-05 19:01:38","2016-09-05 19:01:38","","services1","","inherit","open","closed","","services1","","","2016-09-05 19:01:38","2016-09-05 19:01:38","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/services1.png","0","attachment","image/png","0"); INSERT INTO `wp_posts` VALUES("391","1","2016-09-07 22:56:50","2016-09-07 22:56:50","","1","","inherit","open","closed","","1","","","2016-09-07 22:56:50","2016-09-07 22:56:50","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/1.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("392","1","2016-09-07 22:56:52","2016-09-07 22:56:52","","2","","inherit","open","closed","","2","","","2016-09-07 22:56:52","2016-09-07 22:56:52","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/2.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("393","1","2016-09-07 22:56:53","2016-09-07 22:56:53","","3","","inherit","open","closed","","3","","","2016-09-07 22:56:53","2016-09-07 22:56:53","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/3.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("394","1","2016-09-07 22:56:55","2016-09-07 22:56:55","","4","","inherit","open","closed","","4","","","2016-09-07 22:56:55","2016-09-07 22:56:55","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/4.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("395","1","2016-09-07 22:56:56","2016-09-07 22:56:56","","5","","inherit","open","closed","","5","","","2016-09-07 22:56:56","2016-09-07 22:56:56","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/5.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("396","1","2016-09-07 22:56:58","2016-09-07 22:56:58","","6","","inherit","open","closed","","6","","","2016-09-07 22:56:58","2016-09-07 22:56:58","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/6.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("397","1","2016-09-07 22:56:59","2016-09-07 22:56:59","","7","","inherit","open","closed","","7","","","2016-09-07 22:56:59","2016-09-07 22:56:59","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/7.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("398","1","2016-09-07 22:57:00","2016-09-07 22:57:00","","8","","inherit","open","closed","","8","","","2016-09-07 22:57:00","2016-09-07 22:57:00","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/8.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("399","1","2016-09-07 22:57:02","2016-09-07 22:57:02","","9","","inherit","open","closed","","9","","","2016-09-07 22:57:02","2016-09-07 22:57:02","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/9.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("400","1","2016-09-07 22:57:03","2016-09-07 22:57:03","","10","","inherit","open","closed","","10","","","2016-09-07 22:57:03","2016-09-07 22:57:03","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/10.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("401","1","2016-09-07 22:57:04","2016-09-07 22:57:04","","11","","inherit","open","closed","","11","","","2016-09-07 22:57:04","2016-09-07 22:57:04","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/11.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("403","1","2016-09-07 22:58:53","2016-09-07 22:58:53","","13","","inherit","open","closed","","13","","","2016-09-07 22:58:53","2016-09-07 22:58:53","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/13.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("404","1","2016-09-07 22:58:54","2016-09-07 22:58:54","","14","","inherit","open","closed","","14","","","2016-09-07 22:58:54","2016-09-07 22:58:54","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/14.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("410","1","2016-09-08 08:46:42","2016-09-08 08:46:42","","5r","","inherit","open","closed","","5r","","","2016-09-08 08:46:42","2016-09-08 08:46:42","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/5r.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("516","1","2016-09-19 22:27:07","2016-09-19 22:27:07","","package1","","inherit","open","closed","","package1-2","","","2016-09-19 22:27:07","2016-09-19 22:27:07","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/package1-1.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("517","1","2016-09-19 22:27:08","2016-09-19 22:27:08","","package2","","inherit","open","closed","","package2-2","","","2016-09-19 22:27:08","2016-09-19 22:27:08","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/package2-1.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("518","1","2016-09-19 22:27:09","2016-09-19 22:27:09","","package3","","inherit","open","closed","","package3-2","","","2016-09-19 22:27:09","2016-09-19 22:27:09","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/package3-1.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("519","1","2016-09-19 22:27:10","2016-09-19 22:27:10","","package4","","inherit","open","closed","","package4-2","","","2016-09-19 22:27:10","2016-09-19 22:27:10","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/package4-1.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("525","1","2016-09-19 23:43:08","2016-09-19 23:43:08","","package","","inherit","open","closed","","package","","","2016-09-19 23:43:08","2016-09-19 23:43:08","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/package.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("587","1","2016-09-23 17:57:47","2016-09-23 17:57:47","","team1","","inherit","open","closed","","team1","","","2016-09-23 17:57:47","2016-09-23 17:57:47","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/team1.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("588","1","2016-09-23 17:57:48","2016-09-23 17:57:48","","team2","","inherit","open","closed","","team2","","","2016-09-23 17:57:48","2016-09-23 17:57:48","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/team2.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("589","1","2016-09-23 17:57:49","2016-09-23 17:57:49","","team3","","inherit","open","closed","","team3","","","2016-09-23 17:57:49","2016-09-23 17:57:49","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/team3.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("590","1","2016-09-23 17:57:49","2016-09-23 17:57:49","","team4","","inherit","open","closed","","team4","","","2016-09-23 17:57:49","2016-09-23 17:57:49","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/team4.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("592","1","2016-09-23 18:11:53","2016-09-23 18:11:53","","package64","","inherit","open","closed","","package64","","","2016-09-23 18:11:53","2016-09-23 18:11:53","","0","http://atheltree.com/ar/wp-content/uploads/2016/08/package64.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("955","1","2016-09-26 23:01:54","2016-09-26 23:01:54","","pr1","","inherit","open","closed","","pr1","","","2016-09-26 23:01:54","2016-09-26 23:01:54","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/pr1.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("956","1","2016-09-26 23:01:56","2016-09-26 23:01:56","","pr2","","inherit","open","closed","","pr2","","","2016-09-26 23:01:56","2016-09-26 23:01:56","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/pr2.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("957","1","2016-09-26 23:01:58","2016-09-26 23:01:58","","pr3","","inherit","open","closed","","pr3","","","2016-09-26 23:01:58","2016-09-26 23:01:58","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/pr3.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("958","1","2016-09-26 23:02:00","2016-09-26 23:02:00","","pr4","","inherit","open","closed","","pr4","","","2016-09-26 23:02:00","2016-09-26 23:02:00","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/pr4.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("959","1","2016-09-26 23:02:02","2016-09-26 23:02:02","","pr5","","inherit","open","closed","","pr5","","","2016-09-26 23:02:02","2016-09-26 23:02:02","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/pr5.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("960","1","2016-09-26 23:02:04","2016-09-26 23:02:04","","pr6","","inherit","open","closed","","pr6","","","2016-09-26 23:02:04","2016-09-26 23:02:04","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/pr6.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("961","1","2016-09-26 23:02:06","2016-09-26 23:02:06","","pr7","","inherit","open","closed","","pr7","","","2016-09-26 23:02:06","2016-09-26 23:02:06","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/pr7.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("962","1","2016-09-26 23:02:08","2016-09-26 23:02:08","","pr8","","inherit","open","closed","","pr8","","","2016-09-26 23:02:08","2016-09-26 23:02:08","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/pr8.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("963","1","2016-09-26 23:02:10","2016-09-26 23:02:10","","pr9","","inherit","open","closed","","pr9","","","2016-09-26 23:02:10","2016-09-26 23:02:10","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/pr9.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("1026","1","2016-09-27 12:08:56","2016-09-27 12:08:56","","money","","inherit","open","closed","","money","","","2016-09-27 12:08:56","2016-09-27 12:08:56","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/Money.png","0","attachment","image/png","0"); INSERT INTO `wp_posts` VALUES("1027","1","2016-09-27 12:10:30","2016-09-27 12:10:30","","company","","inherit","open","closed","","company","","","2016-09-27 12:10:30","2016-09-27 12:10:30","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/Company.png","0","attachment","image/png","0"); INSERT INTO `wp_posts` VALUES("1072","1","2016-09-27 15:48:06","2016-09-27 15:48:06","","mapmarker","","inherit","open","closed","","mapmarker","","","2016-09-27 15:48:06","2016-09-27 15:48:06","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/mapmarker.png","0","attachment","image/png","0"); INSERT INTO `wp_posts` VALUES("1177","1","2016-09-28 16:10:38","2016-09-28 16:10:38","","slide2","","inherit","open","closed","","slide2-2","","","2016-09-28 16:10:38","2016-09-28 16:10:38","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/slide2.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("1178","1","2016-09-28 16:10:40","2016-09-28 16:10:40","","slide3","","inherit","open","closed","","slide3-2","","","2016-09-28 16:10:40","2016-09-28 16:10:40","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/slide3.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("1179","1","2016-09-28 16:10:41","2016-09-28 16:10:41","","slide4","","inherit","open","closed","","slide4-2","","","2016-09-28 16:10:41","2016-09-28 16:10:41","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/slide4.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("1180","1","2016-09-28 16:10:42","2016-09-28 16:10:42","","slide5","","inherit","open","closed","","slide5","","","2016-09-28 16:10:42","2016-09-28 16:10:42","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/slide5-1.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("1753","1","2016-10-05 10:48:59","2016-10-05 10:48:59","","marker-light","","inherit","open","closed","","marker-light","","","2016-10-05 10:48:59","2016-10-05 10:48:59","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/marker-light.png","0","attachment","image/png","0"); INSERT INTO `wp_posts` VALUES("1787","1","2016-10-06 00:33:27","2016-10-06 00:33:27","","2","","inherit","open","closed","","2-2","","","2016-10-06 00:33:27","2016-10-06 00:33:27","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/2.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("1788","1","2016-10-06 00:33:31","2016-10-06 00:33:31","","11","","inherit","open","closed","","11-2","","","2016-10-06 00:33:31","2016-10-06 00:33:31","","0","http://atheltree.com/ar/wp-content/uploads/2016/09/11.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("1904","1","2016-12-16 02:29:23","2016-12-16 02:29:23","","slide9.jpg","","inherit","closed","closed","","slide9-jpg","","","2016-12-16 02:29:23","2016-12-16 02:29:23","","0","http://atheltree.com/ar/wp-content/uploads/2016/12/slide9.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("1905","1","2016-12-16 02:29:26","2016-12-16 02:29:26","","slide3.jpg","","inherit","closed","closed","","slide3-jpg","","","2016-12-16 02:29:26","2016-12-16 02:29:26","","0","http://atheltree.com/ar/wp-content/uploads/2016/12/slide3.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("1906","1","2016-12-16 02:29:28","2016-12-16 02:29:28","","slide4.jpg","","inherit","closed","closed","","slide4-jpg","","","2016-12-16 02:29:28","2016-12-16 02:29:28","","0","http://atheltree.com/ar/wp-content/uploads/2016/12/slide4.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("1907","1","2016-12-16 02:29:31","2016-12-16 02:29:31","","slide9.jpg","","inherit","closed","closed","","slide9-jpg-2","","","2016-12-16 02:29:31","2016-12-16 02:29:31","","0","http://atheltree.com/ar/wp-content/uploads/2016/12/slide9-1.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("1956","1","2016-12-16 02:50:46","2016-12-15 23:50:46","","untitled-62","","inherit","open","closed","","untitled-62","","","2016-12-16 02:50:46","2016-12-15 23:50:46","","0","http://atheltree.com/ar/wp-content/uploads/2016/12/Untitled-62.gif","0","attachment","image/gif","0"); INSERT INTO `wp_posts` VALUES("1957","1","2016-12-16 02:51:56","2016-12-15 23:51:56","","untitled-62","","inherit","open","closed","","untitled-62-2","","","2016-12-16 02:51:56","2016-12-15 23:51:56","","0","http://atheltree.com/ar/wp-content/uploads/2016/12/Untitled-62-1.gif","0","attachment","image/gif","0"); INSERT INTO `wp_posts` VALUES("1974","1","2016-12-16 02:54:56","2016-12-15 23:54:56","","untitled-62","","inherit","open","closed","","untitled-62-3","","","2016-12-16 02:54:56","2016-12-15 23:54:56","","0","http://atheltree.com/ar/wp-content/uploads/2016/12/Untitled-62-2-e1481846123122.gif","0","attachment","image/gif","0"); INSERT INTO `wp_posts` VALUES("1975","1","2016-12-16 02:56:52","2016-12-15 23:56:52","","untitled-6-12","","inherit","open","closed","","untitled-6-12","","","2016-12-16 02:56:52","2016-12-15 23:56:52","","0","http://atheltree.com/ar/wp-content/uploads/2016/12/Untitled-6-12-e1481846238400.jpg","0","attachment","image/jpeg","0"); INSERT INTO `wp_posts` VALUES("1984","1","2016-12-16 03:01:10","2016-12-16 00:01:10","","untitled-59","","inherit","open","closed","","untitled-59","","","2016-12-16 03:01:10","2016-12-16 00:01:10","","0","http://atheltree.com/ar/wp-content/uploads/2016/12/Untitled-59.gif","0","attachment","image/gif","0"); INSERT INTO `wp_posts` VALUES("407","1","2016-09-08 08:49:15","2016-09-08 08:49:15","","Adwaa Alwafee","","publish","closed","closed","","virqo-com","","","2016-09-08 08:49:15","2016-09-08 08:49:15","","0","http://demo.themetor.com/bizpro/?post_type=clients&p=407","0","clients","","0"); INSERT INTO `wp_posts` VALUES("414","1","2016-09-08 08:49:42","2016-09-08 08:49:42","","Super Soft Company","","publish","closed","closed","","elmim-com","","","2016-09-08 08:49:42","2016-09-08 08:49:42","","0","http://demo.themetor.com/bizpro/?post_type=clients&p=414","0","clients","","0"); INSERT INTO `wp_posts` VALUES("415","1","2016-09-08 08:50:04","2016-09-08 08:50:04","","Retaj Pharmacies Group","","publish","closed","closed","","omlia-com","","","2016-09-08 08:50:04","2016-09-08 08:50:04","","0","http://demo.themetor.com/bizpro/?post_type=clients&p=415","0","clients","","0"); INSERT INTO `wp_posts` VALUES("416","1","2016-09-08 08:50:28","2016-09-08 08:50:28","","Pharma Group","","publish","closed","closed","","yooxle-com","","","2016-09-08 08:50:28","2016-09-08 08:50:28","","0","http://demo.themetor.com/bizpro/?post_type=clients&p=416","0","clients","","0"); INSERT INTO `wp_posts` VALUES("417","1","2016-09-08 08:50:49","2016-09-08 08:50:49","","Saudi Antiserum company","","publish","closed","closed","","netzif-com","","","2016-09-08 08:50:49","2016-09-08 08:50:49","","0","http://demo.themetor.com/bizpro/?post_type=clients&p=417","0","clients","","0"); INSERT INTO `wp_posts` VALUES("418","1","2016-09-08 08:51:22","2016-09-08 08:51:22","","Medical Division Sectors","","publish","closed","closed","","zitix-com","","","2016-09-08 08:51:22","2016-09-08 08:51:22","","0","http://demo.themetor.com/bizpro/?post_type=clients&p=418","0","clients","","0"); INSERT INTO `wp_posts` VALUES("1986","1","2017-03-21 11:06:46","2017-03-21 11:06:46","","Privacy & Policy","","publish","closed","closed","","privacy-policy","","","2017-03-21 11:06:46","2017-03-21 11:06:46","","0","http://atheltree.com/ar/2017/03/21/privacy-policy/","4","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("1987","1","2017-03-21 11:06:46","2017-03-21 11:06:46","","Terms & Conditions","","publish","closed","closed","","terms-conditions","","","2017-03-21 11:06:46","2017-03-21 11:06:46","","0","http://atheltree.com/ar/2017/03/21/terms-conditions/","5","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("1988","1","2017-03-21 11:06:46","2017-03-21 11:06:46","","About","","publish","closed","closed","","about","","","2017-03-21 11:06:46","2017-03-21 11:06:46","","0","http://atheltree.com/ar/2017/03/21/about/","1","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("1989","1","2017-03-21 11:06:46","2017-03-21 11:06:46","","Team","","publish","closed","closed","","team","","","2017-03-21 11:06:46","2017-03-21 11:06:46","","0","http://atheltree.com/ar/2017/03/21/team/","2","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("1990","1","2017-03-21 11:06:46","2017-03-21 11:06:46","","Services","","publish","closed","closed","","services","","","2017-03-21 11:06:46","2017-03-21 11:06:46","","0","http://atheltree.com/ar/2017/03/21/services/","3","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("1991","1","2017-03-21 11:06:46","2017-03-21 11:06:46","","Works","","publish","closed","closed","","works","","","2017-03-21 11:06:46","2017-03-21 11:06:46","","0","http://atheltree.com/ar/2017/03/21/works/","4","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("1992","1","2017-03-21 11:06:46","2017-03-21 11:06:46","","Skills","","publish","closed","closed","","skills","","","2017-03-21 11:06:46","2017-03-21 11:06:46","","0","http://atheltree.com/ar/2017/03/21/skills/","5","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("1993","1","2017-03-21 11:06:46","2017-03-21 11:06:46","","Testimonials","","publish","closed","closed","","testimonials","","","2017-03-21 11:06:46","2017-03-21 11:06:46","","0","http://atheltree.com/ar/2017/03/21/testimonials/","6","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("1994","1","2017-03-21 11:06:46","2017-03-21 11:06:46","","Pricing","","publish","closed","closed","","pricing","","","2017-03-21 11:06:46","2017-03-21 11:06:46","","0","http://atheltree.com/ar/2017/03/21/pricing/","7","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("1995","1","2017-03-21 11:06:46","2017-03-21 11:06:46","","News","","publish","closed","closed","","news","","","2017-03-21 11:06:46","2017-03-21 11:06:46","","0","http://atheltree.com/ar/2017/03/21/news/","8","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("1996","1","2017-03-21 11:06:46","2017-03-21 11:06:46","","Contact","","publish","closed","closed","","contact","","","2017-03-21 11:06:46","2017-03-21 11:06:46","","0","http://atheltree.com/ar/2017/03/21/contact/","9","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("2209","1","2016-12-20 17:45:14","2016-12-20 14:45:14","","Rema Al-riyadh","","publish","closed","closed","","rema-al-riyadh","","","2016-12-20 17:45:14","2016-12-20 14:45:14","","0","http://atheltree.com/?post_type=clients&p=2209","5","clients","","0"); INSERT INTO `wp_posts` VALUES("22","1","2016-08-04 16:57:01","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 16:57:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=22","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("23","1","2016-08-04 16:57:01","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 16:57:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=23","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("24","1","2016-08-04 16:57:01","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 16:57:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=24","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("25","1","2016-08-04 16:57:01","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 16:57:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=25","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("26","1","2016-08-04 16:57:01","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 16:57:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=26","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("27","1","2016-08-04 16:57:01","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 16:57:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=27","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("28","1","2016-08-04 16:57:01","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 16:57:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=28","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("29","1","2016-08-04 16:57:01","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 16:57:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=29","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("30","1","2016-08-04 17:16:34","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 17:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=30","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("31","1","2016-08-04 17:16:34","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 17:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=31","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("32","1","2016-08-04 17:16:34","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 17:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=32","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("33","1","2016-08-04 17:16:34","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 17:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=33","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("34","1","2016-08-04 17:16:34","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 17:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=34","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("35","1","2016-08-04 17:16:34","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 17:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=35","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("36","1","2016-08-04 17:16:34","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 17:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=36","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("37","1","2016-08-04 17:16:34","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 17:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=37","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("38","1","2016-08-04 21:04:22","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:04:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=38","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("39","1","2016-08-04 21:04:22","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:04:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=39","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("40","1","2016-08-04 21:04:22","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:04:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=40","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("41","1","2016-08-04 21:04:22","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:04:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=41","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("42","1","2016-08-04 21:04:22","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:04:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=42","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("43","1","2016-08-04 21:04:22","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:04:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=43","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("44","1","2016-08-04 21:04:22","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:04:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=44","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("45","1","2016-08-04 21:04:22","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:04:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=45","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("49","1","2016-08-04 21:06:51","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:06:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=49","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("50","1","2016-08-04 21:06:52","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:06:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=50","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("51","1","2016-08-04 21:06:52","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:06:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=51","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("52","1","2016-08-04 21:06:52","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:06:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=52","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("53","1","2016-08-04 21:06:52","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:06:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=53","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("54","1","2016-08-04 21:06:52","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:06:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=54","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("55","1","2016-08-04 21:06:52","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:06:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=55","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("56","1","2016-08-04 21:06:52","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:06:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=56","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("57","1","2016-08-04 21:09:38","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:09:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=57","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("58","1","2016-08-04 21:09:38","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:09:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=58","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("59","1","2016-08-04 21:09:38","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:09:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=59","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("60","1","2016-08-04 21:09:38","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:09:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=60","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("61","1","2016-08-04 21:09:38","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:09:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=61","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("62","1","2016-08-04 21:09:38","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:09:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=62","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("63","1","2016-08-04 21:09:38","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:09:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=63","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("64","1","2016-08-04 21:09:39","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:09:39","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=64","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("65","1","2016-08-04 21:09:49","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:09:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=65","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("66","1","2016-08-04 21:09:49","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:09:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=66","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("67","1","2016-08-04 21:09:49","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:09:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=67","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("68","1","2016-08-04 21:09:49","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:09:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=68","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("69","1","2016-08-04 21:09:49","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:09:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=69","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("70","1","2016-08-04 21:09:49","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:09:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=70","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("71","1","2016-08-04 21:09:49","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:09:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=71","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("72","1","2016-08-04 21:09:49","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:09:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=72","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("73","1","2016-08-04 21:10:25","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:10:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=73","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("74","1","2016-08-04 21:10:25","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:10:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=74","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("75","1","2016-08-04 21:10:25","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:10:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=75","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("76","1","2016-08-04 21:10:25","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:10:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=76","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("77","1","2016-08-04 21:10:25","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:10:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=77","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("78","1","2016-08-04 21:10:25","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:10:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=78","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("79","1","2016-08-04 21:10:25","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:10:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=79","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("80","1","2016-08-04 21:10:25","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:10:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=80","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("81","1","2016-08-04 21:10:53","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:10:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=81","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("82","1","2016-08-04 21:10:53","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:10:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=82","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("83","1","2016-08-04 21:10:53","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:10:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=83","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("84","1","2016-08-04 21:10:53","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:10:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=84","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("85","1","2016-08-04 21:10:53","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:10:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=85","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("86","1","2016-08-04 21:10:53","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:10:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=86","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("87","1","2016-08-04 21:10:53","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:10:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=87","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("88","1","2016-08-04 21:10:53","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:10:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=88","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("89","1","2016-08-04 21:11:09","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:11:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=89","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("90","1","2016-08-04 21:11:09","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:11:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=90","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("91","1","2016-08-04 21:11:09","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:11:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=91","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("92","1","2016-08-04 21:11:09","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:11:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=92","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("93","1","2016-08-04 21:11:09","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:11:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=93","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("94","1","2016-08-04 21:11:09","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:11:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=94","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("95","1","2016-08-04 21:11:09","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:11:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=95","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("96","1","2016-08-04 21:11:09","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:11:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=96","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("104","1","2016-08-04 21:16:08","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:16:08","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=104","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("105","1","2016-08-04 21:16:08","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:16:08","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=105","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("106","1","2016-08-04 21:16:08","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:16:08","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=106","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("107","1","2016-08-04 21:16:08","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:16:08","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=107","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("108","1","2016-08-04 21:16:08","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:16:08","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=108","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("109","1","2016-08-04 21:16:08","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:16:08","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=109","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("110","1","2016-08-04 21:16:08","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:16:08","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=110","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("111","1","2016-08-04 21:16:08","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:16:08","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=111","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("112","1","2016-08-04 21:16:19","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:16:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=112","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("113","1","2016-08-04 21:16:19","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:16:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=113","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("114","1","2016-08-04 21:16:19","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:16:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=114","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("115","1","2016-08-04 21:16:19","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:16:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=115","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("116","1","2016-08-04 21:16:19","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:16:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=116","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("117","1","2016-08-04 21:16:19","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:16:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=117","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("118","1","2016-08-04 21:16:19","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:16:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=118","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("119","1","2016-08-04 21:16:19","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:16:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=119","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("120","1","2016-08-04 21:18:13","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:18:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=120","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("121","1","2016-08-04 21:18:13","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:18:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=121","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("122","1","2016-08-04 21:18:13","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:18:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=122","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("123","1","2016-08-04 21:18:13","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:18:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=123","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("124","1","2016-08-04 21:18:13","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:18:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=124","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("125","1","2016-08-04 21:18:13","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:18:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=125","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("126","1","2016-08-04 21:18:13","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:18:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=126","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("127","1","2016-08-04 21:18:13","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:18:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=127","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("128","1","2016-08-04 21:18:22","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:18:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=128","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("129","1","2016-08-04 21:18:22","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:18:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=129","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("130","1","2016-08-04 21:18:22","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:18:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=130","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("131","1","2016-08-04 21:18:22","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:18:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=131","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("132","1","2016-08-04 21:18:22","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:18:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=132","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("133","1","2016-08-04 21:18:22","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:18:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=133","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("134","1","2016-08-04 21:18:22","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:18:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=134","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("135","1","2016-08-04 21:18:22","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:18:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=135","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("137","1","2016-08-04 21:22:01","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:22:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=137","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("138","1","2016-08-04 21:22:01","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:22:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=138","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("139","1","2016-08-04 21:22:01","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:22:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=139","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("140","1","2016-08-04 21:22:01","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:22:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=140","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("141","1","2016-08-04 21:22:01","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:22:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=141","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("142","1","2016-08-04 21:22:01","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:22:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=142","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("143","1","2016-08-04 21:22:01","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:22:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=143","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("144","1","2016-08-04 21:22:01","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:22:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=144","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("145","1","2016-08-04 21:22:25","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:22:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=145","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("146","1","2016-08-04 21:22:25","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:22:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=146","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("147","1","2016-08-04 21:22:25","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:22:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=147","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("148","1","2016-08-04 21:22:25","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:22:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=148","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("149","1","2016-08-04 21:22:25","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:22:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=149","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("150","1","2016-08-04 21:22:25","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:22:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=150","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("151","1","2016-08-04 21:22:25","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:22:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=151","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("152","1","2016-08-04 21:22:25","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:22:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=152","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("153","1","2016-08-04 21:25:32","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:25:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=153","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("154","1","2016-08-04 21:25:32","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:25:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=154","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("155","1","2016-08-04 21:25:32","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:25:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=155","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("156","1","2016-08-04 21:25:32","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:25:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=156","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("157","1","2016-08-04 21:25:32","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:25:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=157","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("158","1","2016-08-04 21:25:32","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:25:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=158","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("159","1","2016-08-04 21:25:32","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:25:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=159","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("160","1","2016-08-04 21:25:32","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:25:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=160","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("161","1","2016-08-04 21:25:55","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-04 21:25:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=161","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("162","1","2016-08-04 21:25:55","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-04 21:25:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=162","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("163","1","2016-08-04 21:25:55","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-04 21:25:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=163","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("164","1","2016-08-04 21:25:55","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-04 21:25:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=164","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("165","1","2016-08-04 21:25:55","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-04 21:25:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=165","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("166","1","2016-08-04 21:25:55","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-04 21:25:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=166","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("167","1","2016-08-04 21:25:55","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-04 21:25:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=167","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("168","1","2016-08-04 21:25:55","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-04 21:25:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=168","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("169","1","2016-08-05 08:55:17","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-05 08:55:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=169","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("170","1","2016-08-05 08:55:17","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-05 08:55:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=170","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("171","1","2016-08-05 08:55:17","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-05 08:55:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=171","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("172","1","2016-08-05 08:55:17","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-05 08:55:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=172","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("173","1","2016-08-05 08:55:17","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-05 08:55:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=173","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("174","1","2016-08-05 08:55:17","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-05 08:55:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=174","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("175","1","2016-08-05 08:55:17","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-05 08:55:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=175","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("176","1","2016-08-05 08:55:17","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-05 08:55:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=176","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("177","1","2016-08-05 08:56:02","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-05 08:56:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=177","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("178","1","2016-08-05 08:56:02","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-05 08:56:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=178","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("179","1","2016-08-05 08:56:02","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-05 08:56:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=179","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("180","1","2016-08-05 08:56:02","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-05 08:56:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=180","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("181","1","2016-08-05 08:56:02","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-05 08:56:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=181","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("182","1","2016-08-05 08:56:02","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-05 08:56:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=182","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("183","1","2016-08-05 08:56:02","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-05 08:56:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=183","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("184","1","2016-08-05 08:56:02","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-05 08:56:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=184","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("185","1","2016-08-05 09:03:28","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-05 09:03:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=185","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("186","1","2016-08-05 09:03:28","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-05 09:03:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=186","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("187","1","2016-08-05 09:03:28","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-05 09:03:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=187","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("188","1","2016-08-05 09:03:28","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-05 09:03:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=188","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("189","1","2016-08-05 09:03:28","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-05 09:03:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=189","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("190","1","2016-08-05 09:03:28","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-05 09:03:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=190","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("191","1","2016-08-05 09:03:28","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-05 09:03:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=191","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("192","1","2016-08-05 09:03:28","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-05 09:03:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=192","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("193","1","2016-08-09 21:45:03","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-09 21:45:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=193","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("194","1","2016-08-09 21:45:04","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-09 21:45:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=194","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("195","1","2016-08-09 21:45:04","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-09 21:45:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=195","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("196","1","2016-08-09 21:45:05","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-09 21:45:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=196","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("197","1","2016-08-09 21:45:05","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-09 21:45:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=197","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("198","1","2016-08-09 21:45:05","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-09 21:45:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=198","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("199","1","2016-08-09 21:45:05","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-09 21:45:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=199","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("200","1","2016-08-09 21:45:05","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-09 21:45:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=200","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("201","1","2016-08-09 21:46:47","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-09 21:46:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=201","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("202","1","2016-08-09 21:46:47","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-09 21:46:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=202","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("203","1","2016-08-09 21:46:47","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-09 21:46:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=203","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("204","1","2016-08-09 21:46:47","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-09 21:46:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=204","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("205","1","2016-08-09 21:46:47","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-09 21:46:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=205","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("206","1","2016-08-09 21:46:47","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-09 21:46:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=206","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("207","1","2016-08-09 21:46:47","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-09 21:46:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=207","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("208","1","2016-08-09 21:46:48","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-09 21:46:48","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=208","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("209","1","2016-08-09 21:49:42","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-09 21:49:42","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=209","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("210","1","2016-08-09 21:49:43","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-09 21:49:43","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=210","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("211","1","2016-08-09 21:49:43","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-09 21:49:43","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=211","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("212","1","2016-08-09 21:49:43","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-09 21:49:43","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=212","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("213","1","2016-08-09 21:49:43","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-09 21:49:43","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=213","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("214","1","2016-08-09 21:49:43","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-09 21:49:43","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=214","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("215","1","2016-08-09 21:49:43","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-09 21:49:43","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=215","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("216","1","2016-08-09 21:49:43","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-09 21:49:43","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=216","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("220","1","2016-08-09 22:30:58","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-09 22:30:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=220","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("221","1","2016-08-09 22:30:58","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-09 22:30:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=221","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("222","1","2016-08-09 22:30:58","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-09 22:30:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=222","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("223","1","2016-08-09 22:30:58","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-09 22:30:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=223","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("224","1","2016-08-09 22:30:58","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-09 22:30:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=224","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("225","1","2016-08-09 22:30:58","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-09 22:30:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=225","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("226","1","2016-08-09 22:30:58","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-09 22:30:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=226","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("227","1","2016-08-09 22:30:58","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-09 22:30:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=227","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("228","1","2016-08-09 22:31:17","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-09 22:31:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=228","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("229","1","2016-08-09 22:31:17","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-09 22:31:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=229","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("230","1","2016-08-09 22:31:17","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-09 22:31:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=230","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("231","1","2016-08-09 22:31:17","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-09 22:31:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=231","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("232","1","2016-08-09 22:31:17","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-09 22:31:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=232","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("233","1","2016-08-09 22:31:17","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-09 22:31:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=233","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("234","1","2016-08-09 22:31:17","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-09 22:31:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=234","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("235","1","2016-08-09 22:31:17","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-09 22:31:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=235","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("259","1","2016-08-13 09:38:09","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-13 09:38:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=259","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("260","1","2016-08-13 09:38:09","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-13 09:38:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=260","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("261","1","2016-08-13 09:38:09","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-13 09:38:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=261","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("262","1","2016-08-13 09:38:09","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-13 09:38:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=262","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("263","1","2016-08-13 09:38:09","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-13 09:38:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=263","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("264","1","2016-08-13 09:38:09","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-13 09:38:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=264","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("265","1","2016-08-13 09:38:09","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-13 09:38:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=265","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("266","1","2016-08-13 09:38:09","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-13 09:38:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=266","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("267","1","2016-08-13 09:38:22","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-13 09:38:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=267","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("268","1","2016-08-13 09:38:22","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-13 09:38:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=268","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("269","1","2016-08-13 09:38:22","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-13 09:38:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=269","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("270","1","2016-08-13 09:38:22","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-13 09:38:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=270","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("271","1","2016-08-13 09:38:22","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-13 09:38:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=271","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("272","1","2016-08-13 09:38:22","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-13 09:38:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=272","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("273","1","2016-08-13 09:38:22","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-13 09:38:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=273","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("274","1","2016-08-13 09:38:23","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-13 09:38:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=274","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("281","1","2016-08-23 20:46:32","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-23 20:46:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=281","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("282","1","2016-08-23 20:46:32","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-23 20:46:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=282","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("283","1","2016-08-23 20:46:32","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-23 20:46:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=283","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("284","1","2016-08-23 20:46:32","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-23 20:46:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=284","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("285","1","2016-08-23 20:46:33","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-23 20:46:33","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=285","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("286","1","2016-08-23 20:46:33","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-23 20:46:33","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=286","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("287","1","2016-08-23 20:46:33","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-23 20:46:33","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=287","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("288","1","2016-08-23 20:46:33","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-23 20:46:33","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=288","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("289","1","2016-08-25 06:22:23","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-25 06:22:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=289","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("290","1","2016-08-25 06:22:23","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-25 06:22:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=290","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("291","1","2016-08-25 06:22:23","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-25 06:22:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=291","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("292","1","2016-08-25 06:22:23","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-25 06:22:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=292","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("293","1","2016-08-25 06:22:23","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-25 06:22:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=293","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("294","1","2016-08-25 06:22:23","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-25 06:22:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=294","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("295","1","2016-08-25 06:22:23","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-25 06:22:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=295","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("296","1","2016-08-25 06:22:23","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-25 06:22:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=296","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("297","1","2016-08-25 06:22:38","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-08-25 06:22:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=297","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("298","1","2016-08-25 06:22:38","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-08-25 06:22:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=298","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("299","1","2016-08-25 06:22:38","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-08-25 06:22:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=299","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("300","1","2016-08-25 06:22:38","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-08-25 06:22:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=300","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("301","1","2016-08-25 06:22:38","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-08-25 06:22:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=301","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("302","1","2016-08-25 06:22:38","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-08-25 06:22:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=302","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("303","1","2016-08-25 06:22:38","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-08-25 06:22:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=303","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("304","1","2016-08-25 06:22:38","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-08-25 06:22:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=304","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("338","1","2016-09-03 21:20:19","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-03 21:20:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=338","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("339","1","2016-09-03 21:20:20","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-03 21:20:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=339","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("340","1","2016-09-03 21:20:20","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-03 21:20:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=340","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("341","1","2016-09-03 21:20:20","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-03 21:20:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=341","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("342","1","2016-09-03 21:20:20","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-03 21:20:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=342","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("343","1","2016-09-03 21:20:20","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-03 21:20:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=343","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("344","1","2016-09-03 21:20:20","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-03 21:20:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=344","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("345","1","2016-09-03 21:20:20","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-03 21:20:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=345","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("432","1","2016-09-17 23:05:36","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-17 23:05:36","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=432","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("433","1","2016-09-17 23:05:36","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-17 23:05:36","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=433","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("434","1","2016-09-17 23:05:36","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-17 23:05:36","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=434","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("435","1","2016-09-17 23:05:37","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-17 23:05:37","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=435","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("436","1","2016-09-17 23:05:37","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-17 23:05:37","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=436","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("437","1","2016-09-17 23:05:37","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-17 23:05:37","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=437","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("438","1","2016-09-17 23:05:37","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-17 23:05:37","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=438","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("439","1","2016-09-17 23:05:37","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-17 23:05:37","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=439","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("440","1","2016-09-17 23:08:05","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-17 23:08:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=440","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("441","1","2016-09-17 23:08:05","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-17 23:08:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=441","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("442","1","2016-09-17 23:08:05","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-17 23:08:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=442","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("443","1","2016-09-17 23:08:05","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-17 23:08:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=443","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("444","1","2016-09-17 23:08:05","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-17 23:08:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=444","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("445","1","2016-09-17 23:08:05","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-17 23:08:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=445","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("446","1","2016-09-17 23:08:06","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-17 23:08:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=446","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("447","1","2016-09-17 23:08:06","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-17 23:08:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=447","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("448","1","2016-09-17 23:08:16","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-17 23:08:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=448","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("449","1","2016-09-17 23:08:16","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-17 23:08:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=449","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("450","1","2016-09-17 23:08:16","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-17 23:08:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=450","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("451","1","2016-09-17 23:08:16","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-17 23:08:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=451","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("452","1","2016-09-17 23:08:16","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-17 23:08:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=452","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("453","1","2016-09-17 23:08:16","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-17 23:08:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=453","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("454","1","2016-09-17 23:08:16","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-17 23:08:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=454","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("455","1","2016-09-17 23:08:16","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-17 23:08:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=455","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("456","1","2016-09-17 23:08:45","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-17 23:08:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=456","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("457","1","2016-09-17 23:08:45","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-17 23:08:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=457","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("458","1","2016-09-17 23:08:45","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-17 23:08:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=458","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("459","1","2016-09-17 23:08:45","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-17 23:08:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=459","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("460","1","2016-09-17 23:08:45","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-17 23:08:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=460","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("461","1","2016-09-17 23:08:45","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-17 23:08:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=461","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("462","1","2016-09-17 23:08:45","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-17 23:08:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=462","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("463","1","2016-09-17 23:08:45","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-17 23:08:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=463","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("464","1","2016-09-18 09:45:51","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-18 09:45:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=464","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("465","1","2016-09-18 09:45:52","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-18 09:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=465","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("466","1","2016-09-18 09:45:52","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-18 09:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=466","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("467","1","2016-09-18 09:45:52","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-18 09:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=467","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("468","1","2016-09-18 09:45:52","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-18 09:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=468","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("469","1","2016-09-18 09:45:52","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-18 09:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=469","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("470","1","2016-09-18 09:45:52","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-18 09:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=470","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("471","1","2016-09-18 09:45:52","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-18 09:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=471","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("472","1","2016-09-18 09:45:58","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-18 09:45:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=472","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("473","1","2016-09-18 09:45:58","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-18 09:45:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=473","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("474","1","2016-09-18 09:45:58","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-18 09:45:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=474","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("475","1","2016-09-18 09:45:58","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-18 09:45:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=475","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("476","1","2016-09-18 09:45:58","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-18 09:45:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=476","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("477","1","2016-09-18 09:45:58","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-18 09:45:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=477","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("478","1","2016-09-18 09:45:58","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-18 09:45:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=478","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("479","1","2016-09-18 09:45:58","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-18 09:45:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=479","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("483","1","2016-09-18 20:45:34","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-18 20:45:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=483","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("484","1","2016-09-18 20:45:34","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-18 20:45:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=484","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("485","1","2016-09-18 20:45:34","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-18 20:45:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=485","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("486","1","2016-09-18 20:45:35","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-18 20:45:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=486","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("487","1","2016-09-18 20:45:35","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-18 20:45:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=487","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("488","1","2016-09-18 20:45:35","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-18 20:45:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=488","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("489","1","2016-09-18 20:45:35","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-18 20:45:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=489","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("490","1","2016-09-18 20:45:35","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-18 20:45:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=490","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("492","1","2016-09-18 22:36:26","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-18 22:36:26","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=492","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("493","1","2016-09-18 22:36:27","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-18 22:36:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=493","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("494","1","2016-09-18 22:36:27","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-18 22:36:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=494","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("495","1","2016-09-18 22:36:27","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-18 22:36:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=495","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("496","1","2016-09-18 22:36:27","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-18 22:36:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=496","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("497","1","2016-09-18 22:36:27","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-18 22:36:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=497","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("498","1","2016-09-18 22:36:27","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-18 22:36:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=498","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("499","1","2016-09-18 22:36:27","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-18 22:36:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=499","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("500","1","2016-09-18 22:36:41","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-18 22:36:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=500","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("501","1","2016-09-18 22:36:41","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-18 22:36:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=501","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("502","1","2016-09-18 22:36:41","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-18 22:36:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=502","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("503","1","2016-09-18 22:36:41","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-18 22:36:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=503","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("504","1","2016-09-18 22:36:41","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-18 22:36:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=504","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("505","1","2016-09-18 22:36:41","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-18 22:36:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=505","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("506","1","2016-09-18 22:36:41","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-18 22:36:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=506","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("507","1","2016-09-18 22:36:41","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-18 22:36:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=507","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("528","1","2016-09-19 23:50:52","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-19 23:50:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=528","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("529","1","2016-09-19 23:50:52","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-19 23:50:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=529","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("530","1","2016-09-19 23:50:52","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-19 23:50:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=530","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("531","1","2016-09-19 23:50:52","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-19 23:50:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=531","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("532","1","2016-09-19 23:50:52","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-19 23:50:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=532","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("533","1","2016-09-19 23:50:52","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-19 23:50:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=533","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("534","1","2016-09-19 23:50:52","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-19 23:50:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=534","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("535","1","2016-09-19 23:50:53","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-19 23:50:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=535","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("536","1","2016-09-19 23:51:09","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-19 23:51:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=536","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("537","1","2016-09-19 23:51:09","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-19 23:51:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=537","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("538","1","2016-09-19 23:51:09","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-19 23:51:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=538","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("539","1","2016-09-19 23:51:09","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-19 23:51:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=539","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("540","1","2016-09-19 23:51:09","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-19 23:51:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=540","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("541","1","2016-09-19 23:51:09","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-19 23:51:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=541","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("542","1","2016-09-19 23:51:09","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-19 23:51:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=542","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("543","1","2016-09-19 23:51:09","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-19 23:51:09","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=543","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("567","1","2016-09-20 17:08:27","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-20 17:08:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=567","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("568","1","2016-09-20 17:08:28","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-20 17:08:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=568","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("569","1","2016-09-20 17:08:28","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-20 17:08:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=569","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("570","1","2016-09-20 17:08:28","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-20 17:08:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=570","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("571","1","2016-09-20 17:08:28","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-20 17:08:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=571","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("572","1","2016-09-20 17:08:28","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-20 17:08:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=572","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("573","1","2016-09-20 17:08:28","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-20 17:08:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=573","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("574","1","2016-09-20 17:08:28","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-20 17:08:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=574","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("575","1","2016-09-20 17:08:44","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-20 17:08:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=575","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("576","1","2016-09-20 17:08:44","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-20 17:08:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=576","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("577","1","2016-09-20 17:08:44","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-20 17:08:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=577","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("578","1","2016-09-20 17:08:44","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-20 17:08:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=578","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("579","1","2016-09-20 17:08:44","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-20 17:08:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=579","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("580","1","2016-09-20 17:08:44","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-20 17:08:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=580","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("581","1","2016-09-20 17:08:44","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-20 17:08:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=581","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("582","1","2016-09-20 17:08:44","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-20 17:08:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=582","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("626","1","2016-09-24 23:59:58","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-24 23:59:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=626","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("627","1","2016-09-24 23:59:58","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-24 23:59:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=627","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("628","1","2016-09-24 23:59:58","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-24 23:59:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=628","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("629","1","2016-09-24 23:59:58","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-24 23:59:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=629","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("630","1","2016-09-24 23:59:58","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-24 23:59:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=630","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("631","1","2016-09-24 23:59:58","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-24 23:59:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=631","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("632","1","2016-09-24 23:59:58","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-24 23:59:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=632","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("633","1","2016-09-24 23:59:58","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-24 23:59:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=633","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("634","1","2016-09-25 00:00:13","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-25 00:00:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=634","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("635","1","2016-09-25 00:00:13","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-25 00:00:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=635","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("636","1","2016-09-25 00:00:13","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-25 00:00:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=636","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("637","1","2016-09-25 00:00:13","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-25 00:00:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=637","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("638","1","2016-09-25 00:00:13","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-25 00:00:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=638","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("639","1","2016-09-25 00:00:13","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-25 00:00:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=639","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("640","1","2016-09-25 00:00:13","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-25 00:00:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=640","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("641","1","2016-09-25 00:00:13","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-25 00:00:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=641","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("670","1","2016-09-25 10:50:55","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-25 10:50:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=670","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("671","1","2016-09-25 10:50:55","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-25 10:50:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=671","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("672","1","2016-09-25 10:50:55","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-25 10:50:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=672","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("673","1","2016-09-25 10:50:55","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-25 10:50:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=673","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("674","1","2016-09-25 10:50:55","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-25 10:50:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=674","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("675","1","2016-09-25 10:50:55","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-25 10:50:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=675","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("676","1","2016-09-25 10:50:55","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-25 10:50:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=676","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("677","1","2016-09-25 10:50:55","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-25 10:50:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=677","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("678","1","2016-09-25 10:51:03","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-25 10:51:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=678","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("679","1","2016-09-25 10:51:03","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-25 10:51:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=679","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("680","1","2016-09-25 10:51:03","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-25 10:51:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=680","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("681","1","2016-09-25 10:51:03","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-25 10:51:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=681","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("682","1","2016-09-25 10:51:04","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-25 10:51:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=682","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("683","1","2016-09-25 10:51:04","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-25 10:51:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=683","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("684","1","2016-09-25 10:51:04","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-25 10:51:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=684","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("685","1","2016-09-25 10:51:04","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-25 10:51:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=685","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("687","1","2016-09-25 17:38:30","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-25 17:38:30","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=687","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("688","1","2016-09-25 17:38:30","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-25 17:38:30","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=688","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("689","1","2016-09-25 17:38:30","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-25 17:38:30","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=689","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("690","1","2016-09-25 17:38:31","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-25 17:38:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=690","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("691","1","2016-09-25 17:38:31","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-25 17:38:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=691","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("692","1","2016-09-25 17:38:31","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-25 17:38:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=692","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("693","1","2016-09-25 17:38:31","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-25 17:38:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=693","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("694","1","2016-09-25 17:38:31","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-25 17:38:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=694","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("695","1","2016-09-25 17:38:40","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-25 17:38:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=695","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("696","1","2016-09-25 17:38:41","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-25 17:38:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=696","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("697","1","2016-09-25 17:38:41","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-25 17:38:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=697","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("698","1","2016-09-25 17:38:41","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-25 17:38:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=698","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("699","1","2016-09-25 17:38:41","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-25 17:38:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=699","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("700","1","2016-09-25 17:38:41","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-25 17:38:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=700","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("701","1","2016-09-25 17:38:41","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-25 17:38:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=701","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("702","1","2016-09-25 17:38:41","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-25 17:38:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=702","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("703","1","2016-09-25 17:50:26","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-25 17:50:26","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=703","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("704","1","2016-09-25 17:50:26","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-25 17:50:26","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=704","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("705","1","2016-09-25 17:50:26","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-25 17:50:26","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=705","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("706","1","2016-09-25 17:50:26","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-25 17:50:26","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=706","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("707","1","2016-09-25 17:50:26","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-25 17:50:26","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=707","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("708","1","2016-09-25 17:50:26","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-25 17:50:26","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=708","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("709","1","2016-09-25 17:50:26","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-25 17:50:26","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=709","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("710","1","2016-09-25 17:50:26","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-25 17:50:26","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=710","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("711","1","2016-09-25 17:50:38","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-25 17:50:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=711","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("712","1","2016-09-25 17:50:38","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-25 17:50:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=712","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("713","1","2016-09-25 17:50:38","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-25 17:50:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=713","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("714","1","2016-09-25 17:50:38","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-25 17:50:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=714","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("715","1","2016-09-25 17:50:38","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-25 17:50:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=715","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("716","1","2016-09-25 17:50:38","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-25 17:50:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=716","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("717","1","2016-09-25 17:50:38","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-25 17:50:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=717","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("718","1","2016-09-25 17:50:38","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-25 17:50:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=718","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("725","1","2016-09-26 10:12:35","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 10:12:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=725","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("726","1","2016-09-26 10:12:35","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 10:12:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=726","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("727","1","2016-09-26 10:12:35","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 10:12:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=727","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("728","1","2016-09-26 10:12:35","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 10:12:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=728","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("729","1","2016-09-26 10:12:35","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 10:12:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=729","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("730","1","2016-09-26 10:12:35","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 10:12:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=730","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("731","1","2016-09-26 10:12:36","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 10:12:36","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=731","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("732","1","2016-09-26 10:12:36","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 10:12:36","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=732","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("733","1","2016-09-26 10:12:50","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 10:12:50","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=733","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("734","1","2016-09-26 10:12:50","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 10:12:50","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=734","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("735","1","2016-09-26 10:12:50","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 10:12:50","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=735","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("736","1","2016-09-26 10:12:50","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 10:12:50","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=736","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("737","1","2016-09-26 10:12:51","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 10:12:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=737","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("738","1","2016-09-26 10:12:51","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 10:12:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=738","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("739","1","2016-09-26 10:12:51","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 10:12:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=739","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("740","1","2016-09-26 10:12:51","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 10:12:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=740","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("741","1","2016-09-26 10:13:19","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 10:13:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=741","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("742","1","2016-09-26 10:13:20","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 10:13:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=742","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("743","1","2016-09-26 10:13:20","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 10:13:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=743","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("744","1","2016-09-26 10:13:20","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 10:13:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=744","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("745","1","2016-09-26 10:13:20","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 10:13:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=745","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("746","1","2016-09-26 10:13:20","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 10:13:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=746","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("747","1","2016-09-26 10:13:20","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 10:13:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=747","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("748","1","2016-09-26 10:13:20","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 10:13:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=748","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("749","1","2016-09-26 10:14:50","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 10:14:50","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=749","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("750","1","2016-09-26 10:14:51","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 10:14:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=750","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("751","1","2016-09-26 10:14:51","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 10:14:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=751","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("752","1","2016-09-26 10:14:51","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 10:14:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=752","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("753","1","2016-09-26 10:14:51","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 10:14:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=753","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("754","1","2016-09-26 10:14:51","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 10:14:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=754","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("755","1","2016-09-26 10:14:51","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 10:14:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=755","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("756","1","2016-09-26 10:14:51","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 10:14:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=756","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("757","1","2016-09-26 10:18:27","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 10:18:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=757","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("758","1","2016-09-26 10:18:27","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 10:18:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=758","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("759","1","2016-09-26 10:18:27","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 10:18:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=759","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("760","1","2016-09-26 10:18:27","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 10:18:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=760","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("761","1","2016-09-26 10:18:27","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 10:18:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=761","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("762","1","2016-09-26 10:18:27","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 10:18:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=762","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("763","1","2016-09-26 10:18:27","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 10:18:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=763","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("764","1","2016-09-26 10:18:27","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 10:18:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=764","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("765","1","2016-09-26 10:18:46","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 10:18:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=765","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("766","1","2016-09-26 10:18:46","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 10:18:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=766","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("767","1","2016-09-26 10:18:46","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 10:18:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=767","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("768","1","2016-09-26 10:18:46","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 10:18:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=768","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("769","1","2016-09-26 10:18:46","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 10:18:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=769","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("770","1","2016-09-26 10:18:46","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 10:18:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=770","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("771","1","2016-09-26 10:18:47","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 10:18:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=771","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("772","1","2016-09-26 10:18:47","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 10:18:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=772","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("779","1","2016-09-26 10:51:15","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 10:51:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=779","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("780","1","2016-09-26 10:51:15","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 10:51:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=780","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("781","1","2016-09-26 10:51:15","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 10:51:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=781","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("782","1","2016-09-26 10:51:15","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 10:51:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=782","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("783","1","2016-09-26 10:51:15","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 10:51:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=783","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("784","1","2016-09-26 10:51:15","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 10:51:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=784","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("785","1","2016-09-26 10:51:15","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 10:51:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=785","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("786","1","2016-09-26 10:51:16","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 10:51:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=786","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("787","1","2016-09-26 10:51:31","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 10:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=787","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("788","1","2016-09-26 10:51:31","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 10:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=788","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("789","1","2016-09-26 10:51:31","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 10:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=789","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("790","1","2016-09-26 10:51:31","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 10:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=790","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("791","1","2016-09-26 10:51:31","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 10:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=791","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("792","1","2016-09-26 10:51:31","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 10:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=792","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("793","1","2016-09-26 10:51:31","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 10:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=793","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("794","1","2016-09-26 10:51:31","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 10:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=794","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("795","1","2016-09-26 10:52:03","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 10:52:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=795","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("796","1","2016-09-26 10:52:03","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 10:52:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=796","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("797","1","2016-09-26 10:52:03","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 10:52:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=797","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("798","1","2016-09-26 10:52:03","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 10:52:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=798","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("799","1","2016-09-26 10:52:04","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 10:52:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=799","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("800","1","2016-09-26 10:52:04","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 10:52:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=800","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("801","1","2016-09-26 10:52:04","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 10:52:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=801","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("802","1","2016-09-26 10:52:04","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 10:52:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=802","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("803","1","2016-09-26 10:55:47","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 10:55:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=803","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("804","1","2016-09-26 10:55:47","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 10:55:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=804","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("805","1","2016-09-26 10:55:47","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 10:55:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=805","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("806","1","2016-09-26 10:55:47","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 10:55:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=806","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("807","1","2016-09-26 10:55:47","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 10:55:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=807","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("808","1","2016-09-26 10:55:47","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 10:55:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=808","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("809","1","2016-09-26 10:55:47","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 10:55:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=809","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("810","1","2016-09-26 10:55:47","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 10:55:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=810","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("811","1","2016-09-26 11:03:19","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 11:03:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=811","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("812","1","2016-09-26 11:03:19","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 11:03:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=812","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("813","1","2016-09-26 11:03:19","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 11:03:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=813","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("814","1","2016-09-26 11:03:19","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 11:03:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=814","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("815","1","2016-09-26 11:03:19","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 11:03:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=815","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("816","1","2016-09-26 11:03:19","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 11:03:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=816","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("817","1","2016-09-26 11:03:19","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 11:03:19","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=817","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("818","1","2016-09-26 11:03:20","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 11:03:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=818","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("819","1","2016-09-26 11:05:14","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 11:05:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=819","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("820","1","2016-09-26 11:05:14","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 11:05:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=820","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("821","1","2016-09-26 11:05:14","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 11:05:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=821","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("822","1","2016-09-26 11:05:14","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 11:05:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=822","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("823","1","2016-09-26 11:05:14","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 11:05:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=823","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("824","1","2016-09-26 11:05:14","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 11:05:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=824","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("825","1","2016-09-26 11:05:14","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 11:05:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=825","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("826","1","2016-09-26 11:05:14","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 11:05:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=826","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("827","1","2016-09-26 11:05:38","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 11:05:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=827","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("828","1","2016-09-26 11:05:38","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 11:05:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=828","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("829","1","2016-09-26 11:05:38","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 11:05:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=829","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("830","1","2016-09-26 11:05:38","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 11:05:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=830","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("831","1","2016-09-26 11:05:38","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 11:05:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=831","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("832","1","2016-09-26 11:05:38","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 11:05:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=832","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("833","1","2016-09-26 11:05:38","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 11:05:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=833","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("834","1","2016-09-26 11:05:38","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 11:05:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=834","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("835","1","2016-09-26 11:08:40","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 11:08:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=835","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("836","1","2016-09-26 11:08:40","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 11:08:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=836","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("837","1","2016-09-26 11:08:40","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 11:08:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=837","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("838","1","2016-09-26 11:08:40","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 11:08:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=838","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("839","1","2016-09-26 11:08:40","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 11:08:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=839","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("840","1","2016-09-26 11:08:40","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 11:08:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=840","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("841","1","2016-09-26 11:08:40","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 11:08:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=841","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("842","1","2016-09-26 11:08:40","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 11:08:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=842","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("843","1","2016-09-26 17:18:59","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 17:18:59","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=843","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("844","1","2016-09-26 17:19:00","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 17:19:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=844","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("845","1","2016-09-26 17:19:00","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 17:19:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=845","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("846","1","2016-09-26 17:19:00","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 17:19:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=846","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("847","1","2016-09-26 17:19:00","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 17:19:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=847","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("848","1","2016-09-26 17:19:00","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 17:19:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=848","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("849","1","2016-09-26 17:19:00","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 17:19:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=849","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("850","1","2016-09-26 17:19:00","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 17:19:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=850","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("851","1","2016-09-26 17:19:07","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 17:19:07","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=851","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("852","1","2016-09-26 17:19:07","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 17:19:07","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=852","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("853","1","2016-09-26 17:19:07","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 17:19:07","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=853","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("854","1","2016-09-26 17:19:07","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 17:19:07","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=854","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("855","1","2016-09-26 17:19:07","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 17:19:07","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=855","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("856","1","2016-09-26 17:19:07","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 17:19:07","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=856","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("857","1","2016-09-26 17:19:07","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 17:19:07","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=857","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("858","1","2016-09-26 17:19:07","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 17:19:07","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=858","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("976","1","2016-09-26 23:19:18","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 23:19:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=976","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("977","1","2016-09-26 23:19:18","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 23:19:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=977","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("978","1","2016-09-26 23:19:18","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 23:19:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=978","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("979","1","2016-09-26 23:19:18","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 23:19:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=979","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("980","1","2016-09-26 23:19:18","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 23:19:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=980","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("981","1","2016-09-26 23:19:18","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 23:19:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=981","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("982","1","2016-09-26 23:19:18","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 23:19:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=982","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("983","1","2016-09-26 23:19:18","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 23:19:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=983","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("984","1","2016-09-26 23:19:32","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 23:19:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=984","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("985","1","2016-09-26 23:19:32","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 23:19:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=985","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("986","1","2016-09-26 23:19:32","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 23:19:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=986","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("987","1","2016-09-26 23:19:32","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 23:19:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=987","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("988","1","2016-09-26 23:19:32","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 23:19:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=988","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("989","1","2016-09-26 23:19:32","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 23:19:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=989","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("990","1","2016-09-26 23:19:32","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 23:19:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=990","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("991","1","2016-09-26 23:19:32","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 23:19:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=991","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("992","1","2016-09-26 23:57:21","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 23:57:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=992","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("993","1","2016-09-26 23:57:21","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 23:57:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=993","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("994","1","2016-09-26 23:57:21","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 23:57:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=994","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("995","1","2016-09-26 23:57:21","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 23:57:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=995","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("996","1","2016-09-26 23:57:21","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 23:57:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=996","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("997","1","2016-09-26 23:57:21","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 23:57:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=997","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("998","1","2016-09-26 23:57:21","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 23:57:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=998","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("999","1","2016-09-26 23:57:21","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 23:57:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=999","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1000","1","2016-09-26 23:57:46","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 23:57:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1000","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1001","1","2016-09-26 23:57:46","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 23:57:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1001","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1002","1","2016-09-26 23:57:46","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 23:57:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1002","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1003","1","2016-09-26 23:57:46","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 23:57:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1003","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1004","1","2016-09-26 23:57:46","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 23:57:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1004","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1005","1","2016-09-26 23:57:46","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 23:57:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1005","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1006","1","2016-09-26 23:57:46","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 23:57:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1006","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1007","1","2016-09-26 23:57:46","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 23:57:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1007","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1008","1","2016-09-26 23:58:02","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 23:58:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1008","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1009","1","2016-09-26 23:58:02","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 23:58:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1009","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1010","1","2016-09-26 23:58:02","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 23:58:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1010","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1011","1","2016-09-26 23:58:02","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 23:58:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1011","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1012","1","2016-09-26 23:58:02","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 23:58:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1012","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1013","1","2016-09-26 23:58:02","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 23:58:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1013","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1014","1","2016-09-26 23:58:02","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 23:58:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1014","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1015","1","2016-09-26 23:58:02","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 23:58:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1015","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1016","1","2016-09-26 23:58:46","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-26 23:58:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1016","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1017","1","2016-09-26 23:58:46","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-26 23:58:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1017","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1018","1","2016-09-26 23:58:46","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-26 23:58:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1018","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1019","1","2016-09-26 23:58:46","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-26 23:58:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1019","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1020","1","2016-09-26 23:58:46","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-26 23:58:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1020","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1021","1","2016-09-26 23:58:46","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-26 23:58:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1021","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1022","1","2016-09-26 23:58:47","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-26 23:58:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1022","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1023","1","2016-09-26 23:58:47","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-26 23:58:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1023","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1031","1","2016-09-27 12:38:38","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-27 12:38:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1031","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1032","1","2016-09-27 12:38:38","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-27 12:38:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1032","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1033","1","2016-09-27 12:38:38","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-27 12:38:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1033","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1034","1","2016-09-27 12:38:38","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-27 12:38:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1034","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1035","1","2016-09-27 12:38:38","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-27 12:38:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1035","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1036","1","2016-09-27 12:38:38","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-27 12:38:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1036","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1037","1","2016-09-27 12:38:38","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-27 12:38:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1037","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1038","1","2016-09-27 12:38:38","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-27 12:38:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1038","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1039","1","2016-09-27 12:38:50","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-27 12:38:50","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1039","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1040","1","2016-09-27 12:38:50","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-27 12:38:50","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1040","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1041","1","2016-09-27 12:38:50","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-27 12:38:50","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1041","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1042","1","2016-09-27 12:38:50","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-27 12:38:50","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1042","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1043","1","2016-09-27 12:38:50","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-27 12:38:50","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1043","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1044","1","2016-09-27 12:38:50","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-27 12:38:50","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1044","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1045","1","2016-09-27 12:38:51","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-27 12:38:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1045","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1046","1","2016-09-27 12:38:51","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-27 12:38:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1046","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1054","1","2016-09-27 13:58:15","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-27 13:58:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1054","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1055","1","2016-09-27 13:58:15","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-27 13:58:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1055","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1056","1","2016-09-27 13:58:15","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-27 13:58:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1056","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1057","1","2016-09-27 13:58:15","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-27 13:58:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1057","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1058","1","2016-09-27 13:58:16","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-27 13:58:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1058","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1059","1","2016-09-27 13:58:16","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-27 13:58:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1059","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1060","1","2016-09-27 13:58:16","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-27 13:58:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1060","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1061","1","2016-09-27 13:58:16","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-27 13:58:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1061","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1062","1","2016-09-27 13:58:35","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-27 13:58:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1062","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1063","1","2016-09-27 13:58:35","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-27 13:58:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1063","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1064","1","2016-09-27 13:58:35","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-27 13:58:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1064","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1065","1","2016-09-27 13:58:35","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-27 13:58:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1065","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1066","1","2016-09-27 13:58:35","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-27 13:58:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1066","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1067","1","2016-09-27 13:58:35","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-27 13:58:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1067","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1068","1","2016-09-27 13:58:35","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-27 13:58:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1068","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1069","1","2016-09-27 13:58:35","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-27 13:58:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1069","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1114","1","2016-09-28 03:51:30","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-28 03:51:30","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1114","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1115","1","2016-09-28 03:51:31","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-28 03:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1115","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1116","1","2016-09-28 03:51:31","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-28 03:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1116","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1117","1","2016-09-28 03:51:31","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-28 03:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1117","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1118","1","2016-09-28 03:51:31","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-28 03:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1118","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1119","1","2016-09-28 03:51:31","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-28 03:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1119","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1120","1","2016-09-28 03:51:31","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-28 03:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1120","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1121","1","2016-09-28 03:51:31","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-28 03:51:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1121","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1122","1","2016-09-28 13:05:27","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-28 13:05:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1122","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1123","1","2016-09-28 13:05:28","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-28 13:05:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1123","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1124","1","2016-09-28 13:05:28","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-28 13:05:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1124","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1125","1","2016-09-28 13:05:28","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-28 13:05:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1125","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1126","1","2016-09-28 13:05:28","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-28 13:05:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1126","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1127","1","2016-09-28 13:05:28","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-28 13:05:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1127","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1128","1","2016-09-28 13:05:28","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-28 13:05:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1128","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1129","1","2016-09-28 13:05:28","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-28 13:05:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1129","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1130","1","2016-09-28 13:05:53","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-28 13:05:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1130","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1131","1","2016-09-28 13:05:53","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-28 13:05:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1131","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1132","1","2016-09-28 13:05:53","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-28 13:05:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1132","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1133","1","2016-09-28 13:05:53","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-28 13:05:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1133","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1134","1","2016-09-28 13:05:53","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-28 13:05:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1134","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1135","1","2016-09-28 13:05:53","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-28 13:05:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1135","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1136","1","2016-09-28 13:05:53","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-28 13:05:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1136","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1137","1","2016-09-28 13:05:54","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-28 13:05:54","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1137","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1138","1","2016-09-28 13:06:22","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-28 13:06:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1138","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1139","1","2016-09-28 13:06:22","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-28 13:06:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1139","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1140","1","2016-09-28 13:06:22","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-28 13:06:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1140","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1141","1","2016-09-28 13:06:22","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-28 13:06:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1141","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1142","1","2016-09-28 13:06:22","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-28 13:06:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1142","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1143","1","2016-09-28 13:06:22","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-28 13:06:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1143","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1144","1","2016-09-28 13:06:22","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-28 13:06:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1144","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1145","1","2016-09-28 13:06:23","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-28 13:06:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1145","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1146","1","2016-09-28 13:50:02","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-28 13:50:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1146","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1147","1","2016-09-28 13:50:02","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-28 13:50:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1147","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1148","1","2016-09-28 13:50:02","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-28 13:50:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1148","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1149","1","2016-09-28 13:50:02","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-28 13:50:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1149","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1150","1","2016-09-28 13:50:02","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-28 13:50:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1150","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1151","1","2016-09-28 13:50:02","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-28 13:50:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1151","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1152","1","2016-09-28 13:50:03","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-28 13:50:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1152","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1153","1","2016-09-28 13:50:03","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-28 13:50:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1153","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1154","1","2016-09-28 13:50:18","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-28 13:50:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1154","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1155","1","2016-09-28 13:50:18","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-28 13:50:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1155","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1156","1","2016-09-28 13:50:18","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-28 13:50:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1156","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1157","1","2016-09-28 13:50:18","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-28 13:50:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1157","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1158","1","2016-09-28 13:50:18","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-28 13:50:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1158","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1159","1","2016-09-28 13:50:18","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-28 13:50:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1159","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1160","1","2016-09-28 13:50:18","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-28 13:50:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1160","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1161","1","2016-09-28 13:50:18","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-28 13:50:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1161","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1162","1","2016-09-28 13:50:56","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-28 13:50:56","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1162","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1163","1","2016-09-28 13:50:56","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-28 13:50:56","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1163","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1164","1","2016-09-28 13:50:57","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-28 13:50:57","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1164","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1165","1","2016-09-28 13:50:57","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-28 13:50:57","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1165","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1166","1","2016-09-28 13:50:57","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-28 13:50:57","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1166","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1167","1","2016-09-28 13:50:57","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-28 13:50:57","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1167","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1168","1","2016-09-28 13:50:57","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-28 13:50:57","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1168","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1169","1","2016-09-28 13:50:57","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-28 13:50:57","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1169","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1187","1","2016-09-28 16:16:34","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-28 16:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1187","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1188","1","2016-09-28 16:16:34","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-28 16:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1188","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1189","1","2016-09-28 16:16:34","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-28 16:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1189","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1190","1","2016-09-28 16:16:34","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-28 16:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1190","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1191","1","2016-09-28 16:16:34","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-28 16:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1191","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1192","1","2016-09-28 16:16:34","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-28 16:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1192","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1193","1","2016-09-28 16:16:34","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-28 16:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1193","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1194","1","2016-09-28 16:16:34","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-28 16:16:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1194","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1234","1","2016-09-30 16:15:41","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-30 16:15:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1234","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1235","1","2016-09-30 16:15:41","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-30 16:15:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1235","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1236","1","2016-09-30 16:15:41","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-30 16:15:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1236","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1237","1","2016-09-30 16:15:41","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-30 16:15:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1237","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1238","1","2016-09-30 16:15:41","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-30 16:15:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1238","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1239","1","2016-09-30 16:15:41","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-30 16:15:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1239","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1240","1","2016-09-30 16:15:41","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-30 16:15:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1240","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1241","1","2016-09-30 16:15:41","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-30 16:15:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1241","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1242","1","2016-09-30 16:16:06","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-30 16:16:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1242","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1243","1","2016-09-30 16:16:06","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-30 16:16:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1243","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1244","1","2016-09-30 16:16:06","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-30 16:16:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1244","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1245","1","2016-09-30 16:16:06","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-30 16:16:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1245","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1246","1","2016-09-30 16:16:06","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-30 16:16:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1246","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1247","1","2016-09-30 16:16:06","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-30 16:16:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1247","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1248","1","2016-09-30 16:16:07","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-30 16:16:07","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1248","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1249","1","2016-09-30 16:16:07","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-30 16:16:07","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1249","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1250","1","2016-09-30 16:21:40","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-30 16:21:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1250","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1251","1","2016-09-30 16:21:40","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-30 16:21:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1251","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1252","1","2016-09-30 16:21:40","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-30 16:21:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1252","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1253","1","2016-09-30 16:21:40","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-30 16:21:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1253","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1254","1","2016-09-30 16:21:40","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-30 16:21:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1254","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1255","1","2016-09-30 16:21:41","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-30 16:21:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1255","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1256","1","2016-09-30 16:21:41","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-30 16:21:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1256","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1257","1","2016-09-30 16:21:41","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-30 16:21:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1257","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1258","1","2016-09-30 16:22:58","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-30 16:22:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1258","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1259","1","2016-09-30 16:22:59","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-30 16:22:59","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1259","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1260","1","2016-09-30 16:22:59","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-30 16:22:59","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1260","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1261","1","2016-09-30 16:22:59","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-30 16:22:59","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1261","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1262","1","2016-09-30 16:22:59","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-30 16:22:59","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1262","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1263","1","2016-09-30 16:22:59","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-30 16:22:59","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1263","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1264","1","2016-09-30 16:22:59","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-30 16:22:59","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1264","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1265","1","2016-09-30 16:22:59","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-30 16:22:59","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1265","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1266","1","2016-09-30 16:23:21","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-30 16:23:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1266","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1267","1","2016-09-30 16:23:21","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-30 16:23:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1267","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1268","1","2016-09-30 16:23:21","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-30 16:23:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1268","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1269","1","2016-09-30 16:23:21","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-30 16:23:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1269","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1270","1","2016-09-30 16:23:21","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-30 16:23:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1270","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1271","1","2016-09-30 16:23:21","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-30 16:23:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1271","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1272","1","2016-09-30 16:23:22","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-30 16:23:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1272","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1273","1","2016-09-30 16:23:22","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-30 16:23:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1273","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1274","1","2016-09-30 17:03:05","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-09-30 17:03:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1274","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1275","1","2016-09-30 17:03:05","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-09-30 17:03:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1275","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1276","1","2016-09-30 17:03:05","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-09-30 17:03:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1276","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1277","1","2016-09-30 17:03:05","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-09-30 17:03:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1277","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1278","1","2016-09-30 17:03:05","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-09-30 17:03:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1278","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1279","1","2016-09-30 17:03:05","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-09-30 17:03:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1279","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1280","1","2016-09-30 17:03:05","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-09-30 17:03:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1280","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1281","1","2016-09-30 17:03:05","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-09-30 17:03:05","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1281","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1282","1","2016-10-01 00:22:15","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-01 00:22:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1282","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1283","1","2016-10-01 00:22:15","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-01 00:22:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1283","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1284","1","2016-10-01 00:22:15","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-01 00:22:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1284","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1285","1","2016-10-01 00:22:15","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-01 00:22:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1285","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1286","1","2016-10-01 00:22:15","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-01 00:22:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1286","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1287","1","2016-10-01 00:22:16","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-01 00:22:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1287","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1288","1","2016-10-01 00:22:16","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-01 00:22:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1288","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1289","1","2016-10-01 00:22:16","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-01 00:22:16","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1289","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1290","1","2016-10-01 11:11:06","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-01 11:11:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1290","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1291","1","2016-10-01 11:11:06","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-01 11:11:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1291","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1292","1","2016-10-01 11:11:06","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-01 11:11:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1292","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1293","1","2016-10-01 11:11:06","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-01 11:11:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1293","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1294","1","2016-10-01 11:11:06","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-01 11:11:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1294","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1295","1","2016-10-01 11:11:06","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-01 11:11:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1295","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1296","1","2016-10-01 11:11:06","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-01 11:11:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1296","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1297","1","2016-10-01 11:11:06","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-01 11:11:06","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1297","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1298","1","2016-10-01 11:11:15","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-01 11:11:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1298","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1299","1","2016-10-01 11:11:15","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-01 11:11:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1299","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1300","1","2016-10-01 11:11:15","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-01 11:11:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1300","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1301","1","2016-10-01 11:11:15","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-01 11:11:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1301","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1302","1","2016-10-01 11:11:15","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-01 11:11:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1302","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1303","1","2016-10-01 11:11:15","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-01 11:11:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1303","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1304","1","2016-10-01 11:11:15","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-01 11:11:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1304","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1305","1","2016-10-01 11:11:15","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-01 11:11:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1305","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1306","1","2016-10-01 11:11:35","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-01 11:11:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1306","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1307","1","2016-10-01 11:11:35","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-01 11:11:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1307","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1308","1","2016-10-01 11:11:35","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-01 11:11:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1308","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1309","1","2016-10-01 11:11:35","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-01 11:11:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1309","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1310","1","2016-10-01 11:11:35","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-01 11:11:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1310","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1311","1","2016-10-01 11:11:35","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-01 11:11:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1311","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1312","1","2016-10-01 11:11:35","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-01 11:11:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1312","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1313","1","2016-10-01 11:11:35","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-01 11:11:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1313","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1314","1","2016-10-01 11:52:29","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-01 11:52:29","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1314","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1315","1","2016-10-01 11:52:29","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-01 11:52:29","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1315","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1316","1","2016-10-01 11:52:29","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-01 11:52:29","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1316","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1317","1","2016-10-01 11:52:29","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-01 11:52:29","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1317","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1318","1","2016-10-01 11:52:29","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-01 11:52:29","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1318","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1319","1","2016-10-01 11:52:29","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-01 11:52:29","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1319","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1320","1","2016-10-01 11:52:29","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-01 11:52:29","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1320","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1321","1","2016-10-01 11:52:29","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-01 11:52:29","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1321","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1322","1","2016-10-01 11:52:43","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-01 11:52:43","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1322","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1323","1","2016-10-01 11:52:43","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-01 11:52:43","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1323","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1324","1","2016-10-01 11:52:43","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-01 11:52:43","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1324","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1325","1","2016-10-01 11:52:44","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-01 11:52:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1325","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1326","1","2016-10-01 11:52:44","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-01 11:52:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1326","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1327","1","2016-10-01 11:52:44","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-01 11:52:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1327","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1328","1","2016-10-01 11:52:44","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-01 11:52:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1328","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1329","1","2016-10-01 11:52:44","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-01 11:52:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1329","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1330","1","2016-10-01 12:45:51","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-01 12:45:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1330","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1331","1","2016-10-01 12:45:51","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-01 12:45:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1331","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1332","1","2016-10-01 12:45:51","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-01 12:45:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1332","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1333","1","2016-10-01 12:45:51","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-01 12:45:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1333","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1334","1","2016-10-01 12:45:51","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-01 12:45:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1334","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1335","1","2016-10-01 12:45:51","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-01 12:45:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1335","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1336","1","2016-10-01 12:45:51","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-01 12:45:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1336","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1337","1","2016-10-01 12:45:51","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-01 12:45:51","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1337","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1338","1","2016-10-01 12:47:26","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-01 12:47:26","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1338","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1339","1","2016-10-01 12:47:26","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-01 12:47:26","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1339","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1340","1","2016-10-01 12:47:26","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-01 12:47:26","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1340","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1341","1","2016-10-01 12:47:26","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-01 12:47:26","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1341","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1342","1","2016-10-01 12:47:26","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-01 12:47:26","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1342","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1343","1","2016-10-01 12:47:27","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-01 12:47:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1343","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1344","1","2016-10-01 12:47:27","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-01 12:47:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1344","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1345","1","2016-10-01 12:47:27","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-01 12:47:27","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1345","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1346","1","2016-10-01 22:07:45","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-01 22:07:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1346","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1347","1","2016-10-01 22:07:45","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-01 22:07:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1347","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1348","1","2016-10-01 22:07:45","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-01 22:07:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1348","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1349","1","2016-10-01 22:07:45","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-01 22:07:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1349","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1350","1","2016-10-01 22:07:45","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-01 22:07:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1350","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1351","1","2016-10-01 22:07:45","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-01 22:07:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1351","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1352","1","2016-10-01 22:07:45","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-01 22:07:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1352","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1353","1","2016-10-01 22:07:45","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-01 22:07:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1353","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1370","1","2016-10-02 23:46:23","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-02 23:46:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1370","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1371","1","2016-10-02 23:46:23","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-02 23:46:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1371","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1372","1","2016-10-02 23:46:23","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-02 23:46:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1372","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1373","1","2016-10-02 23:46:24","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-02 23:46:24","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1373","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1374","1","2016-10-02 23:46:24","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-02 23:46:24","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1374","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1375","1","2016-10-02 23:46:24","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-02 23:46:24","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1375","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1376","1","2016-10-02 23:46:24","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-02 23:46:24","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1376","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1377","1","2016-10-02 23:46:24","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-02 23:46:24","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1377","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1381","1","2016-10-03 07:16:48","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 07:16:48","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1381","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1382","1","2016-10-03 07:16:48","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 07:16:48","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1382","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1383","1","2016-10-03 07:16:48","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 07:16:48","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1383","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1384","1","2016-10-03 07:16:49","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 07:16:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1384","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1385","1","2016-10-03 07:16:49","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 07:16:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1385","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1386","1","2016-10-03 07:16:49","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 07:16:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1386","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1387","1","2016-10-03 07:16:49","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 07:16:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1387","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1388","1","2016-10-03 07:16:49","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 07:16:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1388","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1389","1","2016-10-03 07:29:33","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 07:29:33","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1389","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1390","1","2016-10-03 07:29:33","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 07:29:33","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1390","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1391","1","2016-10-03 07:29:33","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 07:29:33","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1391","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1392","1","2016-10-03 07:29:33","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 07:29:33","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1392","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1393","1","2016-10-03 07:29:34","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 07:29:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1393","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1394","1","2016-10-03 07:29:34","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 07:29:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1394","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1395","1","2016-10-03 07:29:34","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 07:29:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1395","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1396","1","2016-10-03 07:29:34","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 07:29:34","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1396","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1397","1","2016-10-03 12:15:48","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 12:15:48","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1397","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1398","1","2016-10-03 12:15:48","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 12:15:48","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1398","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1399","1","2016-10-03 12:15:48","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 12:15:48","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1399","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1400","1","2016-10-03 12:15:48","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 12:15:48","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1400","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1401","1","2016-10-03 12:15:49","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 12:15:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1401","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1402","1","2016-10-03 12:15:49","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 12:15:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1402","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1403","1","2016-10-03 12:15:49","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 12:15:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1403","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1404","1","2016-10-03 12:15:49","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 12:15:49","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1404","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1405","1","2016-10-03 12:16:03","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 12:16:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1405","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1406","1","2016-10-03 12:16:03","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 12:16:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1406","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1407","1","2016-10-03 12:16:03","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 12:16:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1407","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1408","1","2016-10-03 12:16:03","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 12:16:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1408","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1409","1","2016-10-03 12:16:03","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 12:16:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1409","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1410","1","2016-10-03 12:16:03","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 12:16:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1410","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1411","1","2016-10-03 12:16:04","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 12:16:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1411","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1412","1","2016-10-03 12:16:04","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 12:16:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1412","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1413","1","2016-10-03 16:22:32","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 16:22:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1413","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1414","1","2016-10-03 16:22:32","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 16:22:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1414","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1415","1","2016-10-03 16:22:32","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 16:22:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1415","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1416","1","2016-10-03 16:22:32","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 16:22:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1416","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1417","1","2016-10-03 16:22:32","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 16:22:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1417","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1418","1","2016-10-03 16:22:33","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 16:22:33","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1418","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1419","1","2016-10-03 16:22:33","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 16:22:33","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1419","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1420","1","2016-10-03 16:22:33","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 16:22:33","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1420","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1421","1","2016-10-03 16:28:00","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 16:28:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1421","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1422","1","2016-10-03 16:28:00","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 16:28:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1422","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1423","1","2016-10-03 16:28:00","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 16:28:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1423","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1424","1","2016-10-03 16:28:00","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 16:28:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1424","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1425","1","2016-10-03 16:28:00","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 16:28:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1425","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1426","1","2016-10-03 16:28:00","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 16:28:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1426","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1427","1","2016-10-03 16:28:00","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 16:28:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1427","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1428","1","2016-10-03 16:28:00","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 16:28:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1428","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1464","1","2016-10-03 22:25:21","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 22:25:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1464","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1465","1","2016-10-03 22:25:21","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 22:25:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1465","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1466","1","2016-10-03 22:25:21","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 22:25:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1466","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1467","1","2016-10-03 22:25:21","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 22:25:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1467","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1468","1","2016-10-03 22:25:21","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 22:25:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1468","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1469","1","2016-10-03 22:25:21","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 22:25:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1469","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1470","1","2016-10-03 22:25:21","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 22:25:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1470","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1471","1","2016-10-03 22:25:21","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 22:25:21","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1471","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1472","1","2016-10-03 22:54:31","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 22:54:31","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1472","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1473","1","2016-10-03 22:54:32","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 22:54:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1473","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1474","1","2016-10-03 22:54:32","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 22:54:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1474","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1475","1","2016-10-03 22:54:32","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 22:54:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1475","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1476","1","2016-10-03 22:54:32","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 22:54:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1476","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1477","1","2016-10-03 22:54:32","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 22:54:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1477","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1478","1","2016-10-03 22:54:32","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 22:54:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1478","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1479","1","2016-10-03 22:54:32","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 22:54:32","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1479","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1480","1","2016-10-03 22:55:28","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 22:55:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1480","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1481","1","2016-10-03 22:55:28","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 22:55:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1481","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1482","1","2016-10-03 22:55:28","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 22:55:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1482","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1483","1","2016-10-03 22:55:28","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 22:55:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1483","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1484","1","2016-10-03 22:55:28","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 22:55:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1484","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1485","1","2016-10-03 22:55:28","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 22:55:28","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1485","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1486","1","2016-10-03 22:55:29","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 22:55:29","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1486","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1487","1","2016-10-03 22:55:29","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 22:55:29","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1487","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1488","1","2016-10-03 22:55:52","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 22:55:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1488","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1489","1","2016-10-03 22:55:52","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 22:55:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1489","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1490","1","2016-10-03 22:55:53","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 22:55:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1490","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1491","1","2016-10-03 22:55:53","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 22:55:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1491","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1492","1","2016-10-03 22:55:53","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 22:55:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1492","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1493","1","2016-10-03 22:55:53","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 22:55:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1493","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1494","1","2016-10-03 22:55:53","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 22:55:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1494","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1495","1","2016-10-03 22:55:53","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 22:55:53","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1495","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1496","1","2016-10-03 22:56:44","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 22:56:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1496","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1497","1","2016-10-03 22:56:44","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 22:56:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1497","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1498","1","2016-10-03 22:56:44","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 22:56:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1498","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1499","1","2016-10-03 22:56:44","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 22:56:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1499","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1500","1","2016-10-03 22:56:44","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 22:56:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1500","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1501","1","2016-10-03 22:56:44","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 22:56:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1501","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1502","1","2016-10-03 22:56:44","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 22:56:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1502","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1503","1","2016-10-03 22:56:44","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 22:56:44","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1503","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1504","1","2016-10-03 22:57:38","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 22:57:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1504","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1505","1","2016-10-03 22:57:39","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 22:57:39","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1505","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1506","1","2016-10-03 22:57:39","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 22:57:39","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1506","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1507","1","2016-10-03 22:57:39","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 22:57:39","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1507","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1508","1","2016-10-03 22:57:39","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 22:57:39","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1508","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1509","1","2016-10-03 22:57:39","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 22:57:39","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1509","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1510","1","2016-10-03 22:57:39","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 22:57:39","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1510","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1511","1","2016-10-03 22:57:39","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 22:57:39","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1511","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1512","1","2016-10-03 22:58:04","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 22:58:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1512","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1513","1","2016-10-03 22:58:04","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 22:58:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1513","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1514","1","2016-10-03 22:58:04","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 22:58:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1514","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1515","1","2016-10-03 22:58:04","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 22:58:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1515","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1516","1","2016-10-03 22:58:04","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 22:58:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1516","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1517","1","2016-10-03 22:58:04","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 22:58:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1517","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1518","1","2016-10-03 22:58:04","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 22:58:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1518","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1519","1","2016-10-03 22:58:04","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 22:58:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1519","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1520","1","2016-10-03 22:59:42","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 22:59:42","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1520","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1521","1","2016-10-03 22:59:42","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 22:59:42","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1521","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1522","1","2016-10-03 22:59:42","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 22:59:42","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1522","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1523","1","2016-10-03 22:59:42","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 22:59:42","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1523","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1524","1","2016-10-03 22:59:42","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 22:59:42","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1524","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1525","1","2016-10-03 22:59:42","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 22:59:42","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1525","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1526","1","2016-10-03 22:59:43","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 22:59:43","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1526","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1527","1","2016-10-03 22:59:43","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 22:59:43","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1527","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1528","1","2016-10-03 23:00:58","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 23:00:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1528","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1529","1","2016-10-03 23:00:58","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 23:00:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1529","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1530","1","2016-10-03 23:00:58","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 23:00:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1530","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1531","1","2016-10-03 23:00:58","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 23:00:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1531","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1532","1","2016-10-03 23:00:58","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 23:00:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1532","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1533","1","2016-10-03 23:00:58","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 23:00:58","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1533","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1534","1","2016-10-03 23:00:59","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 23:00:59","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1534","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1535","1","2016-10-03 23:00:59","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 23:00:59","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1535","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1536","1","2016-10-03 23:02:55","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 23:02:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1536","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1537","1","2016-10-03 23:02:55","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 23:02:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1537","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1538","1","2016-10-03 23:02:55","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 23:02:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1538","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1539","1","2016-10-03 23:02:55","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 23:02:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1539","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1540","1","2016-10-03 23:02:55","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 23:02:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1540","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1541","1","2016-10-03 23:02:55","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 23:02:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1541","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1542","1","2016-10-03 23:02:55","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 23:02:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1542","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1543","1","2016-10-03 23:02:55","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 23:02:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1543","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1544","1","2016-10-03 23:03:22","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 23:03:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1544","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1545","1","2016-10-03 23:03:22","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 23:03:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1545","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1546","1","2016-10-03 23:03:22","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 23:03:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1546","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1547","1","2016-10-03 23:03:22","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 23:03:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1547","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1548","1","2016-10-03 23:03:22","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 23:03:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1548","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1549","1","2016-10-03 23:03:22","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 23:03:22","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1549","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1550","1","2016-10-03 23:03:23","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 23:03:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1550","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1551","1","2016-10-03 23:03:23","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 23:03:23","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1551","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1552","1","2016-10-03 23:08:01","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 23:08:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1552","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1553","1","2016-10-03 23:08:01","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 23:08:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1553","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1554","1","2016-10-03 23:08:01","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 23:08:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1554","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1555","1","2016-10-03 23:08:01","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 23:08:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1555","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1556","1","2016-10-03 23:08:01","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 23:08:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1556","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1557","1","2016-10-03 23:08:01","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 23:08:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1557","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1558","1","2016-10-03 23:08:01","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 23:08:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1558","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1559","1","2016-10-03 23:08:01","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 23:08:01","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1559","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1560","1","2016-10-03 23:10:20","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-03 23:10:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1560","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1561","1","2016-10-03 23:10:20","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-03 23:10:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1561","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1562","1","2016-10-03 23:10:20","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-03 23:10:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1562","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1563","1","2016-10-03 23:10:20","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-03 23:10:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1563","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1564","1","2016-10-03 23:10:20","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-03 23:10:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1564","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1565","1","2016-10-03 23:10:20","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-03 23:10:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1565","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1566","1","2016-10-03 23:10:20","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-03 23:10:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1566","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1567","1","2016-10-03 23:10:20","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-03 23:10:20","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1567","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1568","1","2016-10-04 08:42:41","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 08:42:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1568","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1569","1","2016-10-04 08:42:41","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 08:42:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1569","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1570","1","2016-10-04 08:42:41","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 08:42:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1570","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1571","1","2016-10-04 08:42:41","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 08:42:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1571","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1572","1","2016-10-04 08:42:41","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 08:42:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1572","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1573","1","2016-10-04 08:42:41","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 08:42:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1573","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1574","1","2016-10-04 08:42:41","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 08:42:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1574","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1575","1","2016-10-04 08:42:41","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 08:42:41","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1575","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1576","1","2016-10-04 08:43:35","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 08:43:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1576","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1577","1","2016-10-04 08:43:35","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 08:43:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1577","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1578","1","2016-10-04 08:43:35","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 08:43:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1578","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1579","1","2016-10-04 08:43:35","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 08:43:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1579","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1580","1","2016-10-04 08:43:35","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 08:43:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1580","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1581","1","2016-10-04 08:43:35","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 08:43:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1581","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1582","1","2016-10-04 08:43:35","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 08:43:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1582","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1583","1","2016-10-04 08:43:35","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 08:43:35","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1583","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1584","1","2016-10-04 08:45:52","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 08:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1584","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1585","1","2016-10-04 08:45:52","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 08:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1585","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1586","1","2016-10-04 08:45:52","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 08:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1586","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1587","1","2016-10-04 08:45:52","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 08:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1587","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1588","1","2016-10-04 08:45:52","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 08:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1588","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1589","1","2016-10-04 08:45:52","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 08:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1589","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1590","1","2016-10-04 08:45:52","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 08:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1590","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1591","1","2016-10-04 08:45:52","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 08:45:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1591","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1592","1","2016-10-04 08:46:11","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 08:46:11","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1592","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1593","1","2016-10-04 08:46:11","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 08:46:11","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1593","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1594","1","2016-10-04 08:46:11","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 08:46:11","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1594","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1595","1","2016-10-04 08:46:11","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 08:46:11","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1595","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1596","1","2016-10-04 08:46:11","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 08:46:11","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1596","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1597","1","2016-10-04 08:46:11","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 08:46:11","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1597","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1598","1","2016-10-04 08:46:12","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 08:46:12","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1598","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1599","1","2016-10-04 08:46:12","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 08:46:12","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1599","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1600","1","2016-10-04 08:47:25","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 08:47:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1600","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1601","1","2016-10-04 08:47:25","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 08:47:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1601","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1602","1","2016-10-04 08:47:25","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 08:47:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1602","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1603","1","2016-10-04 08:47:25","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 08:47:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1603","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1604","1","2016-10-04 08:47:25","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 08:47:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1604","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1605","1","2016-10-04 08:47:25","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 08:47:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1605","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1606","1","2016-10-04 08:47:25","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 08:47:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1606","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1607","1","2016-10-04 08:47:25","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 08:47:25","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1607","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1608","1","2016-10-04 08:48:14","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 08:48:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1608","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1609","1","2016-10-04 08:48:14","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 08:48:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1609","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1610","1","2016-10-04 08:48:14","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 08:48:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1610","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1611","1","2016-10-04 08:48:14","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 08:48:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1611","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1612","1","2016-10-04 08:48:14","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 08:48:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1612","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1613","1","2016-10-04 08:48:14","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 08:48:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1613","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1614","1","2016-10-04 08:48:15","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 08:48:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1614","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1615","1","2016-10-04 08:48:15","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 08:48:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1615","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1616","1","2016-10-04 08:49:15","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 08:49:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1616","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1617","1","2016-10-04 08:49:15","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 08:49:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1617","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1618","1","2016-10-04 08:49:15","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 08:49:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1618","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1619","1","2016-10-04 08:49:15","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 08:49:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1619","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1620","1","2016-10-04 08:49:15","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 08:49:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1620","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1621","1","2016-10-04 08:49:15","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 08:49:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1621","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1622","1","2016-10-04 08:49:15","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 08:49:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1622","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1623","1","2016-10-04 08:49:15","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 08:49:15","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1623","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1624","1","2016-10-04 08:49:37","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 08:49:37","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1624","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1625","1","2016-10-04 08:49:37","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 08:49:37","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1625","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1626","1","2016-10-04 08:49:37","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 08:49:37","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1626","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1627","1","2016-10-04 08:49:38","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 08:49:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1627","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1628","1","2016-10-04 08:49:38","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 08:49:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1628","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1629","1","2016-10-04 08:49:38","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 08:49:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1629","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1630","1","2016-10-04 08:49:38","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 08:49:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1630","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1631","1","2016-10-04 08:49:38","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 08:49:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1631","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1632","1","2016-10-04 08:50:10","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 08:50:10","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1632","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1633","1","2016-10-04 08:50:10","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 08:50:10","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1633","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1634","1","2016-10-04 08:50:10","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 08:50:10","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1634","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1635","1","2016-10-04 08:50:10","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 08:50:10","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1635","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1636","1","2016-10-04 08:50:10","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 08:50:10","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1636","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1637","1","2016-10-04 08:50:10","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 08:50:10","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1637","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1638","1","2016-10-04 08:50:10","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 08:50:10","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1638","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1639","1","2016-10-04 08:50:10","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 08:50:10","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1639","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1640","1","2016-10-04 08:53:52","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 08:53:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1640","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1641","1","2016-10-04 08:53:52","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 08:53:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1641","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1642","1","2016-10-04 08:53:52","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 08:53:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1642","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1643","1","2016-10-04 08:53:52","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 08:53:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1643","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1644","1","2016-10-04 08:53:52","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 08:53:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1644","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1645","1","2016-10-04 08:53:52","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 08:53:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1645","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1646","1","2016-10-04 08:53:52","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 08:53:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1646","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1647","1","2016-10-04 08:53:52","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 08:53:52","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1647","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1648","1","2016-10-04 08:54:14","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 08:54:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1648","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1649","1","2016-10-04 08:54:14","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 08:54:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1649","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1650","1","2016-10-04 08:54:14","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 08:54:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1650","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1651","1","2016-10-04 08:54:14","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 08:54:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1651","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1652","1","2016-10-04 08:54:14","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 08:54:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1652","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1653","1","2016-10-04 08:54:14","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 08:54:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1653","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1654","1","2016-10-04 08:54:14","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 08:54:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1654","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1655","1","2016-10-04 08:54:14","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 08:54:14","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1655","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1656","1","2016-10-04 08:54:40","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 08:54:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1656","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1657","1","2016-10-04 08:54:40","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 08:54:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1657","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1658","1","2016-10-04 08:54:40","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 08:54:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1658","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1659","1","2016-10-04 08:54:40","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 08:54:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1659","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1660","1","2016-10-04 08:54:40","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 08:54:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1660","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1661","1","2016-10-04 08:54:40","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 08:54:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1661","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1662","1","2016-10-04 08:54:40","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 08:54:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1662","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1663","1","2016-10-04 08:54:40","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 08:54:40","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1663","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1664","1","2016-10-04 08:55:45","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 08:55:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1664","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1665","1","2016-10-04 08:55:45","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 08:55:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1665","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1666","1","2016-10-04 08:55:45","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 08:55:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1666","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1667","1","2016-10-04 08:55:45","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 08:55:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1667","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1668","1","2016-10-04 08:55:45","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 08:55:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1668","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1669","1","2016-10-04 08:55:45","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 08:55:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1669","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1670","1","2016-10-04 08:55:45","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 08:55:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1670","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1671","1","2016-10-04 08:55:45","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 08:55:45","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1671","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1672","1","2016-10-04 11:34:55","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 11:34:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1672","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1673","1","2016-10-04 11:34:55","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 11:34:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1673","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1674","1","2016-10-04 11:34:55","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 11:34:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1674","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1675","1","2016-10-04 11:34:55","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 11:34:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1675","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1676","1","2016-10-04 11:34:55","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 11:34:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1676","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1677","1","2016-10-04 11:34:55","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 11:34:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1677","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1678","1","2016-10-04 11:34:55","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 11:34:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1678","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1679","1","2016-10-04 11:34:55","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 11:34:55","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1679","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1680","1","2016-10-04 12:18:17","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 12:18:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1680","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1681","1","2016-10-04 12:18:17","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 12:18:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1681","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1682","1","2016-10-04 12:18:17","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 12:18:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1682","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1683","1","2016-10-04 12:18:18","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 12:18:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1683","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1684","1","2016-10-04 12:18:18","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 12:18:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1684","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1685","1","2016-10-04 12:18:18","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 12:18:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1685","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1686","1","2016-10-04 12:18:18","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 12:18:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1686","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1687","1","2016-10-04 12:18:18","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 12:18:18","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1687","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1689","1","2016-10-04 12:25:17","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 12:25:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1689","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1690","1","2016-10-04 12:25:17","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 12:25:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1690","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1691","1","2016-10-04 12:25:17","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 12:25:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1691","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1692","1","2016-10-04 12:25:17","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 12:25:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1692","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1693","1","2016-10-04 12:25:17","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 12:25:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1693","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1694","1","2016-10-04 12:25:17","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 12:25:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1694","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1695","1","2016-10-04 12:25:17","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 12:25:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1695","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1696","1","2016-10-04 12:25:17","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 12:25:17","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1696","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1697","1","2016-10-04 12:25:46","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 12:25:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1697","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1698","1","2016-10-04 12:25:46","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 12:25:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1698","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1699","1","2016-10-04 12:25:46","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 12:25:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1699","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1700","1","2016-10-04 12:25:46","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 12:25:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1700","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1701","1","2016-10-04 12:25:46","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 12:25:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1701","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1702","1","2016-10-04 12:25:46","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 12:25:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1702","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1703","1","2016-10-04 12:25:46","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 12:25:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1703","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1704","1","2016-10-04 12:25:46","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 12:25:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1704","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1705","1","2016-10-04 13:10:38","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 13:10:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1705","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1706","1","2016-10-04 13:10:38","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 13:10:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1706","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1707","1","2016-10-04 13:10:38","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 13:10:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1707","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1708","1","2016-10-04 13:10:38","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 13:10:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1708","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1709","1","2016-10-04 13:10:38","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 13:10:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1709","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1710","1","2016-10-04 13:10:38","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 13:10:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1710","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1711","1","2016-10-04 13:10:38","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 13:10:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1711","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1712","1","2016-10-04 13:10:38","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 13:10:38","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1712","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1713","1","2016-10-04 16:24:02","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 16:24:02","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1713","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1714","1","2016-10-04 16:24:03","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 16:24:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1714","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1715","1","2016-10-04 16:24:03","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 16:24:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1715","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1716","1","2016-10-04 16:24:03","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 16:24:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1716","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1717","1","2016-10-04 16:24:03","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 16:24:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1717","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1718","1","2016-10-04 16:24:03","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 16:24:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1718","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1719","1","2016-10-04 16:24:03","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 16:24:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1719","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1720","1","2016-10-04 16:24:03","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 16:24:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1720","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1721","1","2016-10-04 16:24:13","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-04 16:24:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1721","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1722","1","2016-10-04 16:24:13","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-04 16:24:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1722","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1723","1","2016-10-04 16:24:13","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-04 16:24:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1723","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1724","1","2016-10-04 16:24:13","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-04 16:24:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1724","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1725","1","2016-10-04 16:24:13","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-04 16:24:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1725","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1726","1","2016-10-04 16:24:13","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-04 16:24:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1726","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1727","1","2016-10-04 16:24:13","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-04 16:24:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1727","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1728","1","2016-10-04 16:24:13","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-04 16:24:13","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1728","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1732","1","2016-10-05 08:21:46","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-05 08:21:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1732","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1733","1","2016-10-05 08:21:46","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-05 08:21:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1733","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1734","1","2016-10-05 08:21:46","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-05 08:21:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1734","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1735","1","2016-10-05 08:21:46","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-05 08:21:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1735","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1736","1","2016-10-05 08:21:46","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-05 08:21:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1736","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1737","1","2016-10-05 08:21:46","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-05 08:21:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1737","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1738","1","2016-10-05 08:21:46","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-05 08:21:46","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1738","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1739","1","2016-10-05 08:21:47","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-05 08:21:47","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1739","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1740","1","2016-10-05 08:22:03","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-05 08:22:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1740","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1741","1","2016-10-05 08:22:03","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-05 08:22:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1741","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1742","1","2016-10-05 08:22:03","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-05 08:22:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1742","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1743","1","2016-10-05 08:22:03","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-05 08:22:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1743","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1744","1","2016-10-05 08:22:03","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-05 08:22:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1744","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1745","1","2016-10-05 08:22:03","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-05 08:22:03","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1745","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1746","1","2016-10-05 08:22:04","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-05 08:22:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1746","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1747","1","2016-10-05 08:22:04","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-05 08:22:04","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1747","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1762","1","2016-10-06 00:23:56","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-06 00:23:56","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1762","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1763","1","2016-10-06 00:23:56","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-06 00:23:56","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1763","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1764","1","2016-10-06 00:23:56","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-06 00:23:56","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1764","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1765","1","2016-10-06 00:23:56","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-06 00:23:56","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1765","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1766","1","2016-10-06 00:23:56","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-06 00:23:56","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1766","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1767","1","2016-10-06 00:23:56","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-06 00:23:56","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1767","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1768","1","2016-10-06 00:23:56","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-06 00:23:56","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1768","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1769","1","2016-10-06 00:23:56","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-06 00:23:56","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1769","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1770","1","2016-10-06 00:24:12","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-06 00:24:12","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1770","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1771","1","2016-10-06 00:24:12","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-06 00:24:12","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1771","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1772","1","2016-10-06 00:24:12","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-06 00:24:12","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1772","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1773","1","2016-10-06 00:24:12","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-06 00:24:12","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1773","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1774","1","2016-10-06 00:24:12","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-06 00:24:12","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1774","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1775","1","2016-10-06 00:24:12","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-06 00:24:12","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1775","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1776","1","2016-10-06 00:24:12","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-06 00:24:12","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1776","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1777","1","2016-10-06 00:24:12","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-06 00:24:12","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1777","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1778","1","2016-10-06 00:24:57","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-06 00:24:57","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1778","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1779","1","2016-10-06 00:24:57","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-06 00:24:57","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1779","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1780","1","2016-10-06 00:24:57","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-06 00:24:57","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1780","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1781","1","2016-10-06 00:24:57","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-06 00:24:57","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1781","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1782","1","2016-10-06 00:24:57","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-06 00:24:57","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1782","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1783","1","2016-10-06 00:24:57","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-06 00:24:57","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1783","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1784","1","2016-10-06 00:24:57","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-06 00:24:57","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1784","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1785","1","2016-10-06 00:24:57","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-06 00:24:57","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1785","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1809","1","2016-10-06 00:36:00","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-10-06 00:36:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1789","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1810","1","2016-10-06 00:36:00","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-10-06 00:36:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1790","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1811","1","2016-10-06 00:36:00","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-10-06 00:36:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1791","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1812","1","2016-10-06 00:36:00","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-10-06 00:36:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1792","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2210","1","2016-12-16 02:07:59","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 02:07:59","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=6","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("7","1","2016-12-16 02:07:59","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 02:07:59","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=7","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("8","1","2016-12-16 02:07:59","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 02:07:59","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=8","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("9","1","2016-12-16 02:07:59","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 02:07:59","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=9","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("10","1","2016-12-16 02:07:59","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 02:07:59","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=10","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("11","1","2016-12-16 02:07:59","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 02:07:59","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=11","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("12","1","2016-12-16 02:07:59","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 02:07:59","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=12","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("13","1","2016-12-16 02:07:59","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 02:07:59","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=13","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1813","1","2016-10-06 00:36:00","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-10-06 00:36:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1793","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1814","1","2016-10-06 00:36:00","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-10-06 00:36:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1794","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1815","1","2016-10-06 00:36:00","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-10-06 00:36:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1795","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1816","1","2016-10-06 00:36:00","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-10-06 00:36:00","0000-00-00 00:00:00","","0","http://demo.themetor.com/bizpro/?post_type=optionsframework&p=1796","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1888","1","2016-12-16 02:27:27","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 02:27:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1888","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1889","1","2016-12-16 02:27:27","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 02:27:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1889","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1890","1","2016-12-16 02:27:27","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 02:27:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1890","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1891","1","2016-12-16 02:27:27","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 02:27:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1891","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1892","1","2016-12-16 02:27:27","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 02:27:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1892","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1893","1","2016-12-16 02:27:27","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 02:27:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1893","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1894","1","2016-12-16 02:27:27","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 02:27:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1894","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1895","1","2016-12-16 02:27:27","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 02:27:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1895","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1896","1","2016-12-16 02:27:36","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 02:27:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1896","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1897","1","2016-12-16 02:27:36","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 02:27:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1897","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1898","1","2016-12-16 02:27:36","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 02:27:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1898","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1899","1","2016-12-16 02:27:36","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 02:27:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1899","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1900","1","2016-12-16 02:27:36","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 02:27:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1900","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1901","1","2016-12-16 02:27:36","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 02:27:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1901","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1902","1","2016-12-16 02:27:36","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 02:27:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1902","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1903","1","2016-12-16 02:27:36","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 02:27:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1903","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1908","1","2016-12-16 02:32:55","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 02:32:55","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1908","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1909","1","2016-12-16 02:32:55","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 02:32:55","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1909","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1910","1","2016-12-16 02:32:55","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 02:32:55","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1910","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1911","1","2016-12-16 02:32:55","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 02:32:55","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1911","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1912","1","2016-12-16 02:32:55","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 02:32:55","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1912","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1913","1","2016-12-16 02:32:55","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 02:32:55","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1913","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1914","1","2016-12-16 02:32:55","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 02:32:55","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1914","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1915","1","2016-12-16 02:32:55","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 02:32:55","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1915","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1916","1","2016-12-16 02:35:50","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 02:35:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1916","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1917","1","2016-12-16 02:35:50","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 02:35:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1917","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1918","1","2016-12-16 02:35:50","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 02:35:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1918","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1919","1","2016-12-16 02:35:50","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 02:35:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1919","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1920","1","2016-12-16 02:35:50","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 02:35:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1920","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1921","1","2016-12-16 02:35:50","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 02:35:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1921","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1922","1","2016-12-16 02:35:50","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 02:35:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1922","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1923","1","2016-12-16 02:35:50","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 02:35:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1923","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1924","1","2016-12-16 02:38:35","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 02:38:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1924","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1925","1","2016-12-16 02:38:35","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 02:38:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1925","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1926","1","2016-12-16 02:38:35","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 02:38:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1926","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1927","1","2016-12-16 02:38:35","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 02:38:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1927","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1928","1","2016-12-16 02:38:35","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 02:38:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1928","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1929","1","2016-12-16 02:38:35","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 02:38:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1929","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1930","1","2016-12-16 02:38:35","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 02:38:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1930","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1931","1","2016-12-16 02:38:35","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 02:38:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1931","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1932","1","2016-12-16 02:39:54","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 02:39:54","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1932","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1933","1","2016-12-16 02:39:54","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 02:39:54","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1933","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1934","1","2016-12-16 02:39:54","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 02:39:54","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1934","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1935","1","2016-12-16 02:39:54","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 02:39:54","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1935","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1936","1","2016-12-16 02:39:54","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 02:39:54","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1936","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1937","1","2016-12-16 02:39:54","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 02:39:54","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1937","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1938","1","2016-12-16 02:39:54","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 02:39:54","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1938","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1939","1","2016-12-16 02:39:54","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 02:39:54","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1939","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1940","1","2016-12-16 02:40:51","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 02:40:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1940","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1941","1","2016-12-16 02:40:51","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 02:40:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1941","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1942","1","2016-12-16 02:40:51","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 02:40:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1942","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1943","1","2016-12-16 02:40:51","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 02:40:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1943","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1944","1","2016-12-16 02:40:51","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 02:40:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1944","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1945","1","2016-12-16 02:40:51","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 02:40:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1945","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1946","1","2016-12-16 02:40:51","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 02:40:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1946","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1947","1","2016-12-16 02:40:51","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 02:40:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1947","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1948","1","2016-12-16 02:42:07","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 02:42:07","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1948","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1949","1","2016-12-16 02:42:07","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 02:42:07","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1949","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1950","1","2016-12-16 02:42:07","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 02:42:07","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1950","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1951","1","2016-12-16 02:42:07","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 02:42:07","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1951","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1952","1","2016-12-16 02:42:07","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 02:42:07","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1952","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1953","1","2016-12-16 02:42:07","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 02:42:07","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1953","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1954","1","2016-12-16 02:42:07","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 02:42:07","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1954","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1955","1","2016-12-16 02:42:07","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 02:42:07","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1955","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1958","1","2016-12-16 02:53:21","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 02:53:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1958","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1959","1","2016-12-16 02:53:21","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 02:53:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1959","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1960","1","2016-12-16 02:53:21","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 02:53:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1960","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1961","1","2016-12-16 02:53:21","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 02:53:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1961","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1962","1","2016-12-16 02:53:21","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 02:53:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1962","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1963","1","2016-12-16 02:53:21","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 02:53:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1963","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1964","1","2016-12-16 02:53:22","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 02:53:22","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1964","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1965","1","2016-12-16 02:53:22","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 02:53:22","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1965","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1966","1","2016-12-16 02:54:25","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 02:54:25","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1966","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1967","1","2016-12-16 02:54:25","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 02:54:25","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1967","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1968","1","2016-12-16 02:54:25","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 02:54:25","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1968","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1969","1","2016-12-16 02:54:25","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 02:54:25","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1969","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1970","1","2016-12-16 02:54:25","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 02:54:25","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1970","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1971","1","2016-12-16 02:54:25","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 02:54:25","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1971","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1972","1","2016-12-16 02:54:25","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 02:54:25","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1972","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1973","1","2016-12-16 02:54:25","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 02:54:25","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1973","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1976","1","2016-12-16 02:57:45","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 02:57:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1976","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1977","1","2016-12-16 02:57:45","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 02:57:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1977","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1978","1","2016-12-16 02:57:45","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 02:57:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1978","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1979","1","2016-12-16 02:57:45","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 02:57:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1979","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1980","1","2016-12-16 02:57:45","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 02:57:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1980","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1981","1","2016-12-16 02:57:45","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 02:57:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1981","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1982","1","2016-12-16 02:57:46","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 02:57:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1982","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1983","1","2016-12-16 02:57:46","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 02:57:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1983","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2211","1","2016-12-16 03:15:02","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 03:15:02","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1987","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2212","1","2016-12-16 03:15:02","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 03:15:02","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1988","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2213","1","2016-12-16 03:15:02","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 03:15:02","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1989","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2214","1","2016-12-16 03:15:02","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 03:15:02","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1990","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2215","1","2016-12-16 03:15:02","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 03:15:02","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1991","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2216","1","2016-12-16 03:15:02","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 03:15:02","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1992","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2217","1","2016-12-16 03:15:02","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 03:15:02","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1993","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2218","1","2016-12-16 03:15:02","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 03:15:02","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1994","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1997","1","2016-12-16 03:19:00","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 03:19:00","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1997","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1998","1","2016-12-16 03:19:00","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 03:19:00","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1998","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("1999","1","2016-12-16 03:19:00","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 03:19:00","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=1999","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2000","1","2016-12-16 03:19:00","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 03:19:00","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2000","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2001","1","2016-12-16 03:19:00","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 03:19:00","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2001","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2002","1","2016-12-16 03:19:00","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 03:19:00","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2002","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2003","1","2016-12-16 03:19:00","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 03:19:00","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2003","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2004","1","2016-12-16 03:19:01","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 03:19:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2004","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2006","1","2016-12-16 03:25:39","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-16 03:25:39","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2006","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2007","1","2016-12-16 03:25:39","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-16 03:25:39","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2007","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2008","1","2016-12-16 03:25:39","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-16 03:25:39","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2008","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2009","1","2016-12-16 03:25:39","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-16 03:25:39","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2009","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2010","1","2016-12-16 03:25:39","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-16 03:25:39","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2010","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2011","1","2016-12-16 03:25:39","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-16 03:25:39","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2011","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2012","1","2016-12-16 03:25:39","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-16 03:25:39","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2012","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2013","1","2016-12-16 03:25:39","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-16 03:25:39","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2013","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2021","1","2016-12-17 19:51:38","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-17 19:51:38","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2021","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2022","1","2016-12-17 19:51:38","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-17 19:51:38","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2022","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2023","1","2016-12-17 19:51:38","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-17 19:51:38","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2023","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2024","1","2016-12-17 19:51:38","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-17 19:51:38","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2024","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2025","1","2016-12-17 19:51:38","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-17 19:51:38","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2025","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2026","1","2016-12-17 19:51:38","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-17 19:51:38","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2026","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2027","1","2016-12-17 19:51:38","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-17 19:51:38","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2027","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2028","1","2016-12-17 19:51:38","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-17 19:51:38","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2028","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2134","1","2016-12-20 13:15:35","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-20 13:15:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2134","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2135","1","2016-12-20 13:15:35","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-20 13:15:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2135","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2136","1","2016-12-20 13:15:35","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-20 13:15:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2136","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2137","1","2016-12-20 13:15:35","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-20 13:15:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2137","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2138","1","2016-12-20 13:15:35","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-20 13:15:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2138","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2139","1","2016-12-20 13:15:35","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-20 13:15:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2139","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2140","1","2016-12-20 13:15:35","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-20 13:15:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2140","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2141","1","2016-12-20 13:15:35","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-20 13:15:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2141","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2142","1","2016-12-20 13:17:30","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-20 13:17:30","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2142","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2143","1","2016-12-20 13:17:30","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-20 13:17:30","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2143","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2144","1","2016-12-20 13:17:30","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-20 13:17:30","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2144","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2145","1","2016-12-20 13:17:30","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-20 13:17:30","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2145","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2146","1","2016-12-20 13:17:30","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-20 13:17:30","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2146","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2147","1","2016-12-20 13:17:30","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-20 13:17:30","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2147","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2148","1","2016-12-20 13:17:31","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-20 13:17:31","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2148","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2149","1","2016-12-20 13:17:31","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-20 13:17:31","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2149","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2150","1","2016-12-20 14:04:43","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-20 14:04:43","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2150","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2151","1","2016-12-20 14:04:43","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-20 14:04:43","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2151","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2152","1","2016-12-20 14:04:43","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-20 14:04:43","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2152","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2153","1","2016-12-20 14:04:43","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-20 14:04:43","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2153","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2154","1","2016-12-20 14:04:43","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-20 14:04:43","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2154","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2155","1","2016-12-20 14:04:43","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-20 14:04:43","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2155","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2156","1","2016-12-20 14:04:43","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-20 14:04:43","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2156","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2157","1","2016-12-20 14:04:43","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-20 14:04:43","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2157","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2158","1","2016-12-20 14:07:19","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-20 14:07:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2158","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2159","1","2016-12-20 14:07:19","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-20 14:07:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2159","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2160","1","2016-12-20 14:07:19","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-20 14:07:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2160","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2161","1","2016-12-20 14:07:19","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-20 14:07:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2161","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2162","1","2016-12-20 14:07:19","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-20 14:07:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2162","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2163","1","2016-12-20 14:07:19","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-20 14:07:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2163","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2164","1","2016-12-20 14:07:19","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-20 14:07:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2164","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2165","1","2016-12-20 14:07:19","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-20 14:07:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2165","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2166","1","2016-12-20 14:30:36","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-20 14:30:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2166","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2167","1","2016-12-20 14:30:36","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-20 14:30:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2167","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2168","1","2016-12-20 14:30:36","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-20 14:30:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2168","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2169","1","2016-12-20 14:30:36","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-20 14:30:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2169","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2170","1","2016-12-20 14:30:36","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-20 14:30:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2170","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2171","1","2016-12-20 14:30:36","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-20 14:30:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2171","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2172","1","2016-12-20 14:30:36","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-20 14:30:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2172","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2173","1","2016-12-20 14:30:36","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-20 14:30:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2173","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2174","1","2016-12-20 14:38:21","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-20 14:38:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2174","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2175","1","2016-12-20 14:38:21","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-20 14:38:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2175","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2176","1","2016-12-20 14:38:21","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-20 14:38:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2176","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2177","1","2016-12-20 14:38:21","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-20 14:38:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2177","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2178","1","2016-12-20 14:38:21","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-20 14:38:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2178","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2179","1","2016-12-20 14:38:21","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-20 14:38:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2179","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2180","1","2016-12-20 14:38:21","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-20 14:38:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2180","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2181","1","2016-12-20 14:38:21","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-20 14:38:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2181","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2184","1","2016-12-20 17:13:50","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-20 17:13:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2184","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2185","1","2016-12-20 17:13:50","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-20 17:13:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2185","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2186","1","2016-12-20 17:13:50","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-20 17:13:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2186","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2187","1","2016-12-20 17:13:50","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-20 17:13:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2187","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2188","1","2016-12-20 17:13:50","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-20 17:13:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2188","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2189","1","2016-12-20 17:13:50","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-20 17:13:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2189","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2190","1","2016-12-20 17:13:50","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-20 17:13:50","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2190","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2191","1","2016-12-20 17:13:51","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-20 17:13:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2191","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2192","1","2016-12-20 17:16:36","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-20 17:16:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2192","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2193","1","2016-12-20 17:16:36","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-20 17:16:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2193","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2194","1","2016-12-20 17:16:36","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-20 17:16:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2194","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2195","1","2016-12-20 17:16:36","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-20 17:16:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2195","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2196","1","2016-12-20 17:16:36","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-20 17:16:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2196","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2197","1","2016-12-20 17:16:36","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-20 17:16:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2197","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2198","1","2016-12-20 17:16:36","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-20 17:16:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2198","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2199","1","2016-12-20 17:16:37","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-20 17:16:37","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2199","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2200","1","2016-12-20 17:29:27","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-20 17:29:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2200","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2201","1","2016-12-20 17:29:27","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-20 17:29:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2201","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2202","1","2016-12-20 17:29:27","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-20 17:29:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2202","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2203","1","2016-12-20 17:29:27","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-20 17:29:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2203","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2204","1","2016-12-20 17:29:27","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-20 17:29:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2204","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2205","1","2016-12-20 17:29:27","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-20 17:29:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2205","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2206","1","2016-12-20 17:29:27","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-20 17:29:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2206","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2207","1","2016-12-20 17:29:27","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-20 17:29:27","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2207","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2371","1","2016-12-25 16:14:19","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-25 16:14:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2371","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2372","1","2016-12-25 16:14:19","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-25 16:14:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2372","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2373","1","2016-12-25 16:14:19","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-25 16:14:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2373","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2374","1","2016-12-25 16:14:19","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-25 16:14:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2374","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2375","1","2016-12-25 16:14:19","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-25 16:14:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2375","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2376","1","2016-12-25 16:14:19","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-25 16:14:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2376","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2377","1","2016-12-25 16:14:19","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-25 16:14:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2377","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2378","1","2016-12-25 16:14:19","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-25 16:14:19","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2378","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2379","1","2016-12-25 16:22:46","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-25 16:22:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2379","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2380","1","2016-12-25 16:22:46","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-25 16:22:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2380","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2381","1","2016-12-25 16:22:46","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-25 16:22:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2381","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2382","1","2016-12-25 16:22:46","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-25 16:22:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2382","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2383","1","2016-12-25 16:22:46","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-25 16:22:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2383","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2384","1","2016-12-25 16:22:46","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-25 16:22:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2384","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2385","1","2016-12-25 16:22:46","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-25 16:22:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2385","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2386","1","2016-12-25 16:22:46","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-25 16:22:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2386","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2387","1","2016-12-25 17:08:46","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-25 17:08:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2387","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2388","1","2016-12-25 17:08:46","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-25 17:08:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2388","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2389","1","2016-12-25 17:08:46","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-25 17:08:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2389","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2390","1","2016-12-25 17:08:46","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-25 17:08:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2390","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2391","1","2016-12-25 17:08:46","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-25 17:08:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2391","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2392","1","2016-12-25 17:08:46","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-25 17:08:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2392","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2393","1","2016-12-25 17:08:46","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-25 17:08:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2393","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2394","1","2016-12-25 17:08:46","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-25 17:08:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2394","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2454","1","2016-12-28 23:56:16","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-28 23:56:16","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2454","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2455","1","2016-12-28 23:56:17","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-28 23:56:17","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2455","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2456","1","2016-12-28 23:56:17","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-28 23:56:17","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2456","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2457","1","2016-12-28 23:56:17","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-28 23:56:17","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2457","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2458","1","2016-12-28 23:56:17","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-28 23:56:17","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2458","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2459","1","2016-12-28 23:56:17","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-28 23:56:17","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2459","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2460","1","2016-12-28 23:56:17","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-28 23:56:17","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2460","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2461","1","2016-12-28 23:56:17","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-28 23:56:17","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2461","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2463","1","2016-12-28 23:57:04","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-28 23:57:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2463","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2464","1","2016-12-28 23:57:04","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-28 23:57:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2464","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2465","1","2016-12-28 23:57:04","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-28 23:57:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2465","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2466","1","2016-12-28 23:57:04","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-28 23:57:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2466","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2467","1","2016-12-28 23:57:04","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-28 23:57:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2467","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2468","1","2016-12-28 23:57:04","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-28 23:57:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2468","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2469","1","2016-12-28 23:57:04","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-28 23:57:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2469","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2470","1","2016-12-28 23:57:04","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-28 23:57:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2470","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2472","1","2016-12-28 23:57:45","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-28 23:57:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2472","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2473","1","2016-12-28 23:57:45","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-28 23:57:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2473","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2474","1","2016-12-28 23:57:45","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-28 23:57:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2474","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2475","1","2016-12-28 23:57:45","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-28 23:57:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2475","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2476","1","2016-12-28 23:57:45","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-28 23:57:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2476","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2477","1","2016-12-28 23:57:45","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-28 23:57:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2477","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2478","1","2016-12-28 23:57:45","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-28 23:57:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2478","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2479","1","2016-12-28 23:57:45","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-28 23:57:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2479","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2481","1","2016-12-28 23:58:46","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-28 23:58:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2481","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2482","1","2016-12-28 23:58:46","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-28 23:58:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2482","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2483","1","2016-12-28 23:58:46","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-28 23:58:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2483","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2484","1","2016-12-28 23:58:46","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-28 23:58:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2484","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2485","1","2016-12-28 23:58:46","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-28 23:58:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2485","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2486","1","2016-12-28 23:58:46","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-28 23:58:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2486","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2487","1","2016-12-28 23:58:46","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-28 23:58:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2487","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2488","1","2016-12-28 23:58:46","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-28 23:58:46","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2488","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2490","1","2016-12-29 00:01:36","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:01:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2490","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2491","1","2016-12-29 00:01:36","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:01:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2491","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2492","1","2016-12-29 00:01:36","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:01:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2492","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2493","1","2016-12-29 00:01:36","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:01:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2493","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2494","1","2016-12-29 00:01:36","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:01:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2494","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2495","1","2016-12-29 00:01:36","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:01:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2495","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2496","1","2016-12-29 00:01:36","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:01:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2496","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2497","1","2016-12-29 00:01:36","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:01:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2497","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2499","1","2016-12-29 00:28:29","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:28:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2499","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2500","1","2016-12-29 00:28:29","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:28:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2500","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2501","1","2016-12-29 00:28:29","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:28:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2501","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2502","1","2016-12-29 00:28:29","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:28:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2502","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2503","1","2016-12-29 00:28:29","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:28:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2503","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2504","1","2016-12-29 00:28:29","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:28:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2504","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2505","1","2016-12-29 00:28:29","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:28:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2505","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2506","1","2016-12-29 00:28:29","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:28:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2506","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2508","1","2016-12-29 00:30:03","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:30:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2508","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2509","1","2016-12-29 00:30:03","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:30:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2509","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2510","1","2016-12-29 00:30:03","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:30:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2510","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2511","1","2016-12-29 00:30:03","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:30:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2511","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2512","1","2016-12-29 00:30:03","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:30:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2512","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2513","1","2016-12-29 00:30:03","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:30:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2513","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2514","1","2016-12-29 00:30:03","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:30:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2514","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2515","1","2016-12-29 00:30:03","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:30:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2515","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2516","1","2016-12-29 00:30:40","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:30:40","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2516","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2517","1","2016-12-29 00:30:40","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:30:40","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2517","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2518","1","2016-12-29 00:30:40","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:30:40","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2518","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2519","1","2016-12-29 00:30:40","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:30:40","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2519","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2520","1","2016-12-29 00:30:40","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:30:40","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2520","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2521","1","2016-12-29 00:30:40","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:30:40","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2521","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2522","1","2016-12-29 00:30:40","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:30:40","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2522","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2523","1","2016-12-29 00:30:40","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:30:40","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2523","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2524","1","2016-12-29 00:30:57","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:30:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2524","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2525","1","2016-12-29 00:30:57","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:30:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2525","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2526","1","2016-12-29 00:30:57","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:30:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2526","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2527","1","2016-12-29 00:30:57","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:30:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2527","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2528","1","2016-12-29 00:30:57","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:30:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2528","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2529","1","2016-12-29 00:30:57","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:30:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2529","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2530","1","2016-12-29 00:30:57","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:30:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2530","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2531","1","2016-12-29 00:30:57","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:30:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2531","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2534","1","2016-12-29 00:37:44","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:37:44","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2534","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2535","1","2016-12-29 00:37:44","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:37:44","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2535","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2536","1","2016-12-29 00:37:44","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:37:44","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2536","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2537","1","2016-12-29 00:37:44","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:37:44","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2537","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2538","1","2016-12-29 00:37:44","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:37:44","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2538","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2539","1","2016-12-29 00:37:44","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:37:44","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2539","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2540","1","2016-12-29 00:37:44","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:37:44","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2540","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2541","1","2016-12-29 00:37:44","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:37:44","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2541","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2543","1","2016-12-29 00:47:41","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:47:41","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2543","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2544","1","2016-12-29 00:47:41","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:47:41","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2544","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2545","1","2016-12-29 00:47:41","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:47:41","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2545","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2546","1","2016-12-29 00:47:41","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:47:41","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2546","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2547","1","2016-12-29 00:47:41","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:47:41","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2547","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2548","1","2016-12-29 00:47:41","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:47:41","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2548","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2549","1","2016-12-29 00:47:41","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:47:41","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2549","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2550","1","2016-12-29 00:47:41","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:47:41","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2550","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2551","1","2016-12-29 00:47:51","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:47:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2551","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2552","1","2016-12-29 00:47:51","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:47:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2552","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2553","1","2016-12-29 00:47:51","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:47:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2553","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2554","1","2016-12-29 00:47:51","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:47:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2554","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2555","1","2016-12-29 00:47:51","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:47:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2555","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2556","1","2016-12-29 00:47:51","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:47:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2556","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2557","1","2016-12-29 00:47:51","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:47:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2557","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2558","1","2016-12-29 00:47:51","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:47:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2558","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2559","1","2016-12-29 00:48:47","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:48:47","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2559","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2560","1","2016-12-29 00:48:47","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:48:47","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2560","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2561","1","2016-12-29 00:48:47","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:48:47","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2561","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2562","1","2016-12-29 00:48:47","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:48:47","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2562","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2563","1","2016-12-29 00:48:47","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:48:47","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2563","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2564","1","2016-12-29 00:48:47","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:48:47","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2564","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2565","1","2016-12-29 00:48:48","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:48:48","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2565","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2566","1","2016-12-29 00:48:48","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:48:48","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2566","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2567","1","2016-12-29 00:49:09","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:49:09","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2567","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2568","1","2016-12-29 00:49:09","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:49:09","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2568","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2569","1","2016-12-29 00:49:09","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:49:09","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2569","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2570","1","2016-12-29 00:49:09","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:49:09","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2570","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2571","1","2016-12-29 00:49:09","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:49:09","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2571","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2572","1","2016-12-29 00:49:09","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:49:09","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2572","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2573","1","2016-12-29 00:49:09","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:49:09","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2573","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2574","1","2016-12-29 00:49:09","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:49:09","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2574","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2575","1","2016-12-29 00:50:36","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:50:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2575","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2576","1","2016-12-29 00:50:36","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:50:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2576","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2577","1","2016-12-29 00:50:36","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:50:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2577","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2578","1","2016-12-29 00:50:36","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:50:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2578","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2579","1","2016-12-29 00:50:36","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:50:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2579","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2580","1","2016-12-29 00:50:36","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:50:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2580","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2581","1","2016-12-29 00:50:36","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:50:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2581","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2582","1","2016-12-29 00:50:36","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:50:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2582","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2583","1","2016-12-29 00:51:32","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:51:32","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2583","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2584","1","2016-12-29 00:51:32","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:51:32","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2584","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2585","1","2016-12-29 00:51:32","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:51:32","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2585","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2586","1","2016-12-29 00:51:32","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:51:32","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2586","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2587","1","2016-12-29 00:51:32","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:51:32","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2587","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2588","1","2016-12-29 00:51:32","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:51:32","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2588","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2589","1","2016-12-29 00:51:32","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:51:32","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2589","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2590","1","2016-12-29 00:51:32","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:51:32","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2590","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2591","1","2016-12-29 00:52:01","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2591","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2592","1","2016-12-29 00:52:01","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2592","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2593","1","2016-12-29 00:52:01","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2593","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2594","1","2016-12-29 00:52:01","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2594","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2595","1","2016-12-29 00:52:01","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2595","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2596","1","2016-12-29 00:52:01","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2596","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2597","1","2016-12-29 00:52:01","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2597","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2598","1","2016-12-29 00:52:01","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2598","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2599","1","2016-12-29 00:52:36","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:52:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2599","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2600","1","2016-12-29 00:52:36","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:52:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2600","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2601","1","2016-12-29 00:52:36","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:52:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2601","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2602","1","2016-12-29 00:52:36","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:52:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2602","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2603","1","2016-12-29 00:52:36","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:52:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2603","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2604","1","2016-12-29 00:52:36","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:52:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2604","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2605","1","2016-12-29 00:52:36","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:52:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2605","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2606","1","2016-12-29 00:52:36","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:52:36","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2606","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2607","1","2016-12-29 00:52:56","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:52:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2607","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2608","1","2016-12-29 00:52:56","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:52:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2608","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2609","1","2016-12-29 00:52:56","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:52:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2609","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2610","1","2016-12-29 00:52:56","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:52:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2610","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2611","1","2016-12-29 00:52:56","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:52:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2611","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2612","1","2016-12-29 00:52:56","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:52:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2612","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2613","1","2016-12-29 00:52:56","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:52:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2613","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2614","1","2016-12-29 00:52:56","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:52:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2614","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2615","1","2016-12-29 00:53:14","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:53:14","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2615","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2616","1","2016-12-29 00:53:14","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:53:14","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2616","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2617","1","2016-12-29 00:53:14","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:53:14","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2617","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2618","1","2016-12-29 00:53:14","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:53:14","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2618","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2619","1","2016-12-29 00:53:14","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:53:14","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2619","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2620","1","2016-12-29 00:53:14","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:53:14","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2620","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2621","1","2016-12-29 00:53:14","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:53:14","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2621","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2622","1","2016-12-29 00:53:14","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:53:14","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2622","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2624","1","2016-12-29 00:56:11","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:56:11","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2624","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2625","1","2016-12-29 00:56:11","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:56:11","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2625","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2626","1","2016-12-29 00:56:11","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:56:11","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2626","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2627","1","2016-12-29 00:56:11","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:56:11","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2627","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2628","1","2016-12-29 00:56:11","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:56:11","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2628","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2629","1","2016-12-29 00:56:11","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:56:11","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2629","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2630","1","2016-12-29 00:56:11","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:56:11","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2630","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2631","1","2016-12-29 00:56:11","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:56:11","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2631","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2633","1","2016-12-29 00:57:29","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 00:57:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2633","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2634","1","2016-12-29 00:57:29","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 00:57:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2634","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2635","1","2016-12-29 00:57:29","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 00:57:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2635","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2636","1","2016-12-29 00:57:29","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 00:57:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2636","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2637","1","2016-12-29 00:57:29","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 00:57:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2637","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2638","1","2016-12-29 00:57:29","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 00:57:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2638","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2639","1","2016-12-29 00:57:29","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 00:57:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2639","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2640","1","2016-12-29 00:57:29","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 00:57:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2640","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2641","1","2016-12-29 16:06:42","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 16:06:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2641","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2642","1","2016-12-29 16:06:42","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 16:06:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2642","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2643","1","2016-12-29 16:06:42","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 16:06:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2643","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2644","1","2016-12-29 16:06:42","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 16:06:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2644","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2645","1","2016-12-29 16:06:42","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 16:06:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2645","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2646","1","2016-12-29 16:06:42","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 16:06:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2646","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2647","1","2016-12-29 16:06:42","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 16:06:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2647","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2648","1","2016-12-29 16:06:42","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 16:06:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2648","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2650","1","2016-12-29 16:08:24","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-29 16:08:24","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2650","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2651","1","2016-12-29 16:08:24","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-29 16:08:24","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2651","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2652","1","2016-12-29 16:08:24","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-29 16:08:24","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2652","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2653","1","2016-12-29 16:08:24","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-29 16:08:24","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2653","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2654","1","2016-12-29 16:08:24","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-29 16:08:24","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2654","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2655","1","2016-12-29 16:08:24","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-29 16:08:24","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2655","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2656","1","2016-12-29 16:08:24","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-29 16:08:24","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2656","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2657","1","2016-12-29 16:08:24","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-29 16:08:24","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2657","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2658","1","2016-12-31 03:19:03","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-31 03:19:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2658","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2659","1","2016-12-31 03:19:03","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-31 03:19:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2659","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2660","1","2016-12-31 03:19:03","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-31 03:19:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2660","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2661","1","2016-12-31 03:19:03","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-31 03:19:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2661","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2662","1","2016-12-31 03:19:03","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-31 03:19:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2662","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2663","1","2016-12-31 03:19:03","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-31 03:19:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2663","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2664","1","2016-12-31 03:19:04","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-31 03:19:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2664","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2665","1","2016-12-31 03:19:04","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-31 03:19:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2665","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2667","1","2016-12-31 03:20:33","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-31 03:20:33","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2667","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2668","1","2016-12-31 03:20:33","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-31 03:20:33","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2668","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2669","1","2016-12-31 03:20:33","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-31 03:20:33","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2669","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2670","1","2016-12-31 03:20:33","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-31 03:20:33","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2670","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2671","1","2016-12-31 03:20:33","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-31 03:20:33","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2671","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2672","1","2016-12-31 03:20:33","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-31 03:20:33","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2672","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2673","1","2016-12-31 03:20:33","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-31 03:20:33","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2673","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2674","1","2016-12-31 03:20:33","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-31 03:20:33","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2674","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2675","1","2016-12-31 03:21:12","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-31 03:21:12","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2675","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2676","1","2016-12-31 03:21:12","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-31 03:21:12","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2676","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2677","1","2016-12-31 03:21:12","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-31 03:21:12","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2677","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2678","1","2016-12-31 03:21:12","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-31 03:21:12","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2678","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2679","1","2016-12-31 03:21:12","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-31 03:21:12","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2679","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2680","1","2016-12-31 03:21:12","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-31 03:21:12","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2680","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2681","1","2016-12-31 03:21:12","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-31 03:21:12","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2681","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2682","1","2016-12-31 03:21:12","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-31 03:21:12","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2682","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2684","1","2016-12-31 03:29:52","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-31 03:29:52","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2684","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2685","1","2016-12-31 03:29:52","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-31 03:29:52","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2685","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2686","1","2016-12-31 03:29:52","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-31 03:29:52","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2686","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2687","1","2016-12-31 03:29:52","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-31 03:29:52","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2687","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2688","1","2016-12-31 03:29:53","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-31 03:29:53","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2688","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2689","1","2016-12-31 03:29:53","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-31 03:29:53","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2689","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2690","1","2016-12-31 03:29:53","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-31 03:29:53","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2690","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2691","1","2016-12-31 03:29:53","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-31 03:29:53","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2691","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2693","1","2016-12-31 03:31:47","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-31 03:31:47","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2693","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2694","1","2016-12-31 03:31:47","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-31 03:31:47","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2694","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2695","1","2016-12-31 03:31:47","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-31 03:31:47","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2695","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2696","1","2016-12-31 03:31:47","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-31 03:31:47","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2696","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2697","1","2016-12-31 03:31:47","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-31 03:31:47","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2697","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2698","1","2016-12-31 03:31:47","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-31 03:31:47","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2698","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2699","1","2016-12-31 03:31:47","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-31 03:31:47","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2699","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2700","1","2016-12-31 03:31:47","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-31 03:31:47","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2700","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2702","1","2016-12-31 03:36:10","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-31 03:36:10","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2702","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2703","1","2016-12-31 03:36:10","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-31 03:36:10","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2703","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2704","1","2016-12-31 03:36:10","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-31 03:36:10","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2704","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2705","1","2016-12-31 03:36:10","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-31 03:36:10","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2705","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2706","1","2016-12-31 03:36:10","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-31 03:36:10","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2706","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2707","1","2016-12-31 03:36:10","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-31 03:36:10","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2707","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2708","1","2016-12-31 03:36:10","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-31 03:36:10","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2708","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2709","1","2016-12-31 03:36:10","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-31 03:36:10","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2709","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2710","1","2016-12-31 03:42:28","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-31 03:42:28","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2710","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2711","1","2016-12-31 03:42:28","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-31 03:42:28","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2711","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2712","1","2016-12-31 03:42:28","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-31 03:42:28","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2712","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2713","1","2016-12-31 03:42:28","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-31 03:42:28","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2713","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2714","1","2016-12-31 03:42:28","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-31 03:42:28","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2714","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2715","1","2016-12-31 03:42:28","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-31 03:42:28","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2715","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2716","1","2016-12-31 03:42:28","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-31 03:42:28","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2716","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2717","1","2016-12-31 03:42:28","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-31 03:42:28","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2717","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2718","1","2016-12-31 03:49:24","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-31 03:49:24","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2718","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2719","1","2016-12-31 03:49:24","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-31 03:49:24","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2719","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2720","1","2016-12-31 03:49:24","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-31 03:49:24","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2720","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2721","1","2016-12-31 03:49:24","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-31 03:49:24","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2721","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2722","1","2016-12-31 03:49:24","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-31 03:49:24","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2722","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2723","1","2016-12-31 03:49:24","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-31 03:49:24","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2723","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2724","1","2016-12-31 03:49:25","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-31 03:49:25","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2724","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2725","1","2016-12-31 03:49:25","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-31 03:49:25","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2725","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2726","1","2016-12-31 03:50:04","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2016-12-31 03:50:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2726","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2727","1","2016-12-31 03:50:04","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2016-12-31 03:50:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2727","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2728","1","2016-12-31 03:50:04","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2016-12-31 03:50:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2728","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2729","1","2016-12-31 03:50:04","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2016-12-31 03:50:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2729","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2730","1","2016-12-31 03:50:04","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2016-12-31 03:50:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2730","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2731","1","2016-12-31 03:50:04","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2016-12-31 03:50:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2731","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2732","1","2016-12-31 03:50:04","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2016-12-31 03:50:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2732","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2733","1","2016-12-31 03:50:04","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2016-12-31 03:50:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2733","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2735","1","2017-01-02 12:06:20","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-01-02 12:06:20","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2735","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2736","1","2017-01-02 12:06:21","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-01-02 12:06:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2736","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2737","1","2017-01-02 12:06:21","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-01-02 12:06:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2737","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2738","1","2017-01-02 12:06:21","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-01-02 12:06:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2738","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2739","1","2017-01-02 12:06:21","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-01-02 12:06:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2739","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2740","1","2017-01-02 12:06:21","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-01-02 12:06:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2740","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2741","1","2017-01-02 12:06:21","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-01-02 12:06:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2741","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2742","1","2017-01-02 12:06:21","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-01-02 12:06:21","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2742","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2745","1","2017-01-02 12:07:15","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-01-02 12:07:15","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2745","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2746","1","2017-01-02 12:07:15","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-01-02 12:07:15","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2746","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2747","1","2017-01-02 12:07:15","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-01-02 12:07:15","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2747","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2748","1","2017-01-02 12:07:15","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-01-02 12:07:15","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2748","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2749","1","2017-01-02 12:07:15","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-01-02 12:07:15","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2749","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2750","1","2017-01-02 12:07:15","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-01-02 12:07:15","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2750","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2751","1","2017-01-02 12:07:15","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-01-02 12:07:15","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2751","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2752","1","2017-01-02 12:07:15","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-01-02 12:07:15","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2752","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2754","1","2017-01-02 12:13:05","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-01-02 12:13:05","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2754","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2755","1","2017-01-02 12:13:05","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-01-02 12:13:05","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2755","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2756","1","2017-01-02 12:13:05","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-01-02 12:13:05","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2756","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2757","1","2017-01-02 12:13:05","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-01-02 12:13:05","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2757","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2758","1","2017-01-02 12:13:05","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-01-02 12:13:05","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2758","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2759","1","2017-01-02 12:13:05","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-01-02 12:13:05","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2759","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2760","1","2017-01-02 12:13:05","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-01-02 12:13:05","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2760","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2761","1","2017-01-02 12:13:05","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-01-02 12:13:05","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2761","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2763","1","2017-01-02 12:15:06","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-01-02 12:15:06","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2763","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2764","1","2017-01-02 12:15:06","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-01-02 12:15:06","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2764","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2765","1","2017-01-02 12:15:06","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-01-02 12:15:06","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2765","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2766","1","2017-01-02 12:15:06","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-01-02 12:15:06","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2766","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2767","1","2017-01-02 12:15:06","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-01-02 12:15:06","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2767","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2768","1","2017-01-02 12:15:06","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-01-02 12:15:06","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2768","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2769","1","2017-01-02 12:15:06","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-01-02 12:15:06","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2769","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2770","1","2017-01-02 12:15:06","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-01-02 12:15:06","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2770","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2772","1","2017-01-02 12:22:44","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-01-02 12:22:44","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2772","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2773","1","2017-01-02 12:22:45","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-01-02 12:22:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2773","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2774","1","2017-01-02 12:22:45","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-01-02 12:22:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2774","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2775","1","2017-01-02 12:22:45","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-01-02 12:22:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2775","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2776","1","2017-01-02 12:22:45","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-01-02 12:22:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2776","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2777","1","2017-01-02 12:22:45","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-01-02 12:22:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2777","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2778","1","2017-01-02 12:22:45","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-01-02 12:22:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2778","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2779","1","2017-01-02 12:22:45","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-01-02 12:22:45","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2779","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2781","1","2017-01-02 12:26:29","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-01-02 12:26:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2781","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2782","1","2017-01-02 12:26:29","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-01-02 12:26:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2782","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2783","1","2017-01-02 12:26:29","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-01-02 12:26:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2783","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2784","1","2017-01-02 12:26:29","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-01-02 12:26:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2784","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2785","1","2017-01-02 12:26:29","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-01-02 12:26:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2785","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2786","1","2017-01-02 12:26:29","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-01-02 12:26:29","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2786","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2787","1","2017-01-02 12:26:30","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-01-02 12:26:30","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2787","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2788","1","2017-01-02 12:26:30","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-01-02 12:26:30","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2788","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2792","1","2017-02-04 15:13:51","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-02-04 15:13:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2792","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2793","1","2017-02-04 15:13:51","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-02-04 15:13:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2793","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2794","1","2017-02-04 15:13:51","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-02-04 15:13:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2794","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2795","1","2017-02-04 15:13:51","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-02-04 15:13:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2795","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2796","1","2017-02-04 15:13:51","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-02-04 15:13:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2796","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2797","1","2017-02-04 15:13:51","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-02-04 15:13:51","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2797","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2798","1","2017-02-04 15:13:52","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-02-04 15:13:52","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2798","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2799","1","2017-02-04 15:13:52","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-02-04 15:13:52","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2799","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2800","1","2017-02-04 15:49:42","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-02-04 15:49:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2800","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2801","1","2017-02-04 15:49:42","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-02-04 15:49:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2801","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2802","1","2017-02-04 15:49:42","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-02-04 15:49:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2802","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2803","1","2017-02-04 15:49:42","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-02-04 15:49:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2803","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2804","1","2017-02-04 15:49:42","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-02-04 15:49:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2804","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2805","1","2017-02-04 15:49:42","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-02-04 15:49:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2805","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2806","1","2017-02-04 15:49:42","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-02-04 15:49:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2806","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2807","1","2017-02-04 15:49:42","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-02-04 15:49:42","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2807","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2808","1","2017-02-04 15:52:01","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-02-04 15:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2808","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2809","1","2017-02-04 15:52:01","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-02-04 15:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2809","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2810","1","2017-02-04 15:52:01","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-02-04 15:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2810","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2811","1","2017-02-04 15:52:01","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-02-04 15:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2811","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2812","1","2017-02-04 15:52:01","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-02-04 15:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2812","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2813","1","2017-02-04 15:52:01","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-02-04 15:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2813","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2814","1","2017-02-04 15:52:01","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-02-04 15:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2814","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2815","1","2017-02-04 15:52:01","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-02-04 15:52:01","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2815","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2816","1","2017-02-04 15:52:16","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-02-04 15:52:16","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2816","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2817","1","2017-02-04 15:52:16","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-02-04 15:52:16","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2817","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2818","1","2017-02-04 15:52:16","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-02-04 15:52:16","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2818","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2819","1","2017-02-04 15:52:16","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-02-04 15:52:16","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2819","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2820","1","2017-02-04 15:52:16","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-02-04 15:52:16","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2820","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2821","1","2017-02-04 15:52:16","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-02-04 15:52:16","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2821","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2822","1","2017-02-04 15:52:16","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-02-04 15:52:16","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2822","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2823","1","2017-02-04 15:52:16","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-02-04 15:52:16","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2823","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2824","1","2017-02-04 15:52:18","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-02-04 15:52:18","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2824","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2825","1","2017-02-04 15:52:18","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-02-04 15:52:18","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2825","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2826","1","2017-02-04 15:52:18","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-02-04 15:52:18","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2826","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2827","1","2017-02-04 15:52:18","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-02-04 15:52:18","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2827","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2828","1","2017-02-04 15:52:18","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-02-04 15:52:18","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2828","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2829","1","2017-02-04 15:52:18","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-02-04 15:52:18","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2829","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2830","1","2017-02-04 15:52:18","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-02-04 15:52:18","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2830","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2831","1","2017-02-04 15:52:18","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-02-04 15:52:18","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2831","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2832","1","2017-02-04 15:52:54","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-02-04 15:52:54","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2832","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2833","1","2017-02-04 15:52:54","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-02-04 15:52:54","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2833","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2834","1","2017-02-04 15:52:55","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-02-04 15:52:55","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2834","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2835","1","2017-02-04 15:52:55","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-02-04 15:52:55","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2835","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2836","1","2017-02-04 15:52:55","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-02-04 15:52:55","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2836","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2837","1","2017-02-04 15:52:55","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-02-04 15:52:55","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2837","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2838","1","2017-02-04 15:52:55","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-02-04 15:52:55","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2838","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2839","1","2017-02-04 15:52:55","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-02-04 15:52:55","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2839","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2840","1","2017-02-04 15:53:48","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-02-04 15:53:48","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2840","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2841","1","2017-02-04 15:53:48","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-02-04 15:53:48","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2841","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2842","1","2017-02-04 15:53:48","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-02-04 15:53:48","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2842","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2843","1","2017-02-04 15:53:48","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-02-04 15:53:48","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2843","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2844","1","2017-02-04 15:53:48","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-02-04 15:53:48","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2844","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2845","1","2017-02-04 15:53:48","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-02-04 15:53:48","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2845","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2846","1","2017-02-04 15:53:48","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-02-04 15:53:48","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2846","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2847","1","2017-02-04 15:53:48","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-02-04 15:53:48","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2847","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2848","1","2017-02-04 15:53:56","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-02-04 15:53:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2848","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2849","1","2017-02-04 15:53:57","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-02-04 15:53:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2849","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2850","1","2017-02-04 15:53:57","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-02-04 15:53:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2850","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2851","1","2017-02-04 15:53:57","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-02-04 15:53:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2851","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2852","1","2017-02-04 15:53:57","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-02-04 15:53:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2852","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2853","1","2017-02-04 15:53:57","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-02-04 15:53:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2853","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2854","1","2017-02-04 15:53:57","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-02-04 15:53:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2854","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2855","1","2017-02-04 15:53:57","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-02-04 15:53:57","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2855","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2861","1","2017-02-20 10:38:03","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-02-20 10:38:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2861","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2862","1","2017-02-20 10:38:04","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-02-20 10:38:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2862","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2863","1","2017-02-20 10:38:04","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-02-20 10:38:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2863","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2864","1","2017-02-20 10:38:04","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-02-20 10:38:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2864","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2865","1","2017-02-20 10:38:04","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-02-20 10:38:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2865","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2866","1","2017-02-20 10:38:04","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-02-20 10:38:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2866","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2867","1","2017-02-20 10:38:04","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-02-20 10:38:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2867","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2868","1","2017-02-20 10:38:04","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-02-20 10:38:04","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2868","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2870","1","2017-02-20 10:38:56","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-02-20 10:38:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2870","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2871","1","2017-02-20 10:38:56","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-02-20 10:38:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2871","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2872","1","2017-02-20 10:38:56","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-02-20 10:38:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2872","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2873","1","2017-02-20 10:38:56","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-02-20 10:38:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2873","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2874","1","2017-02-20 10:38:56","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-02-20 10:38:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2874","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2875","1","2017-02-20 10:38:56","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-02-20 10:38:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2875","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2876","1","2017-02-20 10:38:56","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-02-20 10:38:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2876","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2877","1","2017-02-20 10:38:56","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-02-20 10:38:56","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2877","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("4","1","2016-08-04 16:53:58","2016-08-04 16:53:58","[vc_row css=\".vc_custom_1473104552943{margin-top: -115px !important;}\"][vc_column width=\"1/4\"][service type=\"vertical\" title=\"Web Application \" icon_color=\"#099aad\" bg_color=\"#ffffff\" border_color=\"#dddddd\" icon=\"fa fa-users\"]\n
    \n \t
  • JAVA
  • \n \t
  • PHP
  • \n \t
  • ASP.NET
  • \n \t
  • SAAS
  • \n
\n[/service][/vc_column][vc_column width=\"1/4\"][service type=\"vertical\" title=\"Mobile Application\" icon_color=\"#099aad\" bg_color=\"#ffffff\" border_color=\"#dddddd\" icon=\"fa fa-mobile\"]\n
    \n \t
  • Andriod
  • \n \t
  • IPhone
  • \n \t
  • Blackberry
  • \n
\n[/service][/vc_column][vc_column width=\"1/4\"][service type=\"vertical\" title=\"Graphics Design \" icon_color=\"#099aad\" bg_color=\"#ffffff\" border_color=\"#dddddd\" icon=\"fa fa-camera\"]\n
    \n \t
  • Web Application Design
  • \n \t
  • Mobile Application Design
  • \n \t
  • Photoshop - Illustrator - 3D Max 
  • \n \t
  • After Effect - Cenima 4D
  • \n
\n[/service][/vc_column][vc_column width=\"1/4\"][service type=\"vertical\" title=\"Website Application\" icon_color=\"#099aad\" bg_color=\"#ffffff\" border_color=\"#dddddd\" icon=\"fa fa-desktop\"]\n
    \n \t
  • PHP - HTML
  • \n \t
  • WordPress
  • \n \t
  • E-Commerce
  • \n
\n[/service][/vc_column][/vc_row][vc_row][vc_column][gap height=\"60\"][vc_column_text]\n

SERVICES

\n

\n[/vc_column_text][gfont color=\"rgba(9,154,173,0.3)\" textalign=\"center\"]?[/gfont][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][gap height=\"40\"][service align=\"right\" title=\"Web Application\"]Build your product or web application using Agile development process, with high-end, low cost, web based IT infrastructure[/service][gap height=\"65\"][service align=\"right\" title=\"Web Site\"]We make websites built for performance and our methodology is proven for each industry we serve[/service][gap height=\"65\"][service align=\"right\" title=\"Mobile Application\"]Your company is unique and your apps should be too. Increase your customer base , with our mobile development strategy.[/service][/vc_column][vc_column width=\"1/3\"][gap height=\"90\"][vc_single_image image=\"2044\" img_size=\"full\" alignment=\"center\"][gap height=\"80\"][/vc_column][vc_column width=\"1/3\"][gap height=\"40\"][service title=\"Networking\"]We offer networking services for  business company. Whether you need a network to share printers and Internet access or a robust[/service][gap height=\"65\"][service title=\"SEO\"]Athel  is a world-leader in developing SEO content. We help companies rank higher, attract more customers[/service][gap height=\"65\"][service title=\"Design And Graphics\"]Our expert team brings digital ideas to life with beautifully executed, creative design.[/service][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1473022964624{background-color: #099aad !important;}\" el_class=\"tar\"][vc_column width=\"2/3\"][vc_column_text]\n

Do you have any question about our services?

\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][button text=\"Free Consultation\" text_color=\"#ffffff\" button_align=\"right\" button_default_color=\"customcolor\" button_custom_color=\"#ffffff\" icon_color=\"#ffffff\" size=\"large\" url=\"http://atheltree.com/contact-us/\" icon=\"fa fa-phone\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/6\"][title icon=\"fa fa-th\"]Latest Projects[/title][gap][button text=\"View All Projects\" text_color=\"#ffffff\" style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#099aad\" url=\"http://atheltree.com/portfolio/\"][/vc_column_inner][vc_column_inner width=\"5/6\"][portfolio columns=\"3\" items=\"6\" carousel=\"true\" title=\"\"][/vc_column_inner][/vc_row_inner][gap height=\"30\"][gap height=\"70\"][title align=\"center\"]How we work?[/title][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][process_box type=\"vertical\" title=\"Analysis\" number_color=\"rgba(9,154,173,0.15)\"]Analyzing the performance of the software at various stages and making notes on additional requirements .[/process_box][/vc_column][vc_column width=\"1/4\"][process_box type=\"vertical\" title=\"Design\" box_number=\"2\" number_color=\"rgba(9,154,173,0.35)\"]Building the architecture of the project. This step helps remove possible flaws by setting a standard and attempting to stick to it.[/process_box][/vc_column][vc_column width=\"1/4\"][process_box type=\"vertical\" title=\"Development\" box_number=\"3\" number_color=\"rgba(9,154,173,0.68)\"]The actual task of developing the software starts here with data recording going on in the background .[/process_box][/vc_column][vc_column width=\"1/4\"][process_box type=\"vertical\" title=\"Testing\" box_number=\"4\" number_color=\"#099aad\"]Once the Development is complete the step of testing takes over,  testing stage assesses the software for errors and bugs if there are any.[/process_box][/vc_column][/vc_row][vc_row][vc_column][gap height=\"40\"][button text=\"Get Free Consultation\" text_color=\"#444444\" button_align=\"center\" button_default_color=\"customcolor\" button_custom_color=\"rgba(9,154,173,0.4)\" icon_color=\"#83a3bf\" size=\"medium\" url=\"http://atheltree.com/contact-us/\" icon=\"fa fa-phone\"][gap height=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" parallax=\"content-moving\" parallax_image=\"323\" parallax_speed_bg=\"2.5\" css=\".vc_custom_1473170988004{background-color: #099aad !important;}\" el_class=\"tar para-border\"][vc_column][gap height=\"30\"][title align=\"center\"]What our customers said?[/title][testimonial style=\"light\" bg_color=\"#099aad\" items=\"3\"][gap][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][gap height=\"20\"][vc_line_chart type=\"line\" x_values=\"JAN; FEB; MAR; APR; MAY; JUN; JUL; AUG; SEP; OCT;NOV;DEC\" values=\"%5B%7B%22title%22%3A%22Sales%22%2C%22y_values%22%3A%2215%3B%2017%3B%2020%3B%2025%3B%2022%3B%2025%3B%2027%3B25%3B24%3B26%3B24%3B26%22%2C%22color%22%3A%22peacoc%22%7D%5D\"][/vc_column][vc_column width=\"1/2\"][title header=\"h3\" align=\"center\"]Our Skills[/title][gap height=\"20\"][progress_bar title=\"Project Management\" percent=\"95\" color=\"#099aad\"][progress_bar title=\"Search Engine Optimization (SEO)\" percent=\"85\" color=\"#099aad\"][progress_bar title=\"Software Quality Assurance (QA)\" percent=\"98\" color=\"#099aad\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_pie value=\"95\" color=\"custom\" custom_color=\"#099aad\" title=\"Web Apps\" units=\"%\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_pie value=\"90\" color=\"custom\" custom_color=\"#099aad\" title=\"Mobile Apps\" units=\"%\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_pie value=\"97\" color=\"custom\" custom_color=\"#099aad\" title=\"Design&Graphics\" units=\"%\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_pie value=\"87\" color=\"custom\" custom_color=\"#099aad\" title=\"Networking\" units=\"%\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][gap][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" parallax=\"content-moving\" parallax_image=\"253\" parallax_speed_bg=\"2.5\" el_class=\"tac para-border\"][vc_column][gap height=\"70\"][vc_column_text]\n

Do you have any business problem?

\n

We are your solution!

\n[/vc_column_text][button text=\"Why ??\" text_color=\"#ffffff\" style=\"tbutton5\" button_align=\"center\" button_default_color=\"customcolor\" button_custom_color=\"#099aad\" size=\"medium\" url=\"http://atheltree.com/services/\"][gap height=\"100\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"20\"][vc_column_text] \n

Our Innovations

\n

\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1474329284117{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column width=\"1/3\"][vc_single_image image=\"2113\" img_size=\"full\"][/vc_column][vc_column width=\"2/3\"][gap height=\"70\"][title header=\"h1\" icon=\"fa fa-users\"] AthelHR[/title][divider align=\"left\" color=\"#dddddd\" margin_top=\"0\"][vc_column_text]\n
Athel HR comes with hundreds of pre-configured reports that analyze every aspect of your employee information and will help you point out potential shortfalls in your Human Capital needs to management before they occur. Cloud based HR softwareReports also allows you to organize data into intelligent reports that fit the exact needs of your business. Employees and managers can access files to update and view personal information.
\n[/vc_column_text][button text=\"Why AthelHR ?\" text_color=\"#444444\" size=\"medium\" url=\"http://atheltree.com/products/\" icon=\"fa fa-check\"][button text=\"Ask for A live Demo\" text_color=\"#ffffff\" style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#099aad\" size=\"medium\" url=\"http://atheltree.com/faq/\"][gap height=\"100\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1474329284117{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_column width=\"2/3\"][gap height=\"70\"][title header=\"h1\" icon=\"fa fa-database\"] AthelERP[/title][divider align=\"left\" color=\"#dddddd\" margin_top=\"0\"][vc_column_text]\n
Athel ERP for Large or Medium Enterprise,offering highly productive software systems with modules for Accounting, Payroll, Fixed Assets, Distribution Management, Auto Dealer Management, Human Resource. Solutions ranging from Project Management for Construction Companies to Industrial Workflow Management, Books Sellers, Apparel & Footwear, Design companies and much more.
\n[/vc_column_text][button text=\"Why AthelERP ?\" text_color=\"#444444\" size=\"medium\" url=\"http://atheltree.com/products/\" icon=\"fa fa-check\"][button text=\"Ask for A live Demo\" text_color=\"#ffffff\" style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#099aad\" size=\"medium\" url=\"http://atheltree.com/faq/\"][gap height=\"100\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2369\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column][divider style=\"icon\" margin_top=\"0\" icon=\"angle-down\"][gap][vc_column_text]\n

Our Clients

\n

\n[/vc_column_text][clients columns=\"6\"][/vc_column][/vc_row][vc_row][vc_column][gap][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" parallax=\"content-moving\" parallax_image=\"323\" parallax_speed_bg=\"2.5\" el_class=\"tac para-border\"][vc_column][gap height=\"70\"][vc_column_text]\n

Do you want new modern website , Web Apps , Mobile Apps?

\n

Yes, of course! So let\'s Call Athel Team

\n[/vc_column_text][button text=\"Call Athel team\" text_color=\"#ffffff\" style=\"tbutton5\" button_align=\"center\" button_default_color=\"customcolor\" button_custom_color=\"#099aad\" icon_color=\"#ffffff\" size=\"medium\" url=\"http://atheltree.com/contact-us/\" icon=\"fa fa-phone\"][gap height=\"100\"][/vc_column][/vc_row][vc_row][vc_column][gap][divider style=\"icon\" width=\"25%\" margin_top=\"0\" icon=\"angle-down\"][gap][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\n

Any Question?

\n[/vc_column_text][button text=\" Call +966 599 04 0013\" text_color=\"#099aad\" button_align=\"center\" button_default_color=\"customcolor\" button_custom_color=\"rgba(9,154,173,0.4)\" size=\"xlarge\" url=\"http://atheltree.com/contact-us/\"][gap height=\"70\"][/vc_column][/vc_row]","Homepage","","publish","closed","closed","","homepage","","","2016-08-04 16:53:58","2016-08-04 16:53:58","","0","http://demo.themetor.com/bizpro/?page_id=4","0","page","","0"); INSERT INTO `wp_posts` VALUES("1804","1","2016-08-04 13:18:56","2016-08-04 13:18:56","This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!","Sample Page","","publish","closed","open","","sample-page-2","","","2016-08-04 13:18:56","2016-08-04 13:18:56","","0","http://demo.themetor.com/bizpro/?page_id=2","0","page","","0"); INSERT INTO `wp_posts` VALUES("1805","1","2016-08-04 16:54:09","2016-08-04 16:54:09","[vc_row][vc_column][gap height=\"40\"][title]Mission & Vision[/title][vc_column_text]\n
\n
\n
\n
Athel is an AI-enhanced community of top dev teams. We use artificial intelligence technologies to allocate one of our top dev teams for a project,based on the team relevant expertise and availability. We support every client with an account manager, a tech project manager,and daily automated updates and roadblocks tracking, decreasing delays by 90%.
\n
We’re flexible and fit any development need. So we can build a new product by being your complete dev team,or supporting your existing one. We’re great at code refactoring, agile and scrum methodologies,cleaning backlogs, planning new features, building complex back-end systems, and simply making you happy with daily automated progress updates.
\n
\n
\n
\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][gap height=\"40\"][title align=\"center\"]Our Team[/title][vc_row_inner][vc_column_inner width=\"1/4\"][member name=\"Ahmed Ramadan\" role=\"Team Leader\" image=\"2400\"]Our goal is to achieve customer satisfaction[/member][/vc_column_inner][vc_column_inner width=\"1/4\"][member name=\"Gehad Abd-Elghani\" role=\"Marketing Manager\" image=\"2404\"]We are looking to have your project carefully .[/member][/vc_column_inner][vc_column_inner width=\"1/4\"][member name=\"Mohamed Elsheshtawy\" role=\"Executive Manager\" image=\"2418\"]Your dream will be reality with Athel Team[/member][/vc_column_inner][vc_column_inner width=\"1/4\"][member name=\"Mohamed Soliman \" role=\"SEO Director\" image=\"2410\"]We will do our best to be at the forefront[/member][/vc_column_inner][/vc_row_inner][gap][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" parallax=\"content-moving\" parallax_image=\"323\" parallax_speed_bg=\"2.5\" el_class=\"para-border\"][vc_column][vc_column_text]\n

Our Stats

\n

Some of our achievement and statistics

\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/6\"][vc_pie value=\"90\" color=\"custom\" title=\"Customer Satisfied\" custom_color=\"#099aad\" units=\"%\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_pie value=\"80\" color=\"custom\" title=\"Projects Done\" custom_color=\"#099aad\" units=\"%\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_pie value=\"100\" color=\"custom\" title=\"Services Quality\" units=\"%\" custom_color=\"#099aad\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_pie value=\"100\" color=\"custom\" title=\"On-time delivery\" custom_color=\"#099aad\" units=\"%\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_pie value=\"38.9\" color=\"custom\" title=\"Followers\" custom_color=\"#099aad\" units=\"k\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_pie value=\"35\" color=\"custom\" title=\"Apps under process\" units=\"%\" custom_color=\"#099aad\"][/vc_column_inner][/vc_row_inner][gap][/vc_column][/vc_row][vc_row][vc_column][gap][actionbox title=\"Try to see our Services \" sub_text=\"We are ready to meet all the requirements of your company to reach the desired goals\" image=\"2234\" button_text=\"Our Services\" button_text_color=\"#666666\" button_default_color=\"customcolor\" button_size=\"medium\" url=\"http://atheltree.com/services/\" button_icon=\"fa fa-briefcase\"][/vc_column][/vc_row][vc_row el_class=\"tac\"][vc_column][gap height=\"15\"][title align=\"center\"]Get in Touch[/title][social style=\"circle\" border=\"yes\" tooltip=\"toptip\" facebook=\"https://www.facebook.com/Athel-Tree-1706161316378751/\" twitter=\"https://twitter.com/athel_tree\" flickr=\"https://www.flickr.com/\" linkedin=\"https://www.linkedin.com/pulse/activities/athel-tree+0_2gZKxR1fgmnBPiNrKSERZx?trk=nav_responsive_sub_nav_yourupdates\" instagram=\"https://www.instagram.com/atheltree/\" youtube=\"https://www.youtube.com/channel/UCGuAXld3EDgfjjOv8Eu5YKw\" behance=\"https://www.behance.net/atheltree\"][gap height=\"30\"][/vc_column][/vc_row]","About Us","","publish","closed","closed","","about-us","","","2016-08-04 16:54:09","2016-08-04 16:54:09","","0","http://demo.themetor.com/bizpro/?page_id=6","0","page","","0"); INSERT INTO `wp_posts` VALUES("1806","1","2016-08-04 16:54:23","2016-08-04 16:54:23","[vc_row][vc_column width=\"1/2\"][title]Get in Touch with us[/title][vc_column_text]612 - Al Rossyis Building ,\nRiyadh -Suadi Arbaia ,\nP.O.Box 295500 Riyadh 11351.[/vc_column_text][social style=\"circle\" border=\"yes\" target=\"_blank\" tooltip=\"toptip\" facebook=\"https://www.facebook.com/Athel-Tree-1706161316378751/\" twitter=\"https://twitter.com/athel_tree\" flickr=\"https://www.flickr.com/athertree\" linkedin=\"https://www.linkedin.com/pulse/activities/athel-tree+0_2gZKxR1fgmnBPiNrKSERZx?trk=nav_responsive_sub_nav_yourupdates\" instagram=\"https://www.instagram.com/atheltree/\" skype=\"https://secure.skype.com/portal/overview\" youtube=\"https://www.youtube.com/channel/UCGuAXld3EDgfjjOv8Eu5YKw\" behance=\"https://www.behance.net/atheltree\"][title]Send Message[/title][contact-form-7 id=\"46\"][/vc_column][vc_column width=\"1/2\"][title]Our Office[/title][gmap zoom=\"14\" markerimage=\"1072\" scrollwheel=\"yes\" color=\"#099aad\" grayscale=\"yes\" lat=\"-37.817314\" long=\"144.955431\" widht=\"100%\" height=\"575\" address=\"Al-Rossais Commercial Center, Olaya Street, Riyadh\" infowindow=\"Athel Company\" apikey=\"AIzaSyAIS-TuOD5hnITbrRCOIkznlU1PLkUMD1A\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][/vc_column][/vc_row]","Contact Us","","publish","closed","closed","","contact-us","","","2016-08-04 16:54:23","2016-08-04 16:54:23","","0","http://demo.themetor.com/bizpro/?page_id=8","0","page","","0"); INSERT INTO `wp_posts` VALUES("2878","1","2017-02-20 12:08:02","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-02-20 12:08:02","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2878","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2879","1","2017-02-20 12:08:02","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-02-20 12:08:02","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2879","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2880","1","2017-02-20 12:08:02","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-02-20 12:08:02","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2880","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2881","1","2017-02-20 12:08:02","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-02-20 12:08:02","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2881","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2882","1","2017-02-20 12:08:02","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-02-20 12:08:02","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2882","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2883","1","2017-02-20 12:08:02","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-02-20 12:08:02","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2883","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2884","1","2017-02-20 12:08:03","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-02-20 12:08:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2884","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2885","1","2017-02-20 12:08:03","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-02-20 12:08:03","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2885","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2887","1","2017-02-20 12:08:35","0000-00-00 00:00:00","","Loading Image","","draft","closed","closed","","of-loading_image","","","2017-02-20 12:08:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2887","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2888","1","2017-02-20 12:08:35","0000-00-00 00:00:00","","Bg Img","","draft","closed","closed","","of-bg_img","","","2017-02-20 12:08:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2888","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2889","1","2017-02-20 12:08:35","0000-00-00 00:00:00","","Header Bg Img","","draft","closed","closed","","of-header_bg_img","","","2017-02-20 12:08:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2889","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2890","1","2017-02-20 12:08:35","0000-00-00 00:00:00","","Logo","","draft","closed","closed","","of-logo","","","2017-02-20 12:08:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2890","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2891","1","2017-02-20 12:08:35","0000-00-00 00:00:00","","Favicon","","draft","closed","closed","","of-favicon","","","2017-02-20 12:08:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2891","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2892","1","2017-02-20 12:08:35","0000-00-00 00:00:00","","Breadcrumbs Bg Img","","draft","closed","closed","","of-breadcrumbs_bg_img","","","2017-02-20 12:08:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2892","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2893","1","2017-02-20 12:08:35","0000-00-00 00:00:00","","Woo Breadcrumbs Bg Img","","draft","closed","closed","","of-woo_breadcrumbs_bg_img","","","2017-02-20 12:08:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2893","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("2894","1","2017-02-20 12:08:35","0000-00-00 00:00:00","","Footer Bg Img","","draft","closed","closed","","of-footer_bg_img","","","2017-02-20 12:08:35","0000-00-00 00:00:00","","0","http://atheltree.com/?post_type=optionsframework&p=2894","0","optionsframework","","0"); INSERT INTO `wp_posts` VALUES("14","1","2016-08-04 16:55:37","2016-08-04 16:55:37","","Portfolio","","publish","closed","closed","","portfolio","","","2016-08-04 16:55:37","2016-08-04 16:55:37","","0","http://demo.themetor.com/bizpro/?page_id=14","0","page","","0"); INSERT INTO `wp_posts` VALUES("583","1","2016-09-23 14:32:33","2016-09-23 14:32:33","","Blog","","publish","closed","closed","","blog","","","2016-09-23 14:32:33","2016-09-23 14:32:33","","0","http://demo.themetor.com/bizpro/?page_id=583","0","page","","0"); INSERT INTO `wp_posts` VALUES("597","1","2016-09-24 09:16:51","2016-09-24 09:16:51","","Blog Medium Image","","publish","closed","closed","","blog-medium-image","","","2016-09-24 09:16:51","2016-09-24 09:16:51","","0","http://demo.themetor.com/bizpro/?page_id=597","0","page","","0"); INSERT INTO `wp_posts` VALUES("599","1","2016-09-24 09:17:06","2016-09-24 09:17:06","","Blog Small Image","","publish","closed","closed","","blog-small-image","","","2016-09-24 09:17:06","2016-09-24 09:17:06","","0","http://demo.themetor.com/bizpro/?page_id=599","0","page","","0"); INSERT INTO `wp_posts` VALUES("601","1","2016-09-24 09:17:25","2016-09-24 09:17:25","","Blog Both Sidebars","","publish","closed","closed","","blog-both-sidebars","","","2016-09-24 09:17:25","2016-09-24 09:17:25","","0","http://demo.themetor.com/bizpro/?page_id=601","0","page","","0"); INSERT INTO `wp_posts` VALUES("604","1","2016-09-24 09:17:55","2016-09-24 09:17:55","","Blog Both Sidebars Right","","publish","closed","closed","","blog-both-sidebars-right","","","2016-09-24 09:17:55","2016-09-24 09:17:55","","0","http://demo.themetor.com/bizpro/?page_id=604","0","page","","0"); INSERT INTO `wp_posts` VALUES("606","1","2016-09-24 09:18:11","2016-09-24 09:18:11","","Blog Both Sidebars Left","","publish","closed","closed","","blog-both-sidebars-left","","","2016-09-24 09:18:11","2016-09-24 09:18:11","","0","http://demo.themetor.com/bizpro/?page_id=606","0","page","","0"); INSERT INTO `wp_posts` VALUES("608","1","2016-09-24 09:18:47","2016-09-24 09:18:47","","Blog 1 Column e/o","","publish","closed","closed","","blog-1-column-eo","","","2016-09-24 09:18:47","2016-09-24 09:18:47","","0","http://demo.themetor.com/bizpro/?page_id=608","0","page","","0"); INSERT INTO `wp_posts` VALUES("610","1","2016-09-24 09:19:11","2016-09-24 09:19:11","","Blog 2 Columns Masonry","","publish","closed","closed","","blog-2-columns-masonry","","","2016-09-24 09:19:11","2016-09-24 09:19:11","","0","http://demo.themetor.com/bizpro/?page_id=610","0","page","","0"); INSERT INTO `wp_posts` VALUES("612","1","2016-09-24 09:19:24","2016-09-24 09:19:24","","Blog 3 Columns Masonry","","publish","closed","closed","","blog-3-columns-masonry","","","2016-09-24 09:19:24","2016-09-24 09:19:24","","0","http://demo.themetor.com/bizpro/?page_id=612","0","page","","0"); INSERT INTO `wp_posts` VALUES("614","1","2016-09-24 09:19:49","2016-09-24 09:19:49","","Blog Full Wide","","publish","closed","closed","","blog-full-wide","","","2016-09-24 09:19:49","2016-09-24 09:19:49","","0","http://demo.themetor.com/bizpro/?page_id=614","0","page","","0"); INSERT INTO `wp_posts` VALUES("643","1","2016-09-25 10:45:20","2016-09-25 10:45:20","","Portfolio 1 Column","","publish","closed","closed","","portfolio-1-column","","","2016-09-25 10:45:20","2016-09-25 10:45:20","","0","http://demo.themetor.com/bizpro/?page_id=643","0","page","","0"); INSERT INTO `wp_posts` VALUES("645","1","2016-09-25 10:45:57","2016-09-25 10:45:57","","Portfolio 2 Columns","","publish","closed","closed","","portfolio-2-columns","","","2016-09-25 10:45:57","2016-09-25 10:45:57","","0","http://demo.themetor.com/bizpro/?page_id=645","0","page","","0"); INSERT INTO `wp_posts` VALUES("647","1","2016-09-25 10:46:15","2016-09-25 10:46:15","","Portfolio 3 Columns","","publish","closed","closed","","portfolio-3-columns","","","2016-09-25 10:46:15","2016-09-25 10:46:15","","0","http://demo.themetor.com/bizpro/?page_id=647","0","page","","0"); INSERT INTO `wp_posts` VALUES("649","1","2016-09-25 10:46:44","2016-09-25 10:46:44","","Portfolio 4 Columns","","publish","closed","closed","","portfolio-4-columns","","","2016-09-25 10:46:44","2016-09-25 10:46:44","","0","http://demo.themetor.com/bizpro/?page_id=649","0","page","","0"); INSERT INTO `wp_posts` VALUES("651","1","2016-09-25 10:47:17","2016-09-25 10:47:17","","Portfolio 2 Columns (Masonry)","","publish","closed","closed","","portfolio-2-columns-masonry","","","2016-09-25 10:47:17","2016-09-25 10:47:17","","0","http://demo.themetor.com/bizpro/?page_id=651","0","page","","0"); INSERT INTO `wp_posts` VALUES("653","1","2016-09-25 10:47:32","2016-09-25 10:47:32","","Portfolio 3 Columns (Masonry)","","publish","closed","closed","","portfolio-3-columns-masonry","","","2016-09-25 10:47:32","2016-09-25 10:47:32","","0","http://demo.themetor.com/bizpro/?page_id=653","0","page","","0"); INSERT INTO `wp_posts` VALUES("655","1","2016-09-25 10:47:53","2016-09-25 10:47:53","","Portfolio 4 Columns (Masonry)","","publish","closed","closed","","portfolio-4-columns-masonry","","","2016-09-25 10:47:53","2016-09-25 10:47:53","","0","http://demo.themetor.com/bizpro/?page_id=655","0","page","","0"); INSERT INTO `wp_posts` VALUES("1807","1","2016-08-04 16:54:31","2016-08-04 16:54:31","[vc_row][vc_column][vc_column_text]\n

Do you have Question?

\n[/vc_column_text][divider style=\"icon\" width=\"60%\" icon=\"question-circle\"][gap height=\"10\"][vc_column_text]\n

Please read questions bellow and if you can not find your answer, please send us your question, we will answer you as soon as possible.

\n[/vc_column_text][gap height=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][title]F.A.Qs[/title][toggle open=\"yes\" title=\"Do you offer website design templates or customized website design?\"]Answer:While website design templates and customized website design can both be effective ways to create a website, the method you choose to use will depend on your online goals and your budget. A simple website with limited functionality requirements can easily be achieved with website design templates, while customized website design is typically necessary for more complex websites. Be specific when expressing your website design needs.[/toggle][toggle title=\"How long until my website design is up and running?\"]Answer: Creating a website design is just like any other business project – a professional Web design company should provide a timeline and stick to it. Along with budget, your individual timing needs will often determine which Web design package choose.[/toggle][toggle title=\"Can my website design support ecommerce?\"]Answer: If you are going to be selling products online – now or in the future – your professional Web design company must be able to support your ecommerce goals. Depending on your business, you may need a simple Pay Pal® button on your home page or a multi-functional ecommerce shopping cart.[/toggle][toggle title=\"Should I build an iOS app or Android app?\"]Answer: When you have a great idea, it can be tempting to shoot out of the gate and build an app for every device that exists – iPad, iPhone, Android, desktop, laptop, the list goes on.[/toggle][gap][/vc_column][vc_column width=\"1/3\"][title]Ask Us[/title][contact-form-7 id=\"1110\"][/vc_column][/vc_row]","FAQ","","publish","closed","closed","","faq","","","2016-08-04 16:54:31","2016-08-04 16:54:31","","0","http://demo.themetor.com/bizpro/?page_id=10","0","page","","0"); INSERT INTO `wp_posts` VALUES("1808","1","2016-08-04 16:54:41","2016-08-04 16:54:41","[vc_row][vc_column][vc_column_text]\n

Strategy

\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][service type=\"vertical\" title=\"STRATEGY\" bg_color=\"#ffffff\" border_color=\"#dddddd\" icon=\"fa fa-cogs\"]Every smart solution begins with a well-thought-out strategy. Our team of consultants and data-driven approach will ensure the success of your web project.[/service][/vc_column][vc_column width=\"1/3\"][service type=\"vertical\" title=\"DELIVERY\" icon_color=\"#099aad\" bg_color=\"#ffffff\" border_color=\"#dddddd\" icon=\"fa fa-shopping-cart\"]combining your continuous feedback,keeps your project on track. test as we build and can incorporate changes to the scope throughout the project life cycle.[/service][gap height=\"80\"][/vc_column][vc_column width=\"1/3\"][service type=\"vertical\" title=\"SUPPORT\" icon_color=\"#099aad\" bg_color=\"#ffffff\" border_color=\"#dddddd\" icon=\"fa fa-users\"]We\'re here when you need us,after your Apps goes live.Our support team help ensure your Apps stays secure and is constantly evolving with the web.[/service][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" parallax=\"content-moving\" parallax_image=\"323\" parallax_speed_bg=\"2.5\" el_class=\"tac para-border\"][vc_column][gap height=\"70\"][vc_column_text]\n

Do you want new modern Website or Web Apps?

\n

Yes, of course! So let\'s Call Athel now

\n[/vc_column_text][button text=\"Call Athel Now!\" text_color=\"#ffffff\" style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#099aad\" icon_color=\"#ffffff\" size=\"medium\" url=\"http://atheltree.com/contact-us/\" icon=\"fa fa-phone\"][gap height=\"100\"][/vc_column][/vc_row][vc_row][vc_column][gap][vc_column_text]\n

Our Services

\n[/vc_column_text][gap height=\"70\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"2271\" img_size=\"full\"][/vc_column][vc_column width=\"1/2\"][gap][title align=\"center\"]Web Applications[/title][divider][vc_column_text]Our creative teams design and develop web Apps based on their existing brand, the vision of the company and giving it the essence of the personal touch about the client’s business. We take the existing stature and offering of your company into consideration so as to create something unique yet familiar. Your web Apps overall look and feel is developed keeping the end results in mind and giving you a design which meets its intended purpose.[/vc_column_text][gap height=\"70\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][gap][title align=\"center\"]Mobile Apps[/title][divider][vc_column_text]We have a team of trained professionals dedicated to the design and development of powerful mobile applications on popular platforms like Android, Windows and iOS.\n
    \n \t
  • Mobile App Strategy
  • \n \t
  • Mobile App Design
  • \n \t
  • Mobile App Development
  • \n \t
  • iOS Mobile App Development
  • \n \t
  • Android Mobile App Development
  • \n \t
  • Mobile App Marketing
  • \n
\nWhen completed, we will make sure that your mobile business application is made available via the app stores of the particular platform.[/vc_column_text][gap height=\"70\"][/vc_column][vc_column width=\"1/2\"][gap height=\"140\"][vc_single_image image=\"2285\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][gap height=\"180\"][vc_single_image image=\"2295\" img_size=\"full\"][/vc_column][vc_column width=\"1/2\"][gap][title align=\"center\"]Web Site Design & Develpment[/title][divider][vc_column_text]Responsive Design prepares websites for the future of modern website design by making them beautiful across multiple devices.\n
    \n \t
  • Our team plans, designs, and develops stunning responsive websites that will increase conversion rates and overall traffic.
  • \n
\n
    \n \t
  • Responsive Website Development
  • \n \t
  • Mobile Development
  • \n \t
  • Content Management System
  • \n \t
  • Sitecore Development
  • \n \t
  • Magento Development
  • \n \t
  • Drupal Development
  • \n \t
  • WebModulite Development
  • \n \t
  • Wordpress Development
  • \n \t
  • Joomla Development
  • \n
\n
    \n \t
  • We make sure that our responsive websites are beautiful across all devices
  • \n \t
  • Our responsive web design makes sure that your business is prepared for the future mobile web.
  • \n
\n[/vc_column_text][gap height=\"70\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][gap][title align=\"center\"]SEO[/title][divider][vc_column_text]\n

Search Engine Optimization

\nDrive traffic to your website by achieving page 1 rankings in search engines for valuable keywords.\n
    \n \t
  • An initial audit that includes a competitive review and keyword research is completed in order to build a project plan that has a clear plan for success.
  • \n \t
  • On-page optimization & internal linking is set up to maximize rankings
  • \n \t
  • Landing page creation and optimization is put in place for each keyword
  • \n \t
  • Monthly link building and content outreach takes place in order to augment ranking growth
  • \n
\n[/vc_column_text][gap height=\"70\"][/vc_column][vc_column width=\"1/2\"][gap height=\"80\"][vc_single_image image=\"2319\" img_size=\"full\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][gap height=\"140\"][vc_single_image image=\"2306\" img_size=\"full\"][/vc_column][vc_column width=\"1/2\"][gap][title align=\"center\"]Creative Design[/title][divider][vc_column_text]Responsive Design prepares websites for the future of modern website design by making them beautiful across multiple devices.\n\nOur team plans, designs, and develops stunning responsive websites that will increase conversion rates and overall traffic\n
    \n \t
  • Website Design
  • \n \t
  • Ecommerce Design
  • \n \t
  • Mobile Design
  • \n \t
  • Logo Design & Branding
  • \n \t
  • Print Design
  • \n \t
  • Video Production
  • \n
\nWe make sure that our responsive websites are beautiful across all devices and  Our responsive web design makes sure that your business is prepared for the future mobile web.\n\n[/vc_column_text][gap height=\"70\"][/vc_column][/vc_row][vc_row][vc_column][title align=\"center\"]How Works?[/title][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][process_box type=\"vertical\" title=\"Free Conslutation\" number_color=\"rgba(9,154,173,0.15)\"]The free initial consultation will help you first and fore mostly to focus in detail what the requirements of your site are and how to fulfil those requirements. It will then also enable you to make a qualified decision about whether We are the right company to help you with your web presence.[/process_box][/vc_column][vc_column width=\"1/4\"][process_box type=\"vertical\" title=\"Research \" box_number=\"2\" number_color=\"rgba(9,154,173,0.35)\"]can give you a real understanding of how best to launch a web project and real advice about everything from ecommerce through to standard presentation sites.[/process_box][/vc_column][vc_column width=\"1/4\"][process_box type=\"vertical\" title=\"Contract & Payment\" box_number=\"3\" number_color=\"rgba(9,154,173,0.68)\"]Our experience assisting Local Government and the public sector with projects large and small has led us to hone well-developed processes and procedures that ensure success.Success begins with a clear vision and detailed scope. It ends with us delivering your project on time and on budget.We can manage all aspects of your project[/process_box][/vc_column][vc_column width=\"1/4\"][process_box type=\"vertical\" title=\"Project Done!\" box_number=\"4\" number_color=\"#099aad\"]Complete and store documentation.[/process_box][/vc_column][/vc_row][vc_row el_class=\"tac\"][vc_column][gap height=\"60\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1475030101400{background-color: #cccccc !important;}\" el_class=\"tar\"][vc_column width=\"2/3\"][vc_column_text]\n

Do you have any question about our services?

\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][button text=\"Free Consultation\" text_color=\"#ffffff\" style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#099aad\" icon_color=\"#f4f4f4\" size=\"large\" url=\"http://atheltree.com/contact-us/\" icon=\"fa fa-phone\"][/vc_column][/vc_row]","Services","","publish","closed","closed","","services","","","2016-08-04 16:54:41","2016-08-04 16:54:41","","0","http://demo.themetor.com/bizpro/?page_id=12","0","page","","0"); INSERT INTO `wp_posts` VALUES("657","1","2016-09-25 10:48:09","2016-09-25 10:48:09","","Portfolio 5 Columns (Masonry)","","publish","closed","closed","","portfolio-5-columns-masonry","","","2016-09-25 10:48:09","2016-09-25 10:48:09","","0","http://demo.themetor.com/bizpro/?page_id=657","0","page","","0"); INSERT INTO `wp_posts` VALUES("659","1","2016-09-25 10:48:30","2016-09-25 10:48:30","","Portfolio 2 Columns + Details","","publish","closed","closed","","portfolio-2-columns-details","","","2016-09-25 10:48:30","2016-09-25 10:48:30","","0","http://demo.themetor.com/bizpro/?page_id=659","0","page","","0"); INSERT INTO `wp_posts` VALUES("719","1","2016-09-25 18:13:33","2016-09-25 18:13:33","","Portfolio 3 Columns (Style2)","","publish","closed","closed","","portfolio-3-columns-style2","","","2016-09-25 18:13:33","2016-09-25 18:13:33","","0","http://demo.themetor.com/bizpro/?page_id=719","0","page","","0"); INSERT INTO `wp_posts` VALUES("721","1","2016-09-25 18:14:03","2016-09-25 18:14:03","","Portfolio 4 Columns (Style2)","","publish","closed","closed","","portfolio-4-columns-style2","","","2016-09-25 18:14:03","2016-09-25 18:14:03","","0","http://demo.themetor.com/bizpro/?page_id=721","0","page","","0"); INSERT INTO `wp_posts` VALUES("859","1","2016-09-26 21:54:49","2016-09-26 21:54:49","[vc_row full_width=\"\" parallax=\"\" parallax_image=\"\"][vc_column width=\"1/2\"][title header=\"h2\" align=\"left\"]Style 1[/title][vc_column_text css_animation=\"\"][accordion] [accordion-item title=\"Drag n Drop Page Builder\" id=\"acc1\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum [/accordion-item] [accordion-item title=\"Ultra Resposive Design\" id=\"acc2\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum [/accordion-item] [accordion-item title=\"7 Awesome Sliders\" id=\"acc3\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum [/accordion-item] [accordion-item title=\"WooCommerce Support\" id=\"acc4\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum [/accordion-item] [accordion-item title=\"WPML Support\" id=\"acc5\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum [/accordion-item] [accordion-item title=\"Advanced Theme Options \" id=\"acc6\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum [/accordion-item] [accordion-item title=\"RTL Support\" id=\"acc7\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum [/accordion-item] [/accordion][/vc_column_text][title header=\"h3\" align=\"left\" icon=\"\" icon_color=\"\"]How to use?[/title][vc_column_text]You can find Style1 of Accordion in our Shortcode Generator > in any Editor like a Text Block\n\n [/vc_column_text][/vc_column][vc_column width=\"1/2\"][title header=\"h2\" align=\"left\"]Style 2[/title][vc_accordion collapsible=\"\" disable_keyboard=\"\"][vc_accordion_tab title=\"Drag n Drop Page Builder\"][vc_column_text css_animation=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Ultra Resposive Design\"][vc_column_text css_animation=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"7 Awesome Sliders\"][vc_column_text css_animation=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"WooCommerce Support\"][vc_column_text css_animation=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"WPML Support\"][vc_column_text css_animation=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"Advanced Theme Options\"][vc_column_text css_animation=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"RTL Support\"][vc_column_text css_animation=\"\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/vc_column_text][/vc_accordion_tab][/vc_accordion][title header=\"h3\" align=\"left\" icon=\"\" icon_color=\"\"]How to use?[/title][vc_column_text]You can find Style2 of Accordion in Visual Composr elements\n\n [/vc_column_text][/vc_column][/vc_row]","Accordion","","publish","closed","closed","","accordion","","","2016-09-26 21:54:49","2016-09-26 21:54:49","","0","http://demo.themetor.com/bizpro/?page_id=859","0","page","","0"); INSERT INTO `wp_posts` VALUES("861","1","2016-09-26 22:02:50","2016-09-26 22:02:50","[vc_row][vc_column][vc_column_text]\n

Web Apps

\n[/vc_column_text][gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][actionbox style=\"style3\" title=\"Responsive WordPress Theme\" sub_text=\"Phasellus vehicula justo eget diam\" image=\"519\" button_text=\"More Info\" button_text_color=\"#ffffff\" button_style=\"tbutton5\" button_default_color=\"customcolor\" button_color=\"#099aad\" url=\"#\" target=\"_blank\"][/vc_column][vc_column width=\"1/3\"][actionbox style=\"style3\" title=\"Responsive WordPress Theme\" sub_text=\"Phasellus vehicula justo eget diam\" image=\"517\" button_text=\"But It Now!\" button_text_color=\"#ffffff\" button_style=\"tbutton5\" button_default_color=\"customcolor\" button_color=\"#099aad\" url=\"#\" target=\"_blank\"][/vc_column][vc_column width=\"1/3\"][actionbox style=\"style3\" title=\"Responsive WordPress Theme\" sub_text=\"Phasellus vehicula justo eget diam\" image=\"516\" button_text=\"More Info\" button_text_color=\"#ffffff\" button_style=\"tbutton5\" button_default_color=\"customcolor\" button_color=\"#099aad\" url=\"#\" target=\"_blank\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][vc_column_text]\n

Mobile Apps

\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][actionbox corners=\"action_rad_50\" style=\"style3\" title=\"WPML SUPPORT\" sub_text=\"Phasellus vehicula justo eget\" button_text=\"Learn More\" button_default_color=\"customcolor\" button_color=\"#4486bf\" url=\"http://www.gol.com\" target=\"_blank\"][/vc_column][vc_column width=\"1/4\"][actionbox corners=\"action_rad_50\" style=\"style3\" title=\"Customizable\" sub_text=\"Phasellus vehicula justo eget\" icon_color=\"#099aad\" button_text=\"More Info\" button_default_color=\"customcolor\" button_color=\"#000000\" url=\"http://www.gol.com\" target=\"_blank\" icon=\"magic\"][/vc_column][vc_column width=\"1/4\"][actionbox corners=\"action_rad_50\" style=\"style3\" title=\"SEO OPTIMIZED\" sub_text=\"Phasellus vehicula justo eget\" button_text=\"More Info\" button_default_color=\"customcolor\" button_color=\"#4c89bf\" url=\"http://www.gol.com\" target=\"_blank\"][/vc_column][vc_column width=\"1/4\"][actionbox corners=\"action_rad_50\" style=\"style3\" title=\"BEST THEME\" sub_text=\"Phasellus vehicula justo eget\" icon_color=\"#099aad\" button_text=\"Like it!\" button_default_color=\"customcolor\" button_color=\"#000000\" url=\"http://www.gol.com\" target=\"_blank\" icon=\"thumbs-up\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column][actionbox title=\"Do you want to get a live demo ?\" image=\"1753\" button_text=\"Contact us\" button_text_color=\"#4c89bf\" button_default_color=\"customcolor\" button_color=\"#ffffff\" button_size=\"large\" url=\"http://atheltree.com/contact-us/\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][actionbox corners=\"action_rad_30\" style=\"style3\" title=\"Responsive WordPress Theme\" sub_text=\"Phasellus vehicula justo eget diam\" image=\"1027\" button_text=\"More Info\" button_text_color=\"#f9f9f9\" button_style=\"tbutton6\" button_default_color=\"customcolor\" button_color=\"#4a88bf\" url=\"http://www.gol.com\" target=\"_blank\"][/vc_column][vc_column width=\"1/4\"][actionbox type=\"dark\" corners=\"action_rad_30\" style=\"style3\" title=\"Custom Image instead Icon\" sub_text=\"Phasellus vehicula justo eget diam\" image=\"1026\" button_text=\"More Info\" button_text_color=\"#000000\" button_style=\"tbutton6\" button_default_color=\"customcolor\" button_color=\"#ffffff\" url=\"http://www.gol.com\" target=\"_blank\"][/vc_column][vc_column width=\"1/4\"][actionbox corners=\"action_rad_30\" style=\"style3\" title=\"Responsive WordPress Theme\" sub_text=\"Phasellus vehicula justo eget diam\" image=\"1027\" button_text=\"More Info\" button_text_color=\"#f9f9f9\" button_style=\"tbutton6\" button_default_color=\"customcolor\" button_color=\"#4a88bf\" url=\"http://www.gol.com\" target=\"_blank\"][/vc_column][vc_column width=\"1/4\"][actionbox type=\"dark\" corners=\"action_rad_30\" style=\"style3\" title=\"Custom Image instead Icon\" sub_text=\"Phasellus vehicula justo eget diam\" image=\"1026\" button_text=\"More Info\" button_text_color=\"#000000\" button_style=\"tbutton6\" button_default_color=\"customcolor\" button_color=\"#ffffff\" url=\"http://www.gol.com\" target=\"_blank\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][/vc_column][/vc_row]","Our Products","","publish","closed","closed","","products","","","2016-09-26 22:02:50","2016-09-26 22:02:50","","0","http://demo.themetor.com/bizpro/?page_id=861","0","page","","0"); INSERT INTO `wp_posts` VALUES("863","1","2016-09-26 22:03:12","2016-09-26 22:03:12","[vc_row][vc_column width=\"1/3\"][animation animation=\"slideInUp\"][title header=\"h3\" align=\"center\"]SlideInUp[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"slideInDown\"][title header=\"h3\" align=\"center\"]SlideInDown[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"slideInRight\"][title header=\"h3\" align=\"center\"]SlideInRight[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][animation animation=\"slideInLeft\"][title header=\"h3\" align=\"center\"]SlideInLeft[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"zoomIn\"][title header=\"h3\" align=\"center\"]ZoomIn[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"zoomInRight\"][title header=\"h3\" align=\"center\"]ZoomInRight[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][animation animation=\"zoomInLeft\"][title header=\"h3\" align=\"center\"]ZoomInLeft[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"zoomInDown\"][title header=\"h3\" align=\"center\"]ZoomInDown[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"zoomInUp\"][title header=\"h3\" align=\"center\"]ZoomInUp[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][animation][title header=\"h3\" align=\"center\"]Bounce[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"flash\"][title header=\"h3\" align=\"center\"]Flash[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"pulse\"][title header=\"h3\" align=\"center\"]Pulse[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][animation animation=\"rubberBand\"][title header=\"h3\" align=\"center\"]Rubber Band[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"shake\"][title header=\"h3\" align=\"center\"]Shake[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"swing\"][title header=\"h3\" align=\"center\"]Swing[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][animation animation=\"tada\"][title header=\"h3\" align=\"center\"]Tada[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"wobble\"][title header=\"h3\" align=\"center\"]Wobble[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"jello\"][title header=\"h3\" align=\"center\"]Jello[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][animation animation=\"bounceIn\"][title header=\"h3\" align=\"center\"]BounceIn[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"bounceInDown\"][title header=\"h3\" align=\"center\"]BounceInDown[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"bounceInLeft\"][title header=\"h3\" align=\"center\"]BounceInLeft[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][animation animation=\"bounceInRight\"][title header=\"h3\" align=\"center\"]BounceInRight[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"bounceInUp\"][title header=\"h3\" align=\"center\"]BounceInUp[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"fadeIn\"][title header=\"h3\" align=\"center\"]FadeIn[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][animation animation=\"fadeInDown\"][title header=\"h3\" align=\"center\"]FadeInDown[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"fadeInDownBig\"][title header=\"h3\" align=\"center\"]FadeInDownBig[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"fadeInLeftBig\"][title header=\"h3\" align=\"center\"]FadeInLeftBig[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][animation animation=\"fadeInRight\"][title header=\"h3\" align=\"center\"]FadeInRight[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"fadeInRightBig\"][title header=\"h3\" align=\"center\"]FadeInRightBig[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"fadeInUp\"][title header=\"h3\" align=\"center\"]FadeInUp[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][animation animation=\"fadeOut\"][title header=\"h3\" align=\"center\"]FadeOut[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"fadeOutDown\"][title header=\"h3\" align=\"center\"]FadeOutDown[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"fadeOutUp\"][title header=\"h3\" align=\"center\"]FadeOutUp[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][animation animation=\"flip\"][title header=\"h3\" align=\"center\"]Flip[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"flipInX\"][title header=\"h3\" align=\"center\"]FlipInX[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"flipInY\"][title header=\"h3\" align=\"center\"]FlipInY[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][animation animation=\"lightSpeedIn\"][title header=\"h3\" align=\"center\"]LightSpeedIn[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"rotateIn\"][title header=\"h3\" align=\"center\"]RotateIn[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"rotateInDownRight\"][title header=\"h3\" align=\"center\"]RotateInDownRight[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][animation animation=\"rotateInDownLeft\"][title header=\"h3\" align=\"center\"]RotateInDownLeft[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"rotateInUpLeft\"][title header=\"h3\" align=\"center\"]RotateInUpLeft[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"rotateInUpRight\"][title header=\"h3\" align=\"center\"]RotateInUpRight[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][animation animation=\"rollIn\"][title header=\"h3\" align=\"center\"]RollIn[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"hinge\"][title header=\"h3\" align=\"center\"]Hing[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][vc_column width=\"1/3\"][animation animation=\"rollOut\"][title header=\"h3\" align=\"center\"]RollOut[/title][vc_single_image image=\"525\" img_size=\"full\" alignment=\"\"][/animation][/vc_column][/vc_row][vc_row][vc_column][wrap image=\"93\" parallax=\"yes\"][gap height=\"80\"][vc_single_image image=\"2183\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1434707329881{margin-bottom: 0px !important;}\"][vc_column_text]\n

You can use animation in custom Duration, Delay and also add Loop to infinite animation

\n[/vc_column_text][gap][/wrap][gap][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][title header=\"h3\" align=\"center\"]Spin[/title][animation animation=\"spin\" duration=\"2.5\" loop=\"yes\"][vc_icon icon_fontawesome=\"fa fa-spinner\" color=\"black\" background_style=\"rounded\" align=\"center\"][/animation][/vc_column][vc_column width=\"1/3\"][title header=\"h3\" align=\"center\"]Pulse[/title][animation animation=\"pulse\" duration=\"2\" loop=\"yes\"][vc_icon icon_fontawesome=\"fa fa-heart\" color=\"custom\" size=\"lg\" align=\"center\" custom_color=\"#cc0000\"][/animation][/vc_column][vc_column width=\"1/3\"][title header=\"h3\" align=\"center\"]Tada[/title][animation animation=\"tada\" loop=\"yes\"][vc_icon icon_fontawesome=\"fa fa-bell-o\" color=\"custom\" size=\"lg\" align=\"center\" custom_color=\"#ad7c27\"][/animation][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][title header=\"h3\" align=\"center\"]Swing[/title][animation animation=\"flash\" duration=\"2.5\" loop=\"yes\"][vc_icon icon_fontawesome=\"fa fa-exclamation-triangle\" color=\"custom\" size=\"lg\" align=\"center\" custom_color=\"#ddbe33\"][/animation][/vc_column][vc_column width=\"1/3\"][title header=\"h3\" align=\"center\"]Flash[/title][animation animation=\"swing\" duration=\"1.5\" loop=\"yes\"][vc_icon icon_fontawesome=\"fa fa-anchor\" color=\"custom\" size=\"lg\" align=\"center\" custom_color=\"#757575\"][/animation][/vc_column][vc_column width=\"1/3\"][title header=\"h3\" align=\"center\"]Jello[/title][animation animation=\"jello\" loop=\"yes\"][vc_icon icon_fontawesome=\"fa fa-bolt\" color=\"custom\" size=\"lg\" align=\"center\" custom_color=\"#f29100\"][/animation][/vc_column][/vc_row][vc_row][vc_column][gap][title align=\"center\"]Animation with Dely[/title][gap][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][animation animation=\"fadeIn\"][vc_column_text]\n

1

\n[/vc_column_text][/animation][/vc_column][vc_column width=\"1/6\"][animation animation=\"fadeIn\" delay=\"1000\"][vc_column_text]\n

2

\n[/vc_column_text][/animation][/vc_column][vc_column width=\"1/6\"][animation animation=\"fadeIn\" delay=\"2000\"][vc_column_text]\n

3

\n[/vc_column_text][/animation][/vc_column][vc_column width=\"1/6\"][animation animation=\"fadeIn\" delay=\"3000\"][vc_column_text]\n

4

\n[/vc_column_text][/animation][/vc_column][vc_column width=\"1/6\"][animation animation=\"fadeIn\" delay=\"4000\"][vc_column_text]\n

5

\n[/vc_column_text][/animation][/vc_column][vc_column width=\"1/6\"][animation animation=\"fadeIn\" delay=\"5000\"][vc_column_text]\n

6

\n[/vc_column_text][/animation][/vc_column][/vc_row][vc_row][vc_column][gap][/vc_column][/vc_row]","Animation","","publish","closed","closed","","animation","","","2016-09-26 22:03:12","2016-09-26 22:03:12","","0","http://demo.themetor.com/bizpro/?page_id=863","0","page","","0"); INSERT INTO `wp_posts` VALUES("865","1","2016-09-26 22:04:00","2016-09-26 22:04:00","[vc_row][vc_column][title]Round (Outlined)[/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][button text_color=\"#444444\" button_default_color=\"customcolor\" button_custom_color=\"#666666\" icon_color=\"#dd3333\" icon=\"fa fa-heart\"][/vc_column][vc_column width=\"1/4\"][button text_color=\"#680000\" button_default_color=\"customcolor\" button_custom_color=\"#cc0000\" icon_color=\"#32932d\" size=\"medium\" icon=\"fa fa-download\"][/vc_column][vc_column width=\"1/4\"][button text=\"Without Icon\" text_color=\"#8c8c8c\" size=\"large\" icon=\"globe\"][/vc_column][vc_column width=\"1/4\"][button text=\"xLarge Button\" icon_color=\"#4f9e00\" size=\"xlarge\" icon=\"leaf\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"100\"][title]Rounded (Outlined)[/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][button style=\"tbutton1\" icon=\"heart\"][/vc_column][vc_column width=\"1/4\"][button style=\"tbutton1\" button_default_color=\"customcolor\" button_custom_color=\"#757575\" icon_color=\"#c9c9c9\" size=\"medium\" icon=\"location-arrow\"][/vc_column][vc_column width=\"1/4\"][button text=\"Your Text\" style=\"tbutton1\" button_default_color=\"customcolor\" button_custom_color=\"#dd9933\" size=\"large\"][/vc_column][vc_column width=\"1/4\"][button style=\"tbutton1\" button_default_color=\"customcolor\" button_custom_color=\"#1e73be\" icon_color=\"#95c2d6\" size=\"xlarge\" icon=\"cloud\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"100\"][title]Square (Outlined)[/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][button style=\"tbutton2\" button_default_color=\"customcolor\" button_custom_color=\"#777777\" icon_color=\"#dd3333\" icon=\"pie-chart\"][/vc_column][vc_column width=\"1/4\"][button style=\"tbutton2\" icon_color=\"#2f8700\" size=\"medium\" icon=\"home\"][/vc_column][vc_column width=\"1/4\"][button style=\"tbutton2\" button_default_color=\"customcolor\" button_custom_color=\"#8224e3\" size=\"large\"][/vc_column][vc_column width=\"1/4\"][button style=\"tbutton2\" button_default_color=\"customcolor\" button_custom_color=\"#dbdbdb\" icon_color=\"#ddbf8d\" size=\"xlarge\" icon=\"usd\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"100\"][title]Oval (Outlined)[/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][button style=\"tbutton4\" button_default_color=\"customcolor\" button_custom_color=\"#27aaa8\" icon_color=\"#abdbca\" icon=\"heart\"][/vc_column][vc_column width=\"1/4\"][button style=\"tbutton4\" button_default_color=\"customcolor\" button_custom_color=\"#999999\" icon_color=\"#e2e2e2\" size=\"medium\" icon=\"futbol-o\"][/vc_column][vc_column width=\"1/4\"][button style=\"tbutton4\" size=\"large\"][/vc_column][vc_column width=\"1/4\"][button style=\"tbutton4\" button_default_color=\"customcolor\" button_custom_color=\"#4f4f4f\" icon_color=\"#ef9f00\" size=\"xlarge\" icon=\"flash\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"100\"][title]Round (Solid Color)[/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][button text_color=\"#000000\" style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#dd3333\" icon_color=\"#000000\" icon=\"user\"][/vc_column][vc_column width=\"1/4\"][button text_color=\"#ffffff\" style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#8224e3\" icon_color=\"rgba(255,255,255,0.46)\" size=\"medium\" icon=\"heart\"][/vc_column][vc_column width=\"1/4\"][button text=\"$5,00\" text_color=\"#ffffff\" style=\"tbutton5\" icon_color=\"#08cfdd\" size=\"large\" icon=\"tag\"][/vc_column][vc_column width=\"1/4\"][button text=\"Rss Feeds\" text_color=\"#ffffff\" style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#f7a427\" icon_color=\"#ffffff\" size=\"xlarge\" icon=\"rss\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"100\"][title]Rounded (Solid Color)[/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][button style=\"tbutton6\" button_default_color=\"customcolor\" button_custom_color=\"#a0a0a0\" icon=\"heart\"][/vc_column][vc_column width=\"1/4\"][button text_color=\"#000000\" style=\"tbutton6\" button_default_color=\"customcolor\" button_custom_color=\"#20c0cc\" icon_color=\"#ffffff\" size=\"medium\" icon=\"shopping-cart\"][/vc_column][vc_column width=\"1/4\"][button text_color=\"#ffffff\" style=\"tbutton6\" icon_color=\"#c1e886\" size=\"large\" icon=\"bars\"][/vc_column][vc_column width=\"1/4\"][button text_color=\"#6b6b6b\" style=\"tbutton6\" button_default_color=\"customcolor\" button_custom_color=\"#e2e2e2\" icon_color=\"#dd3333\" size=\"xlarge\" icon=\"heart\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"100\"][title]Square (Solid Color)[/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][button text=\"Follow Us\" text_color=\"#ffffff\" style=\"tbutton7\" button_default_color=\"customcolor\" button_custom_color=\"#00abdc\" icon_color=\"#ffffff\" icon=\"twitter\"][/vc_column][vc_column width=\"1/4\"][button style=\"tbutton7\" button_default_color=\"customcolor\" button_custom_color=\"#e8e8e8\" icon_color=\"#8224e3\" size=\"medium\" icon=\"refresh\"][/vc_column][vc_column width=\"1/4\"][button text_color=\"#bcbcbc\" style=\"tbutton7\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" icon_color=\"#757575\" size=\"large\" icon=\"gears\"][/vc_column][vc_column width=\"1/4\"][button text=\"Like Us\" text_color=\"#ffffff\" style=\"tbutton7\" button_default_color=\"customcolor\" button_custom_color=\"#325c94\" icon_color=\"#ffffff\" size=\"xlarge\" icon=\"facebook-square\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"100\"][title]Oval (Solid Color)[/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][button text_color=\"#6b6b6b\" style=\"tbutton8\" button_default_color=\"customcolor\" button_custom_color=\"#e2e2e2\" icon_color=\"#dd3333\" icon=\"heart\"][/vc_column][vc_column width=\"1/4\"][button text_color=\"#ffffff\" style=\"tbutton8\" button_default_color=\"customcolor\" button_custom_color=\"#099aad\" icon_color=\"#000000\" size=\"medium\" icon=\"check\"][/vc_column][vc_column width=\"1/4\"][button text_color=\"#ffffff\" style=\"tbutton8\" button_default_color=\"customcolor\" button_custom_color=\"#dd0000\" size=\"large\"][/vc_column][vc_column width=\"1/4\"][button text_color=\"#ffffff\" style=\"tbutton8\" button_default_color=\"customcolor\" button_custom_color=\"#dd8500\" icon_color=\"#eeee22\" size=\"xlarge\" icon=\"caret-left\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"100\"][/vc_column][/vc_row][vc_row][vc_column][title]Visual Composer Buttons[/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_btn style=\"classic\" color=\"vista-blue\" size=\"xs\"][/vc_column][vc_column width=\"1/4\"][vc_btn style=\"3d\" shape=\"round\" color=\"green\"][/vc_column][vc_column width=\"1/4\"][vc_btn style=\"3d\" color=\"sky\" size=\"xs\"][/vc_column][vc_column width=\"1/4\"][vc_btn title=\"custom button\" style=\"custom\" custom_background=\"#e8e8e8\" custom_text=\"#515151\" shape=\"square\" size=\"lg\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"100\"][/vc_column][/vc_row]","Button","","publish","closed","closed","","button","","","2016-09-26 22:04:00","2016-09-26 22:04:00","","0","http://demo.themetor.com/bizpro/?page_id=865","0","page","","0"); INSERT INTO `wp_posts` VALUES("867","1","2016-09-26 22:05:00","2016-09-26 22:05:00","[vc_row][vc_column][clients columns=\"6\" title=\"6 Columns\"][gap height=\"100\"][clients columns=\"5\" title=\"5 Columns + Grayscale Effect\" nav=\"titlebar\" greyscale=\"true\"][gap height=\"100\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][gap height=\"100\"][/vc_column][vc_column width=\"2/3\"][clients columns=\"4\" title=\"4 Columns Clients\" nav=\"off\"][gap height=\"100\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][clients columns=\"3\" title=\"Only Sponsors\" category=\"sponsors\"][gap height=\"100\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]","Clients Carousel","","publish","closed","closed","","clients-carousel","","","2016-09-26 22:05:00","2016-09-26 22:05:00","","0","http://demo.themetor.com/bizpro/?page_id=867","0","page","","0"); INSERT INTO `wp_posts` VALUES("869","1","2016-09-26 22:06:41","2016-09-26 22:06:41","[vc_row][vc_column width=\"1/2\"][title header=\"h2\"]Get in Touch with us[/title][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum at, laoreet mattis, massa. Sed eleifend nonummy diam. Praesent mauris ante, elementum et, bibendum at, posuere sit amet, nibh. Duis tincidunt lectus quis dui viverra vestibulum. Suspendisse vulputate aliquam dui. Nulla elementum dui ut augue. Aliquam vehicula mi at mauris. Maecenas placerat, nisl at consequat rhoncus, sem nunc gravida justo, quis eleifend arcu velit quis lacus. Morbi magna magna, tincidunt a, mattis non, imperdiet vitae, tellus. Sed odio est, auctor ac, sollicitudin in, consequat vitae, orci. Fusce id felis. Vivamus sollicitudin metus eget eros.[/vc_column_text][social border=\"yes\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" rss=\"#\" linkedin=\"#\"][/vc_column][vc_column width=\"1/2\"][title header=\"h2\"]Send Message[/title][contact-form-7 id=\"4\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\n

Our Office

\n

You can find our office location on the map

\n[/vc_column_text][divider style=\"icon\" icon=\"map-marker\" width=\"50%\" margin_bottom=\"45px\"][gmap zoom=\"14\" markerimage=\"2472\" color=\"#81d742\" grayscale=\"yes\" lat=\"-37.817314\" long=\"144.955431\" widht=\"100%\" height=\"350\" address=\"121 King St, Melbourne VIC 3000, Australia\" infowindow=\"Your text goes here!\"][gap][/vc_column][/vc_row]","Contact Us 2","","publish","closed","closed","","contact-us-2","","","2016-09-26 22:06:41","2016-09-26 22:06:41","","0","http://demo.themetor.com/bizpro/?page_id=869","0","page","","0"); INSERT INTO `wp_posts` VALUES("872","1","2016-09-26 22:06:56","2016-09-26 22:06:56","[vc_row][vc_column][title align=\"center\"]xLarge Countdown Timer[/title][divider][countdown date=\"29 December 2017 23:59:59\" size=\"xlarge\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][title align=\"center\"]Large Countdown[/title][divider][countdown date=\"15 July 2017 10:00:00\" size=\"large\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][title header=\"h3\" align=\"center\"]Medium Countdown in Left[/title][divider][countdown date=\"25 December 2017 16:44:59\" size=\"medium\" align=\"left\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][title header=\"h3\" align=\"center\"]Small | Align Right[/title][divider][countdown date=\"1 December 2017 19:25:00\" align=\"right\"][gap height=\"100\"][/vc_column][/vc_row]","Countdown Timer","","publish","closed","closed","","countdown-timer","","","2016-09-26 22:06:56","2016-09-26 22:06:56","","0","http://demo.themetor.com/bizpro/?page_id=872","0","page","","0"); INSERT INTO `wp_posts` VALUES("874","1","2016-09-26 22:07:21","2016-09-26 22:07:21","[vc_row][vc_column][vc_column_text]\n

This page has custom sidebar, you can add unlimited sidebars and assign them to each page with right and left sidebar template.

\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum at, laoreet mattis, massa. Sed eleifend nonummy diam. Praesent mauris ante, elementum et, bibendum at, posuere sit amet, nibh. Duis tincidunt lectus quis dui viverra vestibulum. Suspendisse vulputate aliquam dui. Nulla elementum dui ut augue. Aliquam vehicula mi at mauris. Maecenas placerat, nisl at consequat rhoncus, sem nunc gravida justo, quis eleifend arcu velit quis lacus. Morbi magna magna, tincidunt a, mattis non, imperdiet vitae, tellus. Sed odio est, auctor ac, sollicitudin in, consequat vitae, orci. Fusce id felis. Vivamus sollicitudin metus eget eros.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In posuere felis nec tortor. Pellentesque faucibus. Ut accumsan ultricies elit. Maecenas at justo id velit placerat molestie. Donec dictum lectus non odio. Cras a ante vitae enim iaculis aliquam. Mauris nunc quam, venenatis nec, euismod sit amet, egestas placerat, est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras id elit. Integer quis urna. Ut ante enim, dapibus malesuada, fringilla eu, condimentum quis, tellus. Aenean porttitor eros vel dolor. Donec convallis pede venenatis nibh. Duis quam. Nam eget lacus. Aliquam erat volutpat. Quisque dignissim congue leo.[/vc_column_text][/vc_column][/vc_row]","Custom Sidebar Left","","publish","closed","closed","","custom-sidebar-left","","","2016-09-26 22:07:21","2016-09-26 22:07:21","","0","http://demo.themetor.com/bizpro/?page_id=874","0","page","","0"); INSERT INTO `wp_posts` VALUES("876","1","2016-09-26 22:07:45","2016-09-26 22:07:45","[vc_row][vc_column][vc_column_text]\n

This page has custom sidebar, you can add unlimited sidebars and assign them to each page with right and left sidebar template.

\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum at, laoreet mattis, massa. Sed eleifend nonummy diam. Praesent mauris ante, elementum et, bibendum at, posuere sit amet, nibh. Duis tincidunt lectus quis dui viverra vestibulum. Suspendisse vulputate aliquam dui. Nulla elementum dui ut augue. Aliquam vehicula mi at mauris. Maecenas placerat, nisl at consequat rhoncus, sem nunc gravida justo, quis eleifend arcu velit quis lacus. Morbi magna magna, tincidunt a, mattis non, imperdiet vitae, tellus. Sed odio est, auctor ac, sollicitudin in, consequat vitae, orci. Fusce id felis. Vivamus sollicitudin metus eget eros.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In posuere felis nec tortor. Pellentesque faucibus. Ut accumsan ultricies elit. Maecenas at justo id velit placerat molestie. Donec dictum lectus non odio. Cras a ante vitae enim iaculis aliquam. Mauris nunc quam, venenatis nec, euismod sit amet, egestas placerat, est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras id elit. Integer quis urna. Ut ante enim, dapibus malesuada, fringilla eu, condimentum quis, tellus. Aenean porttitor eros vel dolor. Donec convallis pede venenatis nibh. Duis quam. Nam eget lacus. Aliquam erat volutpat. Quisque dignissim congue leo.[/vc_column_text][/vc_column][/vc_row]","Custom Sidebar Right","","publish","closed","closed","","custom-sidebar-right","","","2016-09-26 22:07:45","2016-09-26 22:07:45","","0","http://demo.themetor.com/bizpro/?page_id=876","0","page","","0"); INSERT INTO `wp_posts` VALUES("879","1","2016-09-26 22:08:44","2016-09-26 22:08:44","[vc_row][vc_column][vc_column_text]\n

You can use all 700+ Google Fonts and control the Color, Size and Margin

\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][gfont font=\"Codystar\" size=\"50px\" color=\"#666666\" margin=\"30px 0\"]Grumpy wizards make toxic brew for the evil Queen and Jack.[/gfont][gfont font=\"Prosto One\" size=\"27px\" color=\"#92c419\" margin=\"40px 0\"]Grumpy wizards make toxic brew for the evil Queen and Jack.[/gfont][gfont font=\"Arizonia\" size=\"42px\" color=\"#3387cf\" margin=\"40px 0\"]Grumpy wizards make toxic brew for the evil Queen and Jack.[/gfont][gfont font=\"Sacramento\" size=\"50px\" color=\"#333333\" margin=\"40px 0\"]Grumpy wizards make toxic brew for the evil Queen and Jack.[/gfont][gfont font=\"Gloria Hallelujah\" size=\"31px\" color=\"#cc0000\" margin=\"40px 0\"]Grumpy wizards make toxic brew for the evil Queen and Jack.[/gfont][/vc_column][/vc_row][vc_row][vc_column][gap][/vc_column][/vc_row]","Google Fonts","","publish","closed","closed","","google-fonts","","","2016-09-26 22:08:44","2016-09-26 22:08:44","","0","http://demo.themetor.com/bizpro/?page_id=879","0","page","","0"); INSERT INTO `wp_posts` VALUES("881","1","2016-09-26 22:08:59","2016-09-26 22:08:59","[vc_row][vc_column][title align=\"center\"]Simple Map[/title][gap height=\"20\"][gmap zoom=\"14\" markerimage=\"1072\" lat=\"0\" long=\"0\" address=\"New York\" infowindow=\"Your Information here!\" apikey=\"AIzaSyAIS-TuOD5hnITbrRCOIkznlU1PLkUMD1A\"][gap][title align=\"center\"]Grayscale Map[/title][gap height=\"20\"][vc_row_inner][vc_column_inner width=\"1/2\"][gmap zoom=\"14\" markerimage=\"1072\" color=\"#099aad\" grayscale=\"yes\" lat=\"0\" long=\"0\" address=\"New York\" infowindow=\"Your Information here!\" apikey=\"AIzaSyAIS-TuOD5hnITbrRCOIkznlU1PLkUMD1A\"][/vc_column_inner][vc_column_inner width=\"1/2\"][gmap zoom=\"14\" markerimage=\"1072\" grayscale=\"yes\" lat=\"0\" long=\"0\" address=\"New York\" infowindow=\"Your Information here!\" apikey=\"AIzaSyAIS-TuOD5hnITbrRCOIkznlU1PLkUMD1A\"][/vc_column_inner][/vc_row_inner][gap][title align=\"center\"]Custom Color Map[/title][gap height=\"20\"][vc_row_inner][vc_column_inner width=\"1/3\"][gmap zoom=\"14\" markerimage=\"1072\" color=\"#099aad\" lat=\"0\" long=\"0\" address=\"New York\" infowindow=\"Your Information here!\" apikey=\"AIzaSyAIS-TuOD5hnITbrRCOIkznlU1PLkUMD1A\"][/vc_column_inner][vc_column_inner width=\"1/3\"][gmap zoom=\"14\" markerimage=\"1072\" color=\"#81d742\" lat=\"0\" long=\"0\" address=\"New York\" infowindow=\"Your Information here!\" apikey=\"AIzaSyAIS-TuOD5hnITbrRCOIkznlU1PLkUMD1A\"][/vc_column_inner][vc_column_inner width=\"1/3\"][gmap zoom=\"14\" markerimage=\"1072\" color=\"#ff0000\" lat=\"0\" long=\"0\" address=\"New York\" infowindow=\"Your Information here!\" apikey=\"AIzaSyAIS-TuOD5hnITbrRCOIkznlU1PLkUMD1A\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][/vc_column][/vc_row]","Google Map","","publish","closed","closed","","google-map","","","2016-09-26 22:08:59","2016-09-26 22:08:59","","0","http://demo.themetor.com/bizpro/?page_id=881","0","page","","0"); INSERT INTO `wp_posts` VALUES("883","1","2016-09-26 22:09:16","2016-09-26 22:09:16","[vc_row][vc_column][title align=\"center\"]Our Members[/title][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][member name=\"Ahmed Ramadan\" role=\"Team Leader\" image=\"2400\"]Our goal is to achieve customer satisfaction .[/member][/vc_column][vc_column width=\"1/6\"][member name=\"Gehad Abd-Elghani\" role=\"Marketing Manager\" image=\"2404\"]\n\n \n\nWe are looking to have your project carefully .[/member][/vc_column][vc_column width=\"1/3\"][member name=\"Our Professional Team\" role=\"Our Team\" image=\"2435\" facebook=\"https://www.facebook.com/Athel-Tree-1706161316378751/\" twitter=\"https://twitter.com/athel_tree\" linkedin=\"https://www.linkedin.com/pulse/activities/athel-tree+0_2gZKxR1fgmnBPiNrKSERZx?trk=nav_responsive_sub_nav_yourupdates\" flickr=\"https://www.flickr.com/\" instagram=\"https://www.instagram.com/atheltree/\" email=\"support@atheltree.com\" tel=\" + (966) 599040013\"]\n\n \n\nWe are not the only ones, but we are the best .[/member][/vc_column][vc_column width=\"1/6\"][member name=\"Mohamed Elsheshtawy\" role=\"Executive Manager\" image=\"2418\"]\n\n \n\n \n\nYour dream will be reality with Athel Team .[/member][/vc_column][vc_column width=\"1/6\"][member name=\"Mohamed Soliman\" role=\"SEO Director\" image=\"2410\"]We will do our best to be at the forefront .[/member][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][/vc_column][/vc_row][vc_row][vc_column][title align=\"center\"]Our Partners[/title][gap height=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][member name=\"Python\" image=\"2447\"][/member][/vc_column][vc_column width=\"1/4\"][member name=\"MicroSoft\" image=\"2441\"][/member][/vc_column][vc_column width=\"1/4\"][member name=\"SAP\" image=\"2451\"][/member][/vc_column][vc_column width=\"1/4\"][member name=\"Oracle\" image=\"2444\"][/member][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"20\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"100\"][/vc_column][/vc_row]","Members","","publish","closed","closed","","members","","","2016-09-26 22:09:16","2016-09-26 22:09:16","","0","http://demo.themetor.com/bizpro/?page_id=883","0","page","","0"); INSERT INTO `wp_posts` VALUES("885","1","2016-09-26 22:09:32","2016-09-26 22:09:32","[vc_row][vc_column width=\"2/3\"][message type=\"info\" close_button=\"1\"][message icon=\"1\" close_button=\"1\" message=\"Your message here2!\"][message type=\"warning\" icon=\"1\" close_button=\"1\"][message type=\"error\" icon=\"1\" close_button=\"1\"][/vc_column][vc_column width=\"1/3\"][message type=\"error\" icon=\"1\" close_button=\"1\"][message type=\"warning\" icon=\"1\" close_button=\"1\"][message message=\"Your message here2!\"][message type=\"info\" close_button=\"1\"][/vc_column][/vc_row][vc_row][vc_column][gap][vc_message color=\"alert-info\"]I am message box. Click edit button to change this text.[/vc_message][vc_message color=\"alert-warning\" style=\"square\"]I am message box. Click edit button to change this text.[/vc_message][vc_message color=\"alert-success\" style=\"round\"]I am message box. Click edit button to change this text.[/vc_message][vc_message color=\"alert-danger\" message_box_style=\"outline\"]I am message box. Click edit button to change this text.[/vc_message][vc_message color=\"alert-warning\" message_box_style=\"3d\"]I am message box. Click edit button to change this text.[/vc_message][vc_message color=\"alert-info\" message_box_style=\"outline\" style=\"square\"]I am message box. Click edit button to change this text.[/vc_message][/vc_column][/vc_row][vc_row][vc_column][gap][/vc_column][/vc_row]","Message Box","","publish","closed","closed","","message-box","","","2016-09-26 22:09:32","2016-09-26 22:09:32","","0","http://demo.themetor.com/bizpro/?page_id=885","0","page","","0"); INSERT INTO `wp_posts` VALUES("887","1","2016-09-26 22:09:49","2016-09-26 22:09:49","[vc_row][vc_column][newsticker title=\"Breaking News\" items=\"10\" title_color=\"#cc0000\" blink=\"true\"][/vc_column][/vc_row][vc_row][vc_column][divider margin_top=\"50px\" margin_bottom=\"50px\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][newsticker title=\"News2\" items=\"4\" orderby=\"title\" order=\"ASC\" title_color=\"#004cdb\"][/vc_column][vc_column width=\"1/3\"][newsticker title=\"NEWS\" items=\"6\" orderby=\"rand\" title_color=\"#099aad\" blink=\"true\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"100\"][/vc_column][/vc_row]","News Ticker","","publish","closed","closed","","news-ticker","","","2016-09-26 22:09:49","2016-09-26 22:09:49","","0","http://demo.themetor.com/bizpro/?page_id=887","0","page","","0"); INSERT INTO `wp_posts` VALUES("889","1","2016-09-26 22:10:07","2016-09-26 22:10:07","[vc_row][vc_column][anchor padding_top=\"110px\" id=\"about\"][vc_column_text]\n

ABOUT

\n[/vc_column_text][divider style=\"icon\" icon=\"long-arrow-down\" width=\"50%\"][vc_column_text]\n

Our heroes in our company

\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/3\"][title header=\"h3\"]About Us[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

\n

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.

\n

Mauris vel lacus vitae felis vestibulum volutpat. Etiam est nunc, venenatis in, tristique eu, imperdiet ac, nisl. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"517\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][title header=\"h3\"]Mission & Vision[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

\n

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Mauris vel lacus vitae felis vestibulum volutpat. Etiam est nunc, venenatis in, tristique eu, imperdiet ac, nisl.

\n

Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In iaculis facilisis massa. Etiam eu urna.

\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][actionbox title=\"BizPro | Business Friendly Multi-purpose WordPress Theme\" sub_text=\"Multi-purpose, Drag and Drop, Fully Responsive and RTL Support\" image=\"592\" button_text=\"Buy it Now!\" button_icon=\"shopping-cart\" button_size=\"medium\" url=\"http://themeforest.net/item/smartco-business-friendly-multi-purpose-wp-theme/12096475?ref=ThemeTor\" target=\"_blank\"][anchor padding_top=\"110px\" id=\"team\"][vc_column_text]\n

TEAM

\n[/vc_column_text][divider style=\"icon\" icon=\"group\" width=\"50%\"][vc_column_text]\n

Our heroes in our company

\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][member name=\"Someone\" role=\"Agent\" image=\"587\" facebook=\"#\" twitter=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor[/member][/vc_column][vc_column width=\"1/6\"][member name=\"Someone\" role=\"Agent\" image=\"590\" facebook=\"#\" twitter=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor dolor sit ait dolor sit ait, sed do eiusmod tempor[/member][/vc_column][vc_column width=\"1/3\"][member name=\"Our Awesome Group\" role=\"Members\" image=\"403\" url=\"http://www.themetor.com\" target=\"_blank\" facebook=\"#\" twitter=\"#\" email=\"#\" grayscale=\"no\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor[/member][gap height=\"40\"][/vc_column][vc_column width=\"1/6\"][member name=\"Someone\" role=\"Agent\" image=\"588\" facebook=\"#\" twitter=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor dolor sit ait dolor sit ait, sed do eiusmod tempor[/member][/vc_column][vc_column width=\"1/6\"][member name=\"Someone\" role=\"Agent\" image=\"589\" facebook=\"#\" twitter=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor[/member][/vc_column][/vc_row][vc_row][vc_column][anchor id=\"services\"][vc_column_text]\n

SERVICES

\n[/vc_column_text][divider style=\"icon\" icon=\"globe\" width=\"50%\"][vc_column_text]\n

Our Services in all around the World

\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/3\"][actionbox style=\"style3\" title=\"MULTILINGUAL\" sub_text=\"Phasellus vehicula justo eget\" icon=\"globe\" button_text=\"Learn More\" button_default_color=\"customcolor\" button_color=\"#888888\" button_icon=\"bars\"][/vc_column_inner][vc_column_inner width=\"1/3\"][actionbox style=\"style3\" title=\"DRAG & DROP\" sub_text=\"Fully Drag and Drop and Flexible\" icon=\"arrows\" button_text=\"Read More ...\" button_default_color=\"customcolor\" button_color=\"#888888\"][/vc_column_inner][vc_column_inner width=\"1/3\"][actionbox style=\"style3\" title=\"BUSINESS FRIENDLY\" sub_text=\"Phasellus vehicula justo eget\" icon=\"thumbs-up\" button_text=\"Learn More\" button_default_color=\"customcolor\" button_color=\"#888888\" button_icon=\"heart\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][process_box title=\"Consultation\" number_color=\"#099aad\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem …[/process_box][/vc_column_inner][vc_column_inner width=\"1/4\"][process_box title=\"Development\" box_number=\"2\" number_color=\"#099aad\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem …[/process_box][/vc_column_inner][vc_column_inner width=\"1/4\"][process_box title=\"Payment\" box_number=\"3\" number_color=\"#099aad\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem …[/process_box][/vc_column_inner][vc_column_inner width=\"1/4\"][process_box title=\"Done!\" box_number=\"4\" number_color=\"#099aad\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem …[/process_box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][anchor id=\"works\"][vc_column_text]\n

WORKS

\n[/vc_column_text][divider style=\"icon\" icon=\"briefcase\" width=\"50%\"][vc_column_text]\n

Our awesome portfolio is our power

\n[/vc_column_text][portfolio columns=\"4\" items=\"7\" carousel=\"true\"][vc_row_inner el_class=\"tac\"][vc_column_inner][gap][button text=\"View all Works\" button_align=\"center\" icon=\"th\" icon_color=\"#666666\" size=\"medium\" url=\"../portfolio-4-columns/\" target=\"_blank\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][anchor id=\"skills\"][vc_column_text]\n

SKILLS

\n[/vc_column_text][divider style=\"icon\" icon=\"pie-chart\" width=\"50%\"][vc_column_text]\n

We are professional!

\n[/vc_column_text][gap height=\"10\"][/vc_column][/vc_row][vc_row][vc_column][wrap bg_color=\"#f5f5f5\" border_color=\"#eeeeee\" image=\"323\" shadow=\"yes\"][gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/6\"][vc_pie value=\"75\" color=\"custom\" title=\"Design\" units=\"%\" custom_color=\"#099aad\"][/vc_column_inner][vc_column_inner width=\"2/6\"][progress_bar title=\"Photoshop\" percent=\"79\" color=\"#666666\"][progress_bar title=\"Photography\" percent=\"84\" color=\"#666666\"][progress_bar title=\"HTML & CSS\" percent=\"68\" color=\"#666666\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_pie value=\"86\" color=\"custom\" title=\"Programming\" units=\"%\" custom_color=\"#099aad\"][/vc_column_inner][vc_column_inner width=\"2/6\"][progress_bar title=\"PHP\" percent=\"89\" color=\"#666666\"][progress_bar title=\"C++\" percent=\"71\" color=\"#666666\"][progress_bar title=\"ASP.net\" percent=\"79\" color=\"#666666\"][/vc_column_inner][/vc_row_inner][gap height=\"30\"][/wrap][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][anchor id=\"testimonials\"][vc_column_text]\n

TESTIMONIALS

\n[/vc_column_text][divider style=\"icon\" icon=\"comments\" width=\"50%\"][vc_column_text]\n

What our Happy Customers said about us?

\n[/vc_column_text][testimonial style=\"light\" bg_color=\"#099aad\" items=\"5\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][anchor id=\"pricing\"][vc_column_text]\n

PRICING

\n[/vc_column_text][divider style=\"icon\" icon=\"dollar\" width=\"50%\"][gap][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][pricingtableitem title=\"Starter\" period=\"Monthly\" button_text=\"Add to cart\" button_text_color=\"#666666\" button_style=\"tbutton1\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" button_icon=\"cart-plus\" url=\"#\" fetured_title=\"\"]\n
    \n \t
  • Free all features
  • \n \t
  • Up to 10 GB
  • \n \t
  • Ads discount
  • \n \t
  • Cloud hosting
  • \n
\n[/pricingtableitem][/vc_column][vc_column width=\"1/4\"][pricingtableitem title=\"Premium\" price=\"29.99\" period=\"Monthly\" button_text=\"Order Now!\" button_text_color=\"#ffffff\" button_style=\"tbutton6\" button_default_color=\"customcolor\" button_custom_color=\"#099aad\" button_icon=\"shopping-cart\" button_icon_color=\"#ffffff\" button_size=\"medium\" url=\"#\" featured=\"yes\" featured_title=\"Featured\" featured_bg_color=\"#099aad\" fetured_title=\"Featured\"]\n
    \n \t
  • Free all features
  • \n \t
  • Up to 20 GB
  • \n \t
  • Ads discount
  • \n \t
  • 24/7 Support
  • \n \t
  • Cloud hosting
  • \n
\n[/pricingtableitem][/vc_column][vc_column width=\"1/4\"][pricingtableitem title=\"Team\" price=\"49.99\" period=\"Monthly\" button_text=\"Add to cart\" button_text_color=\"#666666\" button_style=\"tbutton1\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" button_icon=\"cart-plus\" url=\"#\"]\n
    \n \t
  • Free all features
  • \n \t
  • Up to 30 GB
  • \n \t
  • Ads discount
  • \n \t
  • Cloud hosting
  • \n
\n[/pricingtableitem][/vc_column][vc_column width=\"1/4\"][pricingtableitem title=\"Corporate\" price=\"99.99\" period=\"Yearly\" button_text=\"Add to cart\" button_text_color=\"#666666\" button_style=\"tbutton1\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" button_icon=\"cart-plus\" url=\"#\"]\n
    \n \t
  • Free all features
  • \n \t
  • Up to 50 GB
  • \n \t
  • Ads discount
  • \n \t
  • Cloud hosting
  • \n
\n[/pricingtableitem][/vc_column][/vc_row][vc_row][vc_column][anchor id=\"news\"][vc_column_text]\n

NEWS

\n[/vc_column_text][divider style=\"icon\" icon=\"newspaper-o\" width=\"50%\"][vc_column_text]\n

Our latest and hot news about business

\n[/vc_column_text][recentposts title=\"\" columns=\"3\" items=\"7\" carousel=\"true\"][/vc_column][/vc_row][vc_row][vc_column][anchor id=\"contact\"][vc_column_text]\n

CONTACT

\n[/vc_column_text][divider style=\"icon\" icon=\"envelope-o\" width=\"50%\"][vc_column_text]\n

Get in Touch with us!

\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][contact-form-7 id=\"46\"][/vc_column][vc_column width=\"1/2\"][gmap zoom=\"14\" markerimage=\"1072\" color=\"#099aad\" lat=\"-37.817314\" long=\"144.955431\" widht=\"100%\" height=\"300\" address=\"121 King St, Melbourne VIC 3000, Australia\" infowindow=\"Your text goes here!\" apikey=\"AIzaSyAIS-TuOD5hnITbrRCOIkznlU1PLkUMD1A\"][/vc_column][/vc_row][vc_row el_class=\"tac\"][vc_column][gap height=\"30\"][vc_column_text]\n

WE ARE SOCIAL

\n[/vc_column_text][divider style=\"icon\" icon=\"heart\" icon_color=\"#dd0000\" width=\"50%\"][vc_column_text]\n

Get in Touch with us!

\n[/vc_column_text][social style=\"circle\" border=\"yes\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" dribbble=\"#\" rss=\"#\" flickr=\"#\" linkedin=\"#\" instagram=\"#\" skype=\"#\" youtube=\"#\"][gap height=\"60\"][/vc_column][/vc_row]","One Page","","publish","closed","closed","","one-page","","","2016-09-26 22:10:07","2016-09-26 22:10:07","","0","http://demo.themetor.com/bizpro/?page_id=889","0","page","","0"); INSERT INTO `wp_posts` VALUES("891","1","2016-09-26 22:10:25","2016-09-26 22:10:25","[vc_row][vc_column][title header=\"h2\" align=\"center\"]Our Heros[/title][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][member name=\"Jane Someone\" role=\"Web Developer\" image=\"2046\" facebook=\"#\" twitter=\"#\" dribbble=\"#\" flickr=\"#\" instagram=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris consequat.[/member][/vc_column][vc_column width=\"1/3\"][member name=\"John Doe\" role=\"CEO\" image=\"2045\" url=\"http://www.themetor.com\" facebook=\"#\" twitter=\"#\" linkedin=\"#\" skype=\"#\" instagram=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris consequat.[/member][/vc_column][vc_column width=\"1/3\"][member name=\"Mark Brown\" role=\"Sales Manager\" image=\"2044\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" linkedin=\"#\" skype=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris consequat.[/member][/vc_column][/vc_row][vc_row][vc_column][gap height=\"35\"][/vc_column][/vc_row][vc_row][vc_column][title header=\"h2\" align=\"center\"]Our Customer Support[/title][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][member name=\"Someone Else\" role=\"Agent\" image=\"2047\" facebook=\"#\" twitter=\"#\" skype=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.[/member][/vc_column][vc_column width=\"1/4\"][member name=\"Someone Else\" role=\"Agent\" image=\"2046\" url=\"http://www.themetor.com\" target=\"_blank\" linkedin=\"#\" skype=\"#\" dribbble=\"#\" flickr=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.[/member][/vc_column][vc_column width=\"1/4\"][member name=\"Someone Else\" role=\"Agent\" image=\"2045\" facebook=\"#\" dribbble=\"#\" instagram=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.[/member][/vc_column][vc_column width=\"1/4\"][member name=\"Someone Else\" role=\"Agent\" image=\"2044\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" skype=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.[/member][/vc_column][/vc_row][vc_row][vc_column][gap height=\"35\"][/vc_column][/vc_row][vc_row][vc_column][title header=\"h2\" align=\"center\"]Our Partners in all around the world[/title][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][member name=\"Someone\" role=\"Agent\" image=\"2046\" facebook=\"#\" twitter=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor[/member][/vc_column][vc_column width=\"1/6\"][member name=\"Someone\" role=\"Agent\" image=\"2047\" facebook=\"#\" twitter=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor dolor sit ait dolor sit ait, sed do eiusmod tempor[/member][/vc_column][vc_column width=\"1/3\"][member name=\"Someone else in Somewhere\" role=\"Agent\" image=\"2045\" url=\"http://www.themetor.com\" target=\"_blank\" facebook=\"#\" twitter=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor[/member][gap height=\"40\"][/vc_column][vc_column width=\"1/6\"][member name=\"Someone\" role=\"Agent\" image=\"2046\" facebook=\"#\" twitter=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor dolor sit ait dolor sit ait, sed do eiusmod tempor[/member][/vc_column][vc_column width=\"1/6\"][member name=\"Someone\" role=\"Agent\" image=\"2044\" facebook=\"#\" twitter=\"#\" email=\"#\"]Lorem ipsum dolor sit ait, sed do eiusmod tempor[/member][/vc_column][/vc_row]","Our Team","","publish","closed","closed","","our-team","","","2016-09-26 22:10:25","2016-09-26 22:10:25","","0","http://demo.themetor.com/bizpro/?page_id=891","0","page","","0"); INSERT INTO `wp_posts` VALUES("893","1","2016-09-26 22:10:41","2016-09-26 22:10:41","[vc_row][vc_column][title header=\"h3\"]Full Width Carousel[/title][gap height=\"20\"][portfolio columns=\"4\" items=\"8\" carousel=\"true\" nav=\"top\" title=\"8 Carousel Items in 4 Columns\"][gap height=\"120\"][title header=\"h3\" align=\"center\"]Full Width 3 Columns [/title][gap height=\"20\"][portfolio columns=\"3\" items=\"8\" carousel=\"true\" nav=\"bottom\" title=\"8 Carousel Items in 4 Columns\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"80\"][gap][divider][gap height=\"30\"][vc_row_inner][vc_column_inner width=\"1/6\"][title]Latest Projects[/title][gap height=\"20\"][button text=\"View All\" text_color=\"#000000\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" icon=\"th\" icon_color=\"#000000\"][/vc_column_inner][vc_column_inner width=\"5/6\"][portfolio columns=\"4\" items=\"8\" carousel=\"true\" title=\"8 Carousel Items in 4 Columns\"][/vc_column_inner][/vc_row_inner][gap height=\"30\"][divider][gap height=\"80\"][title header=\"h3\" align=\"center\"]Half Column / 2 Items[/title][divider][gap height=\"20\"][vc_row_inner][vc_column_inner width=\"1/2\"][portfolio columns=\"2\" items=\"6\" carousel=\"true\" title=\"8 Carousel Items in 4 Columns\" category=\"building\"][/vc_column_inner][vc_column_inner width=\"1/2\"][title]Our Latest Projects[/title][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum at, laoreet mattis, massa. Sed eleifend nonummy diam. Praesent mauris ante adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row el_class=\"tac\"][vc_column][gap height=\"30\"][button text=\"View All Projects\" text_color=\"#000000\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" icon=\"diamond\" icon_color=\"#000000\" size=\"medium\"][gap height=\"80\"][title header=\"h3\" align=\"center\"]Static Items[/title][divider][gap height=\"20\"][portfolio columns=\"4\" items=\"8\" title=\"6 Static Items\"][gap][/vc_column][/vc_row]","Portfolio + Carousel","","publish","closed","closed","","portfolio-carousel","","","2016-09-26 22:10:41","2016-09-26 22:10:41","","0","http://demo.themetor.com/bizpro/?page_id=893","0","page","","0"); INSERT INTO `wp_posts` VALUES("895","1","2016-09-26 22:11:31","2016-09-26 22:11:31","[vc_row][vc_column][gap][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][pricingtableitem title=\"Starter\" period=\"Monthly\" button_text_color=\"#000000\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" url=\"#\" fetured_title=\"\"]\n
    \n \t
  • Free all features
  • \n \t
  • Up to 30 GB
  • \n \t
  • Ultimate Domain
  • \n \t
  • 24/7 services
  • \n \t
  • Ads discount
  • \n \t
  • Cloud hosting
  • \n
\n[/pricingtableitem][/vc_column][vc_column width=\"1/3\"][pricingtableitem title=\"Premium\" price=\"29.99\" period=\"Monthly\" button_text_color=\"#ffffff\" button_style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" button_icon=\"shopping-cart\" button_icon_color=\"#ffffff\" button_size=\"medium\" url=\"#\" featured=\"yes\" featured_title=\"Recommended\" fetured_title=\"Featured\"]\n
    \n \t
  • Free all features
  • \n \t
  • Up to 30 GB
  • \n \t
  • Ultimate Domain
  • \n \t
  • 24/7 services
  • \n \t
  • Ads discount
  • \n \t
  • Cloud hosting
  • \n
\n[/pricingtableitem][/vc_column][vc_column width=\"1/3\"][pricingtableitem title=\"Corporate\" price=\"99.99\" period=\"Yearly\" button_text_color=\"#000000\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" url=\"#\"]\n
    \n \t
  • Free all features
  • \n \t
  • Up to 30 GB
  • \n \t
  • Ultimate Domain
  • \n \t
  • 24/7 services
  • \n \t
  • Ads discount
  • \n \t
  • Cloud hosting
  • \n
\n[/pricingtableitem][/vc_column][/vc_row][vc_row][vc_column][gap height=\"100\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][pricingtableitem title=\"Starter\" period=\"Monthly\" button_text_color=\"#000000\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" url=\"#\" fetured_title=\"\"]\n
    \n \t
  • Free all features
  • \n \t
  • Up to 10 GB
  • \n \t
  • Ultimate Domain
  • \n \t
  • 24/7 services
  • \n \t
  • Ads discount
  • \n \t
  • Cloud hosting
  • \n
\n[/pricingtableitem][/vc_column][vc_column width=\"1/4\"][pricingtableitem title=\"Premium\" price=\"29.99\" period=\"Monthly\" button_text_color=\"#ffffff\" button_style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#099aad\" button_icon=\"shopping-cart\" button_icon_color=\"#ffffff\" button_size=\"medium\" url=\"#\" featured=\"yes\" featured_title=\"Featured\" featured_text_color=\"#ffffff\" featured_bg_color=\"#099aad\" fetured_title=\"Featured\"]\n
    \n \t
  • Free all features
  • \n \t
  • Up to 20 GB
  • \n \t
  • Ultimate Domain
  • \n \t
  • 24/7 services
  • \n \t
  • Ads discount
  • \n \t
  • Cloud hosting
  • \n
\n[/pricingtableitem][/vc_column][vc_column width=\"1/4\"][pricingtableitem title=\"Team\" price=\"49.99\" period=\"Monthly\" button_text_color=\"#000000\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" url=\"#\"]\n
    \n \t
  • Free all features
  • \n \t
  • Up to 30 GB
  • \n \t
  • Ultimate Domain
  • \n \t
  • 24/7 services
  • \n \t
  • Ads discount
  • \n \t
  • Cloud hosting
  • \n
\n[/pricingtableitem][/vc_column][vc_column width=\"1/4\"][pricingtableitem title=\"Corporate\" price=\"99.99\" period=\"Yearly\" button_text_color=\"#000000\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" url=\"#\"]\n
    \n \t
  • Free all features
  • \n \t
  • Up to 50 GB
  • \n \t
  • Ultimate Domain
  • \n \t
  • 24/7 services
  • \n \t
  • Ads discount
  • \n \t
  • Cloud hosting
  • \n
\n[/pricingtableitem][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][/vc_column][/vc_row]","Pricing Table","","publish","closed","closed","","pricing-table","","","2016-09-26 22:11:31","2016-09-26 22:11:31","","0","http://demo.themetor.com/bizpro/?page_id=895","0","page","","0"); INSERT INTO `wp_posts` VALUES("897","1","2016-09-26 22:11:47","2016-09-26 22:11:47","[vc_row][vc_column][title align=\"center\"]Pie Chart[/title][divider margin_top=\"10px\" margin_bottom=\"40px\"][vc_row_inner][vc_column_inner width=\"1/6\"][vc_pie value=\"89\" color=\"btn-inverse\" title=\"Status\" units=\"%\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_pie value=\"78\" label_value=\"1.1M\" color=\"btn-primary\" title=\"FB LIKE\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_pie value=\"63\" color=\"btn-success\" units=\"%\" title=\"Development\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_pie value=\"99.99\" color=\"btn-warning\" title=\"Uptime\" units=\"%\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_pie value=\"43\" color=\"btn-info\" title=\"Followers\" units=\"K\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_pie value=\"78\" color=\"btn-danger\" units=\"/hr\" title=\"Price\"][/vc_column_inner][/vc_row_inner][gap][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][title header=\"h3\"]Static Start[/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][progress_bar title=\"Your title goes here!\" style=\"stripes\" start_style=\"static\" percent=\"77\" color=\"#cc0000\"][progress_bar title=\"PHP\" style=\"stripes\" start_style=\"static\" percent=\"29\" color=\"#191919\"][progress_bar title=\"Your title goes here!\" style=\"stripes\" start_style=\"static\" percent=\"67\" color=\"#bc7910\"][progress_bar title=\"WordPress\" style=\"stripes\" start_style=\"static\" percent=\"85\" color=\"#099aad\"][/vc_column][vc_column width=\"3/4\"][title header=\"h3\"] Striped Progress Bar + Start with Animation[/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][progress_bar title=\"Photoshop\" style=\"stripes\" percent=\"84\" color=\"#F07F7F\"][progress_bar title=\"WordPress\" style=\"stripes\" percent=\"46\"][progress_bar title=\"Photoshop\" style=\"stripes\" percent=\"74\" color=\"#69D869\"][progress_bar title=\"PHP\" style=\"stripes\" percent=\"85\" color=\"#191919\"][/vc_column][/vc_row][vc_row][vc_column][gap][title align=\"center\"] Simple Progress Bar [/title][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][gap][/vc_column][vc_column width=\"1/2\"][gap height=\"30\"][progress_bar title=\"Our Skills\" percent=\"67\" color=\"#F07F7F\"][progress_bar title=\"Your Title\" percent=\"51\"][progress_bar title=\"Title!\" percent=\"78\" color=\"#69D869\"][progress_bar title=\"Our Progress in this Project\" percent=\"48\" color=\"#099aad\"][gap][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][title align=\"center\"]Round Chart[/title][divider margin_top=\"10px\" margin_bottom=\"40px\"][vc_row_inner][vc_column_inner width=\"1/6\"][vc_round_chart stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22peacoc%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22value%22%3A%2240%22%2C%22color%22%3A%22pink%22%7D%5D\" animation=\"easeOutBounce\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_round_chart type=\"doughnut\" stroke_width=\"5\" values=\"%5B%7B%22title%22%3A%22Two%22%2C%22value%22%3A%2215%22%2C%22color%22%3A%22violet%22%7D%2C%7B%22title%22%3A%22One%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22peacoc%22%7D%5D\" animation=\"easeOutBack\"][/vc_column_inner][vc_column_inner width=\"2/6\"][vc_round_chart type=\"doughnut\" stroke_width=\"5\" legend=\"\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22peacoc%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22value%22%3A%2225%22%2C%22color%22%3A%22pink%22%7D%2C%7B%22title%22%3A%22Your%20Title%22%2C%22value%22%3A%2215%22%2C%22color%22%3A%22vista-blue%22%2C%22custom_color%22%3A%22%23ff675b%22%7D%5D\" animation=\"easeinOutQuint\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_round_chart stroke_width=\"0\" values=\"%5B%7B%22title%22%3A%22Two%22%2C%22value%22%3A%2240%22%2C%22color%22%3A%22purple%22%7D%2C%7B%22title%22%3A%22One%22%2C%22value%22%3A%2245%22%2C%22color%22%3A%22peacoc%22%7D%2C%7B%22title%22%3A%223%22%2C%22value%22%3A%2215%22%2C%22color%22%3A%22orange%22%2C%22custom_color%22%3A%22%235aa1e3%22%7D%5D\" animation=\"easeOutBack\"][/vc_column_inner][vc_column_inner width=\"1/6\"][vc_round_chart type=\"doughnut\" stroke_width=\"1\" legend=\"\" values=\"%5B%7B%22title%22%3A%22Two%22%2C%22value%22%3A%2240%22%2C%22color%22%3A%22mulled-wine%22%7D%2C%7B%22title%22%3A%22One%22%2C%22value%22%3A%2245%22%2C%22color%22%3A%22peacoc%22%7D%2C%7B%22title%22%3A%22Three%22%2C%22value%22%3A%2215%22%2C%22color%22%3A%22juicy-pink%22%2C%22custom_color%22%3A%22%23ebebeb%22%7D%5D\" animation=\"easeOutBack\"][/vc_column_inner][/vc_row_inner][gap height=\"70\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][title align=\"center\"]Bar Chart[/title][gap height=\"30\"][vc_line_chart values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22peacoc%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22chino%22%7D%5D\"][/vc_column][vc_column width=\"1/2\"][title align=\"center\"]Line Chart[/title][gap height=\"30\"][vc_line_chart type=\"line\" values=\"%5B%7B%22title%22%3A%22One%22%2C%22y_values%22%3A%2210%3B%2015%3B%2020%3B%2025%3B%2027%3B%2025%3B%2023%3B%2025%22%2C%22color%22%3A%22peacoc%22%7D%2C%7B%22title%22%3A%22Two%22%2C%22y_values%22%3A%2225%3B%2018%3B%2016%3B%2017%3B%2020%3B%2025%3B%2030%3B%2035%22%2C%22color%22%3A%22pink%22%7D%5D\" animation=\"easeOutQuart\"][gap height=\"70\"][/vc_column][/vc_row]","Charts & Bars","","publish","closed","closed","","charts-bars","","","2016-09-26 22:11:47","2016-09-26 22:11:47","","0","http://demo.themetor.com/bizpro/?page_id=897","0","page","","0"); INSERT INTO `wp_posts` VALUES("899","1","2016-09-26 22:12:04","2016-09-26 22:12:04","[vc_row][vc_column][title header=\"h3\" align=\"center\"]Recent Posts (Carousel)[/title][gap height=\"20\"][recentposts title=\"\" columns=\"3\" items=\"8\" carousel=\"true\"][gap height=\"70\"][title header=\"h3\" align=\"center\"]4 Columns Static Posts[/title][divider margin_top=\"10px\" margin_bottom=\"35px\"][/vc_column][/vc_row][vc_row][vc_column][recentposts title=\"\" columns=\"4\" items=\"8\"][gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][recentposts title=\"3 Columns\" columns=\"3\" items=\"10\" date_display=\"off\" carousel=\"true\" nav=\"off\"][/vc_column][vc_column width=\"1/3\"][recentposts title=\"NEWS\" columns=\"1\" items=\"10\" carousel=\"true\" nav=\"titlebar\"][gap height=\"70\"][/vc_column][/vc_row]","Recent Posts + Carousel","","publish","closed","closed","","recent-posts-carousel","","","2016-09-26 22:12:04","2016-09-26 22:12:04","","0","http://demo.themetor.com/bizpro/?page_id=899","0","page","","0"); INSERT INTO `wp_posts` VALUES("901","1","2016-09-26 22:12:22","2016-09-26 22:12:22","[vc_row][vc_column][vc_column_text]\n

All styles have Vertical/Horizontal version and you can use your custom Image instead of 519 included Icons

\n[/vc_column_text][title align=\"center\"]Style #1 [/title][divider margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][service title=\"Best Security\" button_text=\"Read More\" button_text_color=\"#ffffff\" button_style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#099aad\" url=\"http://www.themetor.com\" target=\"_blank\" sub_title=\"Great Highly Secure Website\" icon=\"fa fa-shield\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris[/service][/vc_column][vc_column width=\"1/3\"][service title=\"Responsive\" button_text=\"Read More\" button_text_color=\"#ffffff\" button_style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#099aad\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"fa fa-gavel\" sub_title=\"Best view on any devices\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris[/service][/vc_column][vc_column width=\"1/3\"][service title=\"Global Design\" button_text=\"Read More\" button_text_color=\"#ffffff\" button_style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#099aad\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"fa fa-globe\" sub_title=\"Great International Design\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris[/service][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][title align=\"center\"]Style #2[/title][divider margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][service style=\"style2\" title=\"Fire Insurance\" icon_color=\"#82d10c\" button_text=\"Apply Now!\" button_text_color=\"#636363\" button_style=\"tbutton2\" button_default_color=\"customcolor\" button_custom_color=\"#82d10c\" button_size=\"medium\" url=\"#\" icon=\"fire\" button_icon=\"edit\" sub_title=\"Your subtitle goes here!\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip[/service][/vc_column][vc_column width=\"1/3\"][service style=\"style2\" title=\"Global Design\" icon_color=\"#82d10c\" button_text=\"Download It!\" button_text_color=\"#636363\" button_style=\"tbutton2\" button_default_color=\"customcolor\" button_custom_color=\"#82d10c\" button_size=\"medium\" url=\"#\" icon=\"globe\" button_icon=\"download\" sub_title=\"Your subtitle goes here!\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip[/service][/vc_column][vc_column width=\"1/3\"][service style=\"style2\" title=\"Shop Ready\" icon_color=\"#82d10c\" button_text=\"Buy It Now\" button_text_color=\"#636363\" button_style=\"tbutton2\" button_default_color=\"customcolor\" button_custom_color=\"#82d10c\" button_size=\"medium\" url=\"#\" icon=\"shopping-cart\" button_icon=\"cart-plus\" sub_title=\"Your subtitle goes here!\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip[/service][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][title align=\"center\"]Style #3[/title][divider margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][service style=\"style3\" title=\"Global Design\" icon_color=\"#000000\" button_text=\"Download It!\" button_text_color=\"#636363\" button_style=\"tbutton1\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" button_size=\"medium\" url=\"#\" icon=\"globe\" button_icon=\"download\" sub_title=\"Your subtitle goes here!\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip[/service][/vc_column][vc_column width=\"1/2\"][service style=\"style3\" title=\"Shop Ready\" icon_color=\"#000000\" button_text=\"Buy It Now\" button_text_color=\"#636363\" button_style=\"tbutton1\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" button_size=\"medium\" url=\"#\" icon=\"shopping-cart\" button_icon=\"cart-plus\" sub_title=\"Your subtitle goes here!\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip[/service][gap height=\"70\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][service style=\"style3\" title=\"Global Design\" icon_color=\"#000000\" border_color=\"#cccccc\" button_text=\"Download It!\" button_text_color=\"#636363\" button_style=\"tbutton1\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" button_size=\"medium\" url=\"#\" icon=\"globe\" button_icon=\"download\" sub_title=\"Your subtitle goes here!\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip[/service][/vc_column][vc_column width=\"1/2\"][service style=\"style3\" title=\"Shop Ready\" icon_color=\"#000000\" bg_color=\"#eeeeee\" button_text=\"Buy It Now\" button_text_color=\"#636363\" button_style=\"tbutton1\" button_default_color=\"customcolor\" button_custom_color=\"#000000\" button_size=\"medium\" url=\"#\" icon=\"shopping-cart\" button_icon=\"cart-plus\" sub_title=\"Your subtitle goes here!\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip[/service][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][title align=\"center\"]Style #4[/title][divider margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][service style=\"style4\" title=\"Global Design\" icon_color=\"#aaaaaa\" button_text=\"Read More\" button_text_color=\"#ffffff\" button_style=\"tbutton6\" button_default_color=\"customcolor\" button_custom_color=\"#999999\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"folder-open\" sub_title=\"Great International Design\"]Lorem ipsum dolor sit amet, conse ctetur adip isicing elit, sed do eius mod tem por inci didunt ut labore et dolore magna aliqua.[/service][/vc_column][vc_column width=\"1/3\"][service style=\"style4\" title=\"Global Design\" icon_color=\"#bc0000\" button_text=\"Read More\" button_text_color=\"#ffffff\" button_style=\"tbutton6\" button_default_color=\"customcolor\" button_custom_color=\"#bc0000\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"heart\" sub_title=\"Great International Design\"]Lorem ipsum dolor sit amet, conse ctetur adip isicing elit, sed do eius mod tem por inci didunt ut labore et dolore magna aliqua.[/service][/vc_column][vc_column width=\"1/3\"][service style=\"style4\" title=\"Your Title Here\" icon_color=\"#aaaaaa\" button_text=\"Read More\" button_text_color=\"#ffffff\" button_style=\"tbutton6\" button_default_color=\"customcolor\" button_custom_color=\"#999999\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"umbrella\" sub_title=\"Great International Design\"]Lorem ipsum dolor sit amet, conse ctetur adip isicing elit, sed do eius mod tem por inci didunt ut labore et dolore magna aliqua.[/service][/vc_column][/vc_row][vc_row][vc_column][gap height=\"60\"][title header=\"h3\" align=\"center\"]Style #4 / Vertical[/title][divider margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][service style=\"style4\" type=\"vertical\" title=\"Global Design\" icon_color=\"#aaaaaa\" button_text=\"Read More\" button_text_color=\"#ffffff\" button_style=\"tbutton6\" button_default_color=\"customcolor\" button_custom_color=\"#999999\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"folder-open\" sub_title=\"Great International Design\"]Lorem ipsum dolor sit amet, conse ctetur adip isicing elit, sed do eius mod tem por inci didunt ut labore et dolore magna aliqua.[/service][/vc_column][vc_column width=\"1/3\"][service style=\"style4\" type=\"vertical\" title=\"Global Design\" icon_color=\"#bc0000\" border_color=\"#b2b2b2\" button_text=\"Read More\" button_text_color=\"#ffffff\" button_style=\"tbutton6\" button_default_color=\"customcolor\" button_custom_color=\"#bc0000\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"heart\" sub_title=\"Great International Design\"]Lorem ipsum dolor sit amet, conse ctetur adip isicing elit, sed do eius mod tem por inci didunt ut labore et dolore magna aliqua.[/service][/vc_column][vc_column width=\"1/3\"][service style=\"style4\" type=\"vertical\" title=\"Your Title Here\" icon_color=\"#aaaaaa\" button_text=\"Read More\" button_text_color=\"#ffffff\" button_style=\"tbutton6\" button_default_color=\"customcolor\" button_custom_color=\"#999999\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"umbrella\" sub_title=\"Great International Design\"]Lorem ipsum dolor sit amet, conse ctetur adip isicing elit, sed do eius mod tem por inci didunt ut labore et dolore magna aliqua.[/service][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][title align=\"center\"]Style #5[/title][divider margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][service style=\"style5\" title=\"Any Style \" icon_color=\"#1e73be\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"eye\" sub_title=\"Select any style you want\"]Lorem ipsum dolor sit amet[/service][/vc_column][vc_column width=\"1/3\"][service style=\"style5\" title=\"Any Color\" icon_color=\"#60bf3b\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"globe\" sub_title=\"Select any color you want\"]Select you own color[/service][gap height=\"70\"][/vc_column][vc_column width=\"1/3\"][service style=\"style5\" title=\"500+ Icons\" icon_color=\"#1e73be\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"rocket\" sub_title=\"Select any color you want\"]Select you icon[/service][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][service style=\"style5\" title=\"Any Style \" icon_color=\"#1e73be\" border_color=\"#1e73be\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"eye\" sub_title=\"Select any style you want\"]Lorem ipsum dolor sit amet[/service][/vc_column][vc_column width=\"1/3\"][service style=\"style5\" title=\"Any Color\" icon_color=\"#60bf3b\" border_color=\"#60bf3b\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"globe\" sub_title=\"Select any color you want\"]Select you own color[/service][/vc_column][vc_column width=\"1/3\"][service style=\"style5\" title=\"500+ Icons\" icon_color=\"#1e73be\" border_color=\"#1e73be\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"rocket\" sub_title=\"Select any color you want\"]Select you icon[/service][/vc_column][/vc_row][vc_row][vc_column][gap height=\"80\"][title align=\"center\"]Style #6[/title][divider margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][service style=\"style6\" title=\"Web Design\" icon_color=\"#f9bf00\" button_text=\"Read More\" button_text_color=\"#ffffff\" button_style=\"tbutton6\" button_default_color=\"customcolor\" button_custom_color=\"#dba800\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"heart\" sub_title=\"Great International Design\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris[/service][/vc_column][vc_column width=\"1/3\"][service style=\"style6\" title=\"Global Design\" icon_color=\"#0bbc9f\" button_text=\"Button Text\" button_text_color=\"#ffffff\" button_style=\"tbutton6\" button_default_color=\"customcolor\" button_custom_color=\"#059377\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"globe\" sub_title=\"Great International Design\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris[/service][/vc_column][vc_column width=\"1/3\"][service style=\"style6\" title=\"Responsive\" icon_color=\"#60bec9\" button_text=\"Read More\" button_text_color=\"#ffffff\" button_style=\"tbutton6\" button_default_color=\"customcolor\" button_custom_color=\"#49939b\" url=\"http://www.themetor.com\" target=\"_blank\" icon=\"expand\" sub_title=\"Great International Design\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris[/service][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][title align=\"center\"]Custom Image / Vertical[/title][divider margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][service type=\"vertical\" image=\"958\" border_color=\"#cccccc\" button_text=\"Apply Now!\" button_text_color=\"#ffffff\" button_style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#539606\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod[/service][/vc_column][vc_column width=\"1/4\"][service type=\"vertical\" title=\"Custom Image\" image=\"960\" border_color=\"#cccccc\" button_text=\"Download it!\" button_text_color=\"#ffffff\" button_style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#0377a5\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod[/service][/vc_column][vc_column width=\"1/4\"][service type=\"vertical\" title=\"Awesome\" image=\"956\" border_color=\"#cccccc\" button_text=\"Apply Now!\" button_text_color=\"#ffffff\" button_style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#e8476f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod[/service][/vc_column][vc_column width=\"1/4\"][service type=\"vertical\" title=\"SEO REady\" image=\"959\" border_color=\"#cccccc\" button_text=\"Learn More\" button_text_color=\"#ffffff\" button_style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#c6a037\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod[/service][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][/vc_column][/vc_row]","Service Box","","publish","closed","closed","","service-box","","","2016-09-26 22:12:22","2016-09-26 22:12:22","","0","http://demo.themetor.com/bizpro/?page_id=901","0","page","","0"); INSERT INTO `wp_posts` VALUES("903","1","2016-09-26 22:13:04","2016-09-26 22:13:04","[vc_row full_width=\"\" parallax=\"\" parallax_image=\"\"][vc_column width=\"1/3\"][title header=\"h3\" align=\"left\" icon=\"\" icon_color=\"\"]Square[/title][social style=\"square\" border=\"\" target=\"_self\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" dribbble=\"#\" rss=\"#\" flickr=\"#\" linkedin=\"#\" pinterest=\"#\" instagram=\"#\" skype=\"#\" tumblr=\"#\" youtube=\"#\" xing=\"#\" dropbox=\"#\" behance=\"#\" spotify=\"#\" soundcloud=\"#\" github=\"#\" stackexchange=\"#\" bitbucket=\"#\" weibo=\"#\" foursquare=\"#\"][/vc_column][vc_column width=\"1/3\"][title header=\"h3\" align=\"left\" icon=\"\" icon_color=\"\"]Square + Border[/title][social style=\"square\" border=\"yes\" target=\"_self\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" dribbble=\"#\" rss=\"#\" flickr=\"#\" linkedin=\"#\" pinterest=\"#\" instagram=\"#\" skype=\"#\" tumblr=\"#\" youtube=\"#\" xing=\"#\" dropbox=\"#\" behance=\"#\" spotify=\"#\" soundcloud=\"#\" github=\"#\" stackexchange=\"#\" bitbucket=\"#\" weibo=\"#\" foursquare=\"#\"][/vc_column][vc_column width=\"1/3\"][title header=\"h3\" align=\"left\" icon=\"\" icon_color=\"\"]Square with Color[/title][social style=\"square_color\" border=\"\" target=\"_self\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" dribbble=\"#\" rss=\"#\" flickr=\"#\" linkedin=\"#\" pinterest=\"#\" instagram=\"#\" skype=\"#\" tumblr=\"#\" youtube=\"#\" xing=\"#\" dropbox=\"#\" behance=\"#\" spotify=\"#\" soundcloud=\"#\" github=\"#\" stackexchange=\"#\" bitbucket=\"#\" weibo=\"#\" foursquare=\"#\"][/vc_column][/vc_row][vc_row full_width=\"\" parallax=\"\" parallax_image=\"\"][vc_column width=\"1/1\"][gap height=\"50\"][/vc_column][/vc_row][vc_row full_width=\"\" parallax=\"\" parallax_image=\"\" el_id=\"\"][vc_column width=\"1/3\"][title header=\"h3\" align=\"left\" icon=\"\" icon_color=\"\"]Rounded[/title][social style=\"rounded\" border=\"\" target=\"_self\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" dribbble=\"#\" rss=\"#\" flickr=\"#\" linkedin=\"#\" pinterest=\"#\" instagram=\"#\" skype=\"#\" tumblr=\"#\" youtube=\"#\" xing=\"#\" dropbox=\"#\" behance=\"#\" spotify=\"#\" soundcloud=\"#\" github=\"#\" stackexchange=\"#\" bitbucket=\"#\" weibo=\"#\" foursquare=\"#\"][/vc_column][vc_column width=\"1/3\"][title header=\"h3\" align=\"left\"]Rounded + Border[/title][social style=\"rounded\" border=\"yes\" target=\"_self\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" dribbble=\"#\" rss=\"#\" flickr=\"#\" linkedin=\"#\" pinterest=\"#\" instagram=\"#\" skype=\"#\" tumblr=\"#\" youtube=\"#\" xing=\"#\" dropbox=\"#\" behance=\"#\" spotify=\"#\" soundcloud=\"#\" github=\"#\" stackexchange=\"#\" bitbucket=\"#\" weibo=\"#\" foursquare=\"#\"][/vc_column][vc_column width=\"1/3\"][title header=\"h3\" align=\"left\" icon=\"\" icon_color=\"\"]Rounded with Color[/title][social style=\"rounded_color\" border=\"\" target=\"_self\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" dribbble=\"#\" rss=\"#\" flickr=\"#\" linkedin=\"#\" pinterest=\"#\" instagram=\"#\" skype=\"#\" tumblr=\"#\" youtube=\"#\" xing=\"#\" dropbox=\"#\" behance=\"#\" spotify=\"#\" soundcloud=\"#\" github=\"#\" stackexchange=\"#\" bitbucket=\"#\" weibo=\"#\" foursquare=\"#\"][/vc_column][/vc_row][vc_row full_width=\"\" parallax=\"\" parallax_image=\"\" el_id=\"\"][vc_column width=\"1/1\"][gap height=\"50\"][/vc_column][/vc_row][vc_row full_width=\"\" parallax=\"\" parallax_image=\"\" el_id=\"\"][vc_column width=\"1/3\"][title header=\"h3\" align=\"left\" icon=\"\" icon_color=\"\"]Circle[/title][social style=\"circle\" border=\"\" target=\"_self\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" dribbble=\"#\" rss=\"#\" flickr=\"#\" linkedin=\"#\" pinterest=\"#\" instagram=\"#\" skype=\"#\" tumblr=\"#\" youtube=\"#\" xing=\"#\" dropbox=\"#\" behance=\"#\" spotify=\"#\" soundcloud=\"#\" github=\"#\" stackexchange=\"#\" bitbucket=\"#\" weibo=\"#\" foursquare=\"#\"][/vc_column][vc_column width=\"1/3\"][title header=\"h3\" align=\"left\"]Circle + Border[/title][social style=\"circle\" border=\"yes\" target=\"_self\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" dribbble=\"#\" rss=\"#\" flickr=\"#\" linkedin=\"#\" pinterest=\"#\" instagram=\"#\" skype=\"#\" tumblr=\"#\" youtube=\"#\" xing=\"#\" dropbox=\"#\" behance=\"#\" spotify=\"#\" soundcloud=\"#\" github=\"#\" stackexchange=\"#\" bitbucket=\"#\" weibo=\"#\" foursquare=\"#\"][/vc_column][vc_column width=\"1/3\"][title header=\"h3\" align=\"left\" icon=\"\" icon_color=\"\"]Circle with Color[/title][social style=\"circle_color\" border=\"\" target=\"_self\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" dribbble=\"#\" rss=\"#\" flickr=\"#\" linkedin=\"#\" pinterest=\"#\" instagram=\"#\" skype=\"#\" tumblr=\"#\" youtube=\"#\" xing=\"#\" dropbox=\"#\" behance=\"#\" spotify=\"#\" soundcloud=\"#\" github=\"#\" stackexchange=\"#\" bitbucket=\"#\" weibo=\"#\" foursquare=\"#\"][/vc_column][/vc_row][vc_row full_width=\"\" parallax=\"\" parallax_image=\"\" el_id=\"\"][vc_column width=\"1/1\"][gap height=\"50\"][/vc_column][/vc_row][vc_row full_width=\"\" parallax=\"\" parallax_image=\"\" el_id=\"\"][vc_column width=\"1/3\"][title header=\"h3\" align=\"left\" icon=\"\" icon_color=\"\"]With Title[/title][social style=\"w_title\" border=\"\" target=\"_self\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" dribbble=\"#\" rss=\"#\" flickr=\"#\" linkedin=\"#\" pinterest=\"#\" instagram=\"#\" skype=\"#\" tumblr=\"#\" youtube=\"#\" xing=\"#\" dropbox=\"#\" behance=\"#\" spotify=\"#\" soundcloud=\"#\" github=\"#\" stackexchange=\"#\" bitbucket=\"#\" weibo=\"#\" foursquare=\"#\"][/vc_column][vc_column width=\"1/3\"][title header=\"h3\" align=\"left\"]With Title + Border[/title][social style=\"w_title\" border=\"yes\" target=\"_self\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" dribbble=\"#\" rss=\"#\" flickr=\"#\" linkedin=\"#\" pinterest=\"#\" instagram=\"#\" skype=\"#\" tumblr=\"#\" youtube=\"#\" xing=\"#\" dropbox=\"#\" behance=\"#\" spotify=\"#\" soundcloud=\"#\" github=\"#\" stackexchange=\"#\" bitbucket=\"#\" weibo=\"#\" foursquare=\"#\"][/vc_column][vc_column width=\"1/3\"][title header=\"h3\" align=\"left\" icon=\"\" icon_color=\"\"]Title with Color[/title][social style=\"w_title_color\" border=\"\" target=\"_self\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" dribbble=\"#\" rss=\"#\" flickr=\"#\" linkedin=\"#\" pinterest=\"#\" instagram=\"#\" skype=\"#\" tumblr=\"#\" youtube=\"#\" xing=\"#\" dropbox=\"#\" behance=\"#\" spotify=\"#\" soundcloud=\"#\" github=\"#\" stackexchange=\"#\" bitbucket=\"#\" weibo=\"#\" foursquare=\"#\"][/vc_column][/vc_row][vc_row full_width=\"\" parallax=\"\" parallax_image=\"\" el_id=\"\"][vc_column width=\"1/1\"][gap height=\"50\"][/vc_column][/vc_row]","Social Icons","","publish","closed","closed","","social-icons","","","2016-09-26 22:13:04","2016-09-26 22:13:04","","0","http://demo.themetor.com/bizpro/?page_id=903","0","page","","0"); INSERT INTO `wp_posts` VALUES("905","1","2016-09-26 22:13:56","2016-09-26 22:13:56","[vc_row][vc_column][vc_column_text]\n

Reach the ideal future, with our Support

\n

Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.

\n[/vc_column_text][divider style=\"icon\" color=\"#dddddd\" icon=\"angle-down\" icon_color=\"#bbbbbb\" width=\"32%\" margin_top=\"40px\" margin_bottom=\"40px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][animation animation=\"fadeInUp\" delay=\"300\"][process_box title=\"New Idea\" url=\"#\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem …[/process_box][/animation][/vc_column][vc_column width=\"1/4\"][animation animation=\"fadeInUp\" delay=\"700\"][process_box title=\"Development\" box_number=\"2\" url=\"#\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem …[/process_box][/animation][/vc_column][vc_column width=\"1/4\"][animation animation=\"fadeInUp\" delay=\"1100\"][process_box title=\"Payment\" box_number=\"3\" url=\"#\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem …[/process_box][/animation][/vc_column][vc_column width=\"1/4\"][animation animation=\"fadeInUp\" delay=\"1500\"][process_box title=\"Get Service\" box_number=\"4\" url=\"#\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem …[/process_box][/animation][/vc_column][/vc_row][vc_row][vc_column][animation animation=\"fadeInUp\" delay=\"0\"][vc_single_image image=\"2260\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1435589151028{margin-bottom: -35px !important;}\"][/animation][wrap image=\"535\" parallax=\"yes\" ratio=\"0.5\"][gap][vc_row_inner][vc_column_inner width=\"1/2\"][gap][vc_column_text]\n

We Believe Everyone Has \n Something Important To Say.

\n[/vc_column_text][divider align=\"left\" color=\"#3a3a3a\" size=\"4px\" width=\"8%\" margin_top=\"10px\" margin_bottom=\"30px\"][vc_column_text]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit. [/vc_column_text][button text=\"Learn More\" text_color=\"#000000\" style=\"tbutton5\" button_default_color=\"customcolor\" button_custom_color=\"#ffffff\" icon=\"diamond\" icon_color=\"#000000\" size=\"medium\"][button text=\"Buy it Now!\" text_color=\"#ffffff\" button_default_color=\"customcolor\" button_custom_color=\"#ffffff\" icon=\"cart-plus\" icon_color=\"#ffffff\" size=\"medium\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"848\" img_size=\"full\" alignment=\"right\" css=\".vc_custom_1432052456715{margin-bottom: -7px !important;}\"][/vc_column_inner][/vc_row_inner][/wrap][/vc_column][/vc_row][vc_row][vc_column][gap height=\"40\"][animation animation=\"fadeInUp\"][vc_column_text]\n

Some of the our Services

\n

Sed ut perspiciatis unde omnis iste natus error sit voluptatem

\n[/vc_column_text][divider style=\"icon\" color=\"#dddddd\" icon=\"diamond\" icon_color=\"#bbbbbb\" width=\"29%\" margin_top=\"40px\" margin_bottom=\"40px\"][/animation][animation animation=\"fadeInUp\"][vc_row_inner][vc_column_inner width=\"1/3\"][service title=\"100% Translatable\" icon=\"globe\" icon_color=\"#dadada\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem ut perspiciatis unde ...[/service][/vc_column_inner][vc_column_inner width=\"1/3\"][service title=\"Free Support 24/7\" icon=\"support\" icon_color=\"#dadada\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem ut perspiciatis unde ...[/service][/vc_column_inner][vc_column_inner width=\"1/3\"][service title=\"Retina Graphics\" icon=\"image\" icon_color=\"#dadada\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem ut perspiciatis unde ...[/service][/vc_column_inner][/vc_row_inner][/animation][animation animation=\"fadeInUp\"][vc_row_inner][vc_column_inner width=\"1/3\"][service title=\"Unlimited Options\" icon=\"cogs\" icon_color=\"#dadada\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem ut perspiciatis unde ...[/service][/vc_column_inner][vc_column_inner width=\"1/3\"][service title=\"Drag and Drop\" icon=\"arrows\" icon_color=\"#dadada\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem ut perspiciatis unde ...[/service][/vc_column_inner][vc_column_inner width=\"1/3\"][service title=\"Parallax Sections\" icon=\"bars\" icon_color=\"#dadada\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem ut perspiciatis unde ...[/service][/vc_column_inner][/vc_row_inner][/animation][/vc_column][/vc_row][vc_row][vc_column][gap][wrap bg_color=\"#f6f6f6\"][vc_row_inner][vc_column_inner width=\"1/6\"][gap height=\"40\"][vc_column_text]\n

Latest Projects

\n[/vc_column_text][divider align=\"left\" color=\"#3e3e3e\" size=\"4px\" width=\"22%\"][gap height=\"35\"][button text=\"View All Works\" text_color=\"#000000\" button_default_color=\"customcolor\" button_custom_color=\"#000000\"][/vc_column_inner][vc_column_inner width=\"5/6\"][portfolio columns=\"4\" items=\"7\" carousel=\"true\" category=\"interior-design,logo-design,modeling,packing,photography\"][/vc_column_inner][/vc_row_inner][/wrap][/vc_column][/vc_row][vc_row][vc_column][gap height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][gap height=\"30\"][animation animation=\"fadeInLeft\"][service style=\"style3\" align=\"right\" title=\"Unlimited Options\" icon=\"cogs\" icon_color=\"#cccccc\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem ut perspiciatis unde ...[/service][/animation][gap][animation animation=\"fadeInLeft\"][service style=\"style3\" align=\"right\" title=\"Drag and Drop\" icon=\"arrows\" icon_color=\"#cccccc\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem ut perspiciatis unde ...[/service][/animation][gap][animation animation=\"fadeInLeft\"][service style=\"style3\" align=\"right\" title=\"Retina Graphics\" icon=\"image\" icon_color=\"#dadada\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem ut perspiciatis unde ...[/service][/animation][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"836\" img_size=\"full\" alignment=\"center\"][gap height=\"30\"][/vc_column][vc_column width=\"1/3\"][gap height=\"30\"][animation animation=\"fadeInRight\"][service style=\"style3\" title=\"100% Translatable\" icon=\"globe\" icon_color=\"#cccccc\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem ut perspiciatis unde ...[/service][/animation][gap][animation animation=\"fadeInRight\"][service style=\"style3\" title=\"Free Support 24/7\" icon=\"support\" icon_color=\"#cccccc\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem ut perspiciatis unde ...[/service][/animation][gap][animation animation=\"fadeInRight\"][service style=\"style3\" title=\"Parallax Sections\" icon=\"bars\" icon_color=\"#dadada\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem ut perspiciatis unde ...[/service][/animation][/vc_column][/vc_row][vc_row el_class=\"tac\"][vc_column][wrap bg_color=\"#f6f6f6\" image=\"84\" parallax=\"yes\" ratio=\".6\"][gap height=\"150\"][vc_column_text]\n

Love Smartco ?

\n

Create your new website with powerful drag and drop theme

\n[/vc_column_text][animation animation=\"pulse\" duration=\"3\" loop=\"yes\"][button text=\"Buy it Now!\" text_color=\"#ffffff\" button_default_color=\"customcolor\" button_custom_color=\"#ffffff\" icon=\"shopping-cart\" icon_color=\"#ffffff\" size=\"medium\" url=\"http://demo.themetor.com/smartco.html\"][/animation][gap height=\"150\"][/wrap][gap height=\"35\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][title icon=\"newspaper-o\" icon_color=\"#82d10c\" sub_title=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem \"] Latest News [/title][newslist items=\"2\" more=\"true\" moretext=\"View All\" morelink=\"http://www.themetor.com\"][/vc_column][vc_column width=\"1/2\"][title icon=\"line-chart\" icon_color=\"#82d10c\" sub_title=\" Sed ut perspiciatis unde omnis iste natus error sit voluptatem \"]Our Skills [/title][vc_row_inner][vc_column_inner width=\"1/2\"][progress_bar title=\"Development\" percent=\"71\" color=\"#aaaaaa\"][gap height=\"10\"][progress_bar title=\"Photography\" percent=\"92\" color=\"#aaaaaa\"][/vc_column_inner][vc_column_inner width=\"1/2\"][progress_bar title=\"Web Design\" percent=\"82\" color=\"#aaaaaa\"][gap height=\"10\"][progress_bar title=\"HTML & CSS\" percent=\"64\" color=\"#aaaaaa\"][/vc_column_inner][/vc_row_inner][gap height=\"25\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_pie value=\"92\" color=\"btn-inverse\" title=\"Development\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_pie value=\"73\" color=\"btn-inverse\" title=\"PHP\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_pie value=\"31\" color=\"btn-inverse\" title=\"Photography\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_pie value=\"68\" color=\"btn-inverse\" title=\"Support\"][/vc_column_inner][/vc_row_inner][gap height=\"25\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1432334714424{margin-bottom: 0px !important;}\"][vc_column][wrap bg_color=\"#f6f6f6\" image=\"91\" parallax=\"yes\" ratio=\"0.5\" css=\".vc_custom_1432334403173{margin-bottom: 0px !important;background-color: #f6f6f6 !important;}\"][gap height=\"25\"][animation animation=\"fadeInUp\" delay=\"200\"][testimonial items=\"5\" transition=\"fade\"][/animation][gap height=\"40\"][wrapin bg_color=\"rgba(255,255,255,0.12)\"][clients columns=\"6\" category=\"clients\"][/wrapin][/wrap][/vc_column][/vc_row]","Static Featured Image","","publish","closed","closed","","static-featured-image","","","2016-09-26 22:13:56","2016-09-26 22:13:56","","0","http://demo.themetor.com/bizpro/?page_id=905","0","page","","0"); INSERT INTO `wp_posts` VALUES("907","1","2016-09-26 22:14:15","2016-09-26 22:14:15","[one_fourth position=\"first\"]\n\n[liststyle icon=\"check\"]\n[item] item 1 [/item]\n[item]Item 2[/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[one_fourth position=\"middle\"]\n\n[liststyle icon=\"leaf\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[one_fourth position=\"middle\"]\n\n[liststyle icon=\"flag\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[one_fourth position=\"middle\"]\n\n[liststyle icon=\"eye\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[gap height=\"30\"]\n\n[one_fourth position=\"first\"]\n\n[liststyle icon=\"check-circle\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[one_fourth position=\"middle\"]\n\n[liststyle icon=\"heart\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[one_fourth position=\"middle\"]\n\n[liststyle icon=\"info\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[one_fourth position=\"middle\"]\n\n[liststyle icon=\"check-square\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[gap height=\"30\"]\n\n[one_fourth position=\"first\"]\n\n[liststyle icon=\"question\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[one_fourth position=\"middle\"]\n\n[liststyle icon=\"angle-right\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[one_fourth position=\"middle\"]\n\n[liststyle icon=\"star\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[one_fourth position=\"middle\"]\n\n[liststyle icon=\"caret-right\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[gap height=\"30\"]\n\n[one_fourth position=\"first\"]\n\n[liststyle icon=\"hand-o-right\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[one_fourth position=\"middle\"]\n\n[liststyle icon=\"long-arrow-right\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[one_fourth position=\"middle\"]\n\n[liststyle icon=\"chevron-right\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]\n\n[one_fourth position=\"middle\"]\n\n[liststyle icon=\"check\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[/one_fourth]","Styled Lists","","publish","closed","closed","","styled-lists","","","2016-09-26 22:14:15","2016-09-26 22:14:15","","0","http://demo.themetor.com/bizpro/?page_id=907","0","page","","0"); INSERT INTO `wp_posts` VALUES("909","1","2016-09-26 22:14:33","2016-09-26 22:14:33","[table]\n\n\n \n \n \n \n \n \n \n \n\n\n \n \t\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n\n
HTML FilesPHP FilesPSD FilesAnimation VersionMore Colors
Basic Package
Developer Package
Pro Package
Premium Package
Footer Note: Lorem ipsum dolor sit amet
\n[/table]\n[gap height=\"50\"]","Table","","publish","closed","closed","","table","","","2016-09-26 22:14:33","2016-09-26 22:14:33","","0","http://demo.themetor.com/bizpro/?page_id=909","0","page","","0"); INSERT INTO `wp_posts` VALUES("911","1","2016-09-26 22:14:48","2016-09-26 22:14:48","[vc_row][vc_column width=\"2/3\"][vc_column_text][tabs] [tab title=\"Tab1\" icon=\"heart\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est labo uis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum [/tab] [tab title=\"tab2\" ] Lorem ipsum dolour sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum [/tab] [tab title=\"Your Title\" icon=\"folder-open\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum [/tab] [/tabs][/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text][tabs] [tab title=\"Tab Title\" icon=\"home\"] Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum [/tab] [tab title=\"Magic\" icon=\"magic\" ] Lorem ipsum dolour sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum [/tab] [tab title=\"Your Title\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum [/tab] [/tabs][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][gap][title header=\"h3\" align=\"center\"]Step by Step Vertical Tour[/title][gap height=\"20\"][vc_tour interval=\"0\"][vc_tab title=\"Step 1: Sign Up\" tab_id=\"1409064533-1-28\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/vc_column_text][/vc_tab][vc_tab title=\"Step 2: Confirmation\" tab_id=\"1409064533-2-38\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/vc_column_text][/vc_tab][vc_tab tab_id=\"d87bfedc-ac2c-2\" title=\"Step 3: Payment\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/vc_column_text][/vc_tab][vc_tab tab_id=\"0bfb4cf3-9f41-3\" title=\"Last Step: Download \"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][gap][/vc_column][/vc_row]","Tabs","","publish","closed","closed","","tabs","","","2016-09-26 22:14:48","2016-09-26 22:14:48","","0","http://demo.themetor.com/bizpro/?page_id=911","0","page","","0"); INSERT INTO `wp_posts` VALUES("913","1","2016-09-26 22:15:19","2016-09-26 22:15:19","[vc_row][vc_column][title align=\"center\"]Full Width[/title][testimonial style=\"light\" bg_color=\"#099aad\" items=\"5\" title=\"\" transition=\"slide\"][gap height=\"70\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][testimonial items=\"3\" title=\"test\" transition=\"fade\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1434498995555{background-color: #000000 !important;}\"][vc_column_inner][testimonial style=\"light\" items=\"3\" title=\"\" transition=\"slide\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1475028489888{background-color: #333333 !important;}\"][vc_column][testimonial style=\"light\" items=\"4\" title=\"\" transition=\"slide\"][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][testimonial items=\"2\" title=\"test\" transition=\"fade\"][gap height=\"70\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row]","Testimonials","","publish","closed","closed","","testimonials","","","2016-09-26 22:15:19","2016-09-26 22:15:19","","0","http://demo.themetor.com/bizpro/?page_id=913","0","page","","0"); INSERT INTO `wp_posts` VALUES("915","1","2016-09-26 22:15:32","2016-09-26 22:15:32","[vc_row][vc_column][toggle title=\"Lorem ipsum dolor sit amet enim ad minim veniam?\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/toggle][gap height=\"40\"][toggle open=\"yes\" title=\"This is an open Toggle\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/toggle][gap height=\"40\"][toggle title=\"veniam, quis nostrud exercitation ullamco laboris:\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/toggle][gap height=\"40\"][toggle open=\"yes\" title=\"Deserunt mollit anim id est laborum\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/toggle][gap][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][toggle title=\"Lorem ipsum dolor sit amet enim ad minim veniam?\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/toggle][gap height=\"40\"][toggle open=\"yes\" title=\"This is an open Toggle\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/toggle][gap height=\"40\"][toggle title=\"Lorem ipsum dolor sit amet enim ad minim veniam?\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/toggle][gap height=\"40\"][/vc_column][vc_column width=\"1/3\"][toggle open=\"yes\" title=\"veniam, quis nostrud exercitation\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/toggle][toggle title=\"Deserunt mollit anim id est laborum\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum[/toggle][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][/vc_column][/vc_row]","Toggle","","publish","closed","closed","","toggle","","","2016-09-26 22:15:32","2016-09-26 22:15:32","","0","http://demo.themetor.com/bizpro/?page_id=915","0","page","","0"); INSERT INTO `wp_posts` VALUES("917","1","2016-09-26 22:15:46","2016-09-26 22:15:46","[vc_row][vc_column][title align=\"center\"] Columns [/title][divider margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][title]1/2[/title][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laboru[/vc_column_text][/vc_column][vc_column width=\"1/2\"][title]1/2[/title][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laboru[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][title]1/3[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat

\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][title]1/3[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat

\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][title]1/3[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat

\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][title]1/4[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in

\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][title]1/4[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in

\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][title]1/4[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in

\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][title]1/4[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in

\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][title]1/6[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][title]1/6[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][title]1/6[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][title]1/6[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][title]1/6[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][title]1/6[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][title]1/4[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in

\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][title]1/2[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris dolore dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut

\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][title]1/4[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in

\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][title]5/6[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in

\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][title]1/6[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, conse ctetur adipi sicing elit, sed do eius mod te mpor incid idunt ut labore et dolore

\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][title]1/6[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, conse ctetur adipi sicing elit, sed do eius mod te mpor incid idunt ut labore et dolore

\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][title]1/3[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in

\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][title]1/2[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in

\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][title]1/6[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, conse ctetur adipi sicing elit, sed do eius mod te mpor incid idunt ut labore et dolore

\n[/vc_column_text][/vc_column][vc_column width=\"2/3\"][title]4/6[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in

\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][title]1/6[/title][vc_column_text]\n

Lorem ipsum dolor sit amet, conse ctetur adipi sicing elit, sed do eius mod te mpor incid idunt ut labore et dolore

\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][gap][title header=\"h1\"]Heading[/title][divider margin_bottom=\"30px\"][vc_column_text]\n

Title H1

\n

Title H2

\n

Title H3

\n

Title H4

\n
Title H5
\n
Title H6
\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][gap][title header=\"h1\"]Tooltips[/title][divider margin_bottom=\"30px\"][vc_column_text]\n\n[tooltip placement=\"lefttip\" text=\"Left Tooltip\"] LEFT [/tooltip] - [tooltip placement=\"toptip\" text=\"Top Tooltip\"] TOP [/tooltip] - [tooltip placement=\"bottomtip\" text=\"Bottom Tooltip\"] BOTTOM [/tooltip] - [tooltip placement=\"righttip\" text=\"Right Tooltip\"] RIGHT [/tooltip]\n\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][title align=\"center\"]Blockquotes[/title][divider margin_bottom=\"50px\"][vc_column_text]\n\n[quote style=\"full\"] Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words. [/quote]\n\n[/vc_column_text][vc_column_text]\n\n[quote style=\"left\"] Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words. [/quote]\n\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][gap][title]Dropcap[/title][divider margin_bottom=\"30px\"][vc_column_text]\n\n[dropcap radius=\"5\" style=\"-border\"] M [/dropcap]orem ipsum ex vix illud nonummy, novum tation et his. At vix scriptaset patrioque scribentur, at pro fugit erts verterem molestiae Lorem ipsum ex vix illud nonummy, novum tation et Quisque sed velit aliquam diam pulvinar placerat. Sed vitae magna lectus. Mauris quam libero, pellentesque quis tristique eu, accumsan eu massa. Sed sed nulla nec ligula bibendum posuere vitae in risus. Pharetra vehicula volutpat sit amet, ornare vitae purus. Quisque sed velit aliquam diam pulvinar placerat. Sed vitae magna lectus. Mauris quam libero, pellentesque quis tristique eu, accumsan eu massa. Sed sed nulla nec ligula bibendum posuere vitae in risus. Pharetra vehicula volutpat sit amet, ornare vitae purus.\n\n[/vc_column_text][vc_column_text]\n\n[dropcap radius=\"5\" style=\"\"] D [/dropcap]aus ipsum ex vix illud nonummy, novum tation et his. At vix scriptaset patrioque scribentur, at pro fugit erts verterem molestiae Lorem ipsum ex vix illud nonummy, novum tation et Quisque sed velit aliquam diam pulvinar placerat. Sed vitae magna lectus. Mauris quam libero, pellentesque quis tristique eu, accumsan eu massa. Sed sed nulla nec ligula bibendum posuere vitae in risus. Pharetra vehicula volutpat sit amet, ornare vitae purus. Quisque sed velit aliquam diam pulvinar placerat. Sed vitae magna lectus. Mauris quam libero, pellentesque quis tristique eu, accumsan eu massa. Sed sed nulla nec ligula bibendum posuere vitae in risus. Pharetra vehicula volutpat sit amet, ornare vitae purus.\n\n[/vc_column_text][vc_column_text]\n\n[dropcap radius=\"5\" style=\"-txt\" color=\"#777\"] L [/dropcap]orem ipsum ex vix illud nonummy, novum tation et his. At vix scriptaset patrioque scribentur, at pro fugit erts verterem molestiae Lorem ipsum ex vix illud nonummy, novum tation et Quisque sed velit aliquam diam pulvinar placerat. Sed vitae magna lectus. Mauris quam libero, pellentesque quis tristique eu, accumsan eu massa. Sed sed nulla nec ligula bibendum posuere vitae in risus. Pharetra vehicula volutpat sit amet, ornare vitae purus. Quisque sed velit aliquam diam pulvinar placerat. Sed vitae magna lectus. Mauris quam libero, pellentesque quis tristique eu, accumsan eu massa. Sed sed nulla nec ligula bibendum posuere vitae in risus. Pharetra vehicula volutpat sit amet, ornare vitae purus.\n\n[/vc_column_text][vc_column_text]\n\n[dropcap radius=\"circle\" style=\"\" color=\"#FFF\" bg_color=\"#1ABC9C\" border_color=\"#1ABC9C\"] S [/dropcap] orem ipsum ex vix illud nonummy, novum tation et his. At vix scriptaset patrioque scribentur, at pro fugit erts verterem molestiae Lorem ipsum ex vix illud nonummy, novum tation et Quisque sed velit aliquam diam pulvinar placerat. Sed vitae magna lectus. Mauris quam libero, pellentesque quis tristique eu, accumsan eu massa. Sed sed nulla nec ligula bibendum posuere vitae in risus. Pharetra vehicula volutpat sit amet, ornare vitae purus. Quisque sed velit aliquam diam pulvinar placerat. Sed vitae magna lectus. Mauris quam libero, pellentesque quis tristique eu, accumsan eu massa. Sed sed nulla nec ligula bibendum posuere vitae in risus. Pharetra vehicula volutpat sit amet, ornare vitae purus.\n\n[/vc_column_text][vc_column_text]\n\n[dropcap radius=\"circle\" style=\"-border\" color=\"#1ABC9C\" border_color=\"#1ABC9C\"] R [/dropcap] orem ipsum ex vix illud nonummy, novum tation et his. At vix scriptaset patrioque scribentur, at pro fugit erts verterem molestiae Lorem ipsum ex vix illud nonummy, novum tation et Quisque sed velit aliquam diam pulvinar placerat. Sed vitae magna lectus. Mauris quam libero, pellentesque quis tristique eu, accumsan eu massa. Sed sed nulla nec ligula bibendum posuere vitae in risus. Pharetra vehicula volutpat sit amet, ornare vitae purus. Quisque sed velit aliquam diam pulvinar placerat. Sed vitae magna lectus. Mauris quam libero, pellentesque quis tristique eu, accumsan eu massa. Sed sed nulla nec ligula bibendum posuere vitae in risus. Pharetra vehicula volutpat sit amet, ornare vitae purus.\n\n[/vc_column_text][vc_column_text]\n\n[dropcap radius=\"0\" style=\"\" color=\"#FFF\" bg_color=\"#cc0000\" ] A[/dropcap] orem ipsum ex vix illud nonummy, novum tation et his. At vix scriptaset patrioque scribentur, at pro fugit erts verterem molestiae Lorem ipsum ex vix illud nonummy, novum tation et Quisque sed velit aliquam diam pulvinar placerat. Sed vitae magna lectus. Mauris quam libero, pellentesque quis tristique eu, accumsan eu massa. Sed sed nulla nec ligula bibendum posuere vitae in risus. Pharetra vehicula volutpat sit amet, ornare vitae purus. Quisque sed velit aliquam diam pulvinar placerat. Sed vitae magna lectus. Mauris quam libero, pellentesque quis tristique eu, accumsan eu massa. Sed sed nulla nec ligula bibendum posuere vitae in risus. Pharetra vehicula volutpat sit amet, ornare vitae purus.\n\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][title align=\"center\"]Highlights[/title][divider margin_bottom=\"30px\"][vc_column_text]\n\nQuisque sed velit aliquam diam pulvinar placerat. Sed vitae magna lectus. [highlight background=\"#272727\" textcolor=\"#FFF\"] Mauris quam libero [/highlight], pellentesque quis tristique eu, accumsan eu massa. Vehicula volutpat sit amet, ornare vitae purus. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, sed quia consequuntur [highlight background=\"#FD7F67\"] magni dolores eos qui ratione [/highlight] voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi. totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi.\n\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][title align=\"center\"]Dividers[/title][divider style=\"icon\" color=\"#dbdbdb\" icon_color=\"#e8a200\" width=\"60%\" margin_bottom=\"50px\" icon=\"fa fa-bolt\"][divider color=\"#afafaf\"][divider color=\"#dd9933\" width=\"60%\"][divider color=\"#e8e8e8\" width=\"70%\"][divider style=\"dotted\" color=\"#848484\" size=\"2px\"][divider style=\"dotted\" color=\"#81d742\" size=\"2px\"][divider style=\"double\" color=\"#1e73be\" size=\"3px\"][divider style=\"grad\"][divider style=\"icon\" color=\"#aaaaaa\" icon_color=\"#bc0000\" margin_bottom=\"60px\" icon=\"fa fa-heart\"][/vc_column][/vc_row][vc_row][vc_column][gap][title align=\"center\"]Styled List[/title][divider margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text][liststyle icon=\"check\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[liststyle icon=\"leaf\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[liststyle icon=\"flag\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[liststyle icon=\"eye\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text][liststyle icon=\"check-circle\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[liststyle icon=\"heart\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[liststyle icon=\"info\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[liststyle icon=\"check-square\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text][liststyle icon=\"question\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[liststyle icon=\"angle-right\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[liststyle icon=\"star\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[liststyle icon=\"caret-right\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle][/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text][liststyle icon=\"hand-o-right\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[liststyle icon=\"long-arrow-right\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[liststyle icon=\"chevron-right\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle]\n\n[liststyle icon=\"check\"]\n[item] item 1 [/item]\n[item] item 2 [/item]\n[item] item 3 [/item]\n[/liststyle][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][gap][title]Google Fonts[/title][divider margin_bottom=\"30px\"][gfont font=\"Codystar\" size=\"50px\" color=\"#666666\" margin=\"30px 0\"]Grumpy wizards make toxic brew for the evil Queen and Jack.[/gfont][gfont font=\"Prosto One\" size=\"27px\" color=\"#92c419\" margin=\"40px 0\"]Grumpy wizards make toxic brew for the evil Queen and Jack.[/gfont][gfont font=\"Arizonia\" size=\"42px\" color=\"#3387cf\" margin=\"40px 0\"]Grumpy wizards make toxic brew for the evil Queen and Jack.[/gfont][gfont font=\"Sacramento\" size=\"50px\" color=\"#333333\" margin=\"40px 0\"]Grumpy wizards make toxic brew for the evil Queen and Jack.[/gfont][gfont font=\"Gloria Hallelujah\" size=\"31px\" color=\"#cc0000\" margin=\"40px 0\"]Grumpy wizards make toxic brew for the evil Queen and Jack.[/gfont][gap height=\"70\"][/vc_column][/vc_row]","Typography","","publish","closed","closed","","typography","","","2016-09-26 22:15:46","2016-09-26 22:15:46","","0","http://demo.themetor.com/bizpro/?page_id=917","0","page","","0"); INSERT INTO `wp_posts` VALUES("919","1","2016-09-26 22:16:00","2016-09-26 22:16:00","[vc_row][vc_column width=\"1/2\"][title icon=\"youtube-play\" icon_color=\"#bc0000\"]YouTube[/title][vc_column_text][/vc_column_text][/vc_column][vc_column width=\"1/2\"][title icon=\"play-sign\" icon_color=\"#bc0000\"]Vimeo[/title][vc_column_text][/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" video_bg=\"yes\"][vc_column][gap height=\"250\"][vc_column_text]\n

Video Background

\n

You can add your video as background video in this section.

\n[/vc_column_text][gap height=\"250\"][/vc_column][/vc_row]","Video","","publish","closed","closed","","video","","","2016-09-26 22:16:00","2016-09-26 22:16:00","","0","http://demo.themetor.com/bizpro/?page_id=919","0","page","","0"); INSERT INTO `wp_posts` VALUES("949","1","2016-09-26 22:40:14","2016-09-26 22:40:14","","Shop","","publish","closed","closed","","shop","","","2016-09-26 22:40:14","2016-09-26 22:40:14","","0","http://demo.themetor.com/bizpro/shop/","0","page","","0"); INSERT INTO `wp_posts` VALUES("950","1","2016-09-26 22:40:14","2016-09-26 22:40:14","[woocommerce_cart]","Cart","","publish","closed","closed","","cart","","","2016-09-26 22:40:14","2016-09-26 22:40:14","","0","http://demo.themetor.com/bizpro/cart/","0","page","","0"); INSERT INTO `wp_posts` VALUES("951","1","2016-09-26 22:40:15","2016-09-26 22:40:15","[woocommerce_checkout]","Checkout","","publish","closed","closed","","checkout","","","2016-09-26 22:40:15","2016-09-26 22:40:15","","0","http://demo.themetor.com/bizpro/checkout/","0","page","","0"); INSERT INTO `wp_posts` VALUES("952","1","2016-09-26 22:40:15","2016-09-26 22:40:15","[woocommerce_my_account]","My Account","","publish","closed","closed","","my-account","","","2016-09-26 22:40:15","2016-09-26 22:40:15","","0","http://demo.themetor.com/bizpro/my-account/","0","page","","0"); INSERT INTO `wp_posts` VALUES("1185","1","2016-09-28 16:16:06","2016-09-28 16:16:06","Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum at, laoreet mattis, massa. Sed eleifend nonummy diam. Praesent mauris ante, elementum et, bibendum at, posuere sit amet, nibh. Duis tincidunt lectus quis dui viverra vestibulum. Suspendisse vulputate aliquam dui. Nulla elementum dui ut augue. Aliquam vehicula mi at mauris. Maecenas placerat, nisl at consequat rhoncus, sem nunc gravida justo, quis eleifend arcu velit quis lacus. Morbi magna magna, tincidunt a, mattis non, imperdiet vitae, tellus. Sed odio est, auctor ac, sollicitudin in, consequat vitae, orci. Fusce id felis. Vivamus sollicitudin metus eget eros.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In posuere felis nec tortor. Pellentesque faucibus. Ut accumsan ultricies elit. Maecenas at justo id velit placerat molestie. Donec dictum lectus non odio. Cras a ante vitae enim iaculis aliquam. Mauris nunc quam, venenatis nec, euismod sit amet, egestas placerat, est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras id elit. Integer quis urna. Ut ante enim, dapibus malesuada, fringilla eu, condimentum quis, tellus. Aenean porttitor eros vel dolor. Donec convallis pede venenatis nibh. Duis quam. Nam eget lacus. Aliquam erat volutpat. Quisque dignissim congue leo.\n\nMauris vel lacus vitae felis vestibulum volutpat. Etiam est nunc, venenatis in, tristique eu, imperdiet ac, nisl. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In iaculis facilisis massa. Etiam eu urna. Sed porta. Suspendisse quam leo, molestie sed, luctus quis, feugiat in, pede. Fusce tellus. Sed metus augue, convallis et, vehicula ut, pulvinar eu, ante. Integer orci tellus, tristique vitae, consequat nec, porta vel, lectus. Nulla sit amet diam. Duis non nunc. Nulla rhoncus dictum metus. Curabitur tristique mi condimentum orci. Phasellus pellentesque aliquam enim. Proin dui lectus, cursus eu, mattis laoreet, viverra sit amet, quam. Curabitur vel dolor ultrices ipsum dictum tristique. Praesent vitae lacus. Ut velit enim, vestibulum non, fermentum nec, hendrerit quis, leo. Pellentesque rutrum malesuada neque.\n\n \n\n ","Nivoslider","","publish","closed","closed","","nivoslider","","","2016-09-28 16:16:06","2016-09-28 16:16:06","","0","http://demo.themetor.com/bizpro/?page_id=1185","0","page","","0"); INSERT INTO `wp_posts` VALUES("1196","1","2016-09-28 16:17:29","2016-09-28 16:17:29","Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum at, laoreet mattis, massa. Sed eleifend nonummy diam. Praesent mauris ante, elementum et, bibendum at, posuere sit amet, nibh. Duis tincidunt lectus quis dui viverra vestibulum. Suspendisse vulputate aliquam dui. Nulla elementum dui ut augue. Aliquam vehicula mi at mauris. Maecenas placerat, nisl at consequat rhoncus, sem nunc gravida justo, quis eleifend arcu velit quis lacus. Morbi magna magna, tincidunt a, mattis non, imperdiet vitae, tellus. Sed odio est, auctor ac, sollicitudin in, consequat vitae, orci. Fusce id felis. Vivamus sollicitudin metus eget eros.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In posuere felis nec tortor. Pellentesque faucibus. Ut accumsan ultricies elit. Maecenas at justo id velit placerat molestie. Donec dictum lectus non odio. Cras a ante vitae enim iaculis aliquam. Mauris nunc quam, venenatis nec, euismod sit amet, egestas placerat, est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras id elit. Integer quis urna. Ut ante enim, dapibus malesuada, fringilla eu, condimentum quis, tellus. Aenean porttitor eros vel dolor. Donec convallis pede venenatis nibh. Duis quam. Nam eget lacus. Aliquam erat volutpat. Quisque dignissim congue leo.\n\nMauris vel lacus vitae felis vestibulum volutpat. Etiam est nunc, venenatis in, tristique eu, imperdiet ac, nisl. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In iaculis facilisis massa. Etiam eu urna. Sed porta. Suspendisse quam leo, molestie sed, luctus quis, feugiat in, pede. Fusce tellus. Sed metus augue, convallis et, vehicula ut, pulvinar eu, ante. Integer orci tellus, tristique vitae, consequat nec, porta vel, lectus. Nulla sit amet diam. Duis non nunc. Nulla rhoncus dictum metus. Curabitur tristique mi condimentum orci. Phasellus pellentesque aliquam enim. Proin dui lectus, cursus eu, mattis laoreet, viverra sit amet, quam. Curabitur vel dolor ultrices ipsum dictum tristique. Praesent vitae lacus. Ut velit enim, vestibulum non, fermentum nec, hendrerit quis, leo. Pellentesque rutrum malesuada neque.\n\n \n\n ","Flex Slider","","publish","closed","closed","","flex-slider","","","2016-09-28 16:17:29","2016-09-28 16:17:29","","0","http://demo.themetor.com/bizpro/?page_id=1196","0","page","","0"); INSERT INTO `wp_posts` VALUES("2895","1","2016-12-16 01:53:31","2016-12-15 22:53:31","هنا تشاهد مثال على صفحة. الصفحة تختلف عن المقالة لأنها تبقى ثابتة وتظهر عادةً في أغلب القوالب ضمن قوائم التصفّح. مفضّل أن تبدأ بإنشاء صفحة جديدة تسميها مثلاً (سيرة ذاتية) أو (من نحن) بحيث تظهر فيها معلومات عامة عن مالك الموقع. لنشاهد مثال على ذلك:\n\n
مرحباً! اسمي محمد. وُلدت في فلسطين عام 1980م وأعمل كمبرمج في إحدى الجامعات الرسمية في المملكة العربية السعودية. أقضي يومياً ساعات طويلة أمام شاشة الحاسوب. أحب الشعر وأهوى الخواطر ولدي قطة صغيرة أسميتها \"ميشو\" ... الخ
\n \nمثال آخر:\n \n
شركة BVB تأسسّت عام 1909م وهي شركة عالمية متخصّصة بإنتاج المخصبات الزراعية والأسمدة العضوية والمعدنية. مقّر الشركة في ألمانيا ويعمل لدينا أكثر من 88000 موظّف. تتمركز نشاطات الشركة في منطقة وسط أوروبا ... الخ
\n \nكمستخدم جديد لنظام ووردبريس عليك التوجّه إلى لوحة التحكم لحذف هذه الصفحة وإنشاء صفحة أو صفحات جديدة تكتب فيها ما تراه مناسباً لك. نتمنى لك التوفيق!","مثال على صفحة","","publish","closed","open","","%d9%85%d8%ab%d8%a7%d9%84-%d8%b9%d9%84%d9%89-%d8%b5%d9%81%d8%ad%d8%a9","","","2016-12-16 01:53:31","2016-12-15 22:53:31","","0","http://atheltree.com/?page_id=2","0","page","","0"); INSERT INTO `wp_posts` VALUES("419","1","2016-09-08 08:54:40","2016-09-08 08:54:40","Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum at, laoreet mattis, massa. Sed eleifend nonummy diam. Praesent mauris ante, elementum et, bibendum at, posuere sit amet, nibh. Duis tincidunt lectus quis dui viverra vestibulum. Suspendisse vulputate aliquam dui. Nulla elementum dui ut augue. Aliquam vehicula mi at mauris. Maecenas placerat, nisl at consequat rhoncus, sem nunc gravida justo, quis eleifend arcu velit quis lacus. Morbi magna magna, tincidunt a, mattis non, imperdiet vitae, tellus. Sed odio est, auctor ac, sollicitudin in, consequat vitae, orci. Fusce id felis. Vivamus sollicitudin metus eget eros.","pharma Consultation","","publish","closed","closed","","consulting-project","","","2016-09-08 08:54:40","2016-09-08 08:54:40","","0","http://demo.themetor.com/bizpro/?post_type=portfolio&p=419","0","portfolio","","0"); INSERT INTO `wp_posts` VALUES("420","1","2016-09-08 08:55:40","2016-09-08 08:55:40","Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum at, laoreet mattis, massa. Sed eleifend nonummy diam. Praesent mauris ante, elementum et, bibendum at, posuere sit amet, nibh. Duis tincidunt lectus quis dui viverra vestibulum. Suspendisse vulputate aliquam dui. Nulla elementum dui ut augue.\n\nAliquam vehicula mi at mauris. Maecenas placerat, nisl at consequat rhoncus, sem nunc gravida justo, quis eleifend arcu velit quis lacus. Morbi magna magna, tincidunt a, mattis non, imperdiet vitae, tellus. Sed odio est, auctor ac, sollicitudin in, consequat vitae, orci. Fusce id felis. Vivamus sollicitudin metus eget eros.\n\n ","Pharma Group","","publish","open","closed","","financing","","","2016-09-08 08:55:40","2016-09-08 08:55:40","","0","http://demo.themetor.com/bizpro/?post_type=portfolio&p=420","1","portfolio","","0"); INSERT INTO `wp_posts` VALUES("421","1","2016-09-08 08:57:24","2016-09-08 08:57:24","Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In posuere felis nec tortor. Pellentesque faucibus. Ut accumsan ultricies elit. Maecenas at justo id velit placerat molestie. Donec dictum lectus non odio. Cras a ante vitae enim iaculis aliquam. Mauris nunc quam, venenatis nec, euismod sit amet, egestas placerat, est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras id elit. Integer quis urna. Ut ante enim, dapibus malesuada, fringilla eu, condimentum quis, tellus. Aenean porttitor eros vel dolor. Donec convallis pede venenatis nibh. Duis quam. Nam eget lacus. Aliquam erat volutpat. Quisque dignissim congue leo.","Pharma Group Logo","","publish","open","closed","","industrial-analysis","","","2016-09-08 08:57:24","2016-09-08 08:57:24","","0","http://demo.themetor.com/bizpro/?post_type=portfolio&p=421","0","portfolio","","0"); INSERT INTO `wp_posts` VALUES("422","1","2016-09-08 08:58:37","2016-09-08 08:58:37","Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In posuere felis nec tortor. Pellentesque faucibus. Ut accumsan ultricies elit. Maecenas at justo id velit placerat molestie. Donec dictum lectus non odio. Cras a ante vitae enim iaculis aliquam. Mauris nunc quam, venenatis nec, euismod sit amet, egestas placerat, est.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras id elit. Integer quis urna. Ut ante enim, dapibus malesuada, fringilla eu, condimentum quis, tellus. Aenean porttitor eros vel dolor. Donec convallis pede venenatis nibh. Duis quam. Nam eget lacus. Aliquam erat volutpat. Quisque dignissim congue leo.","Building Structure","","publish","open","closed","","building-structure","","","2016-09-08 08:58:37","2016-09-08 08:58:37","","0","http://demo.themetor.com/bizpro/?post_type=portfolio&p=422","0","portfolio","","0"); INSERT INTO `wp_posts` VALUES("423","1","2016-09-08 09:00:40","2016-09-08 09:00:40","Mauris vel lacus vitae felis vestibulum volutpat. Etiam est nunc, venenatis in, tristique eu, imperdiet ac, nisl. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In iaculis facilisis massa. Etiam eu urna. Sed porta. Suspendisse quam leo, molestie sed, luctus quis, feugiat in, pede. Fusce tellus. Sed metus augue, convallis et, vehicula ut, pulvinar eu, ante. Integer orci tellus, tristique vitae, consequat nec, porta vel, lectus. Nulla sit amet diam. Duis non nunc. Nulla rhoncus dictum metus. Curabitur tristique mi condimentum orci. Phasellus pellentesque aliquam enim. Proin dui lectus, cursus eu, mattis laoreet, viverra sit amet, quam. Curabitur vel dolor ultrices ipsum dictum tristique. Praesent vitae lacus. Ut velit enim, vestibulum non, fermentum nec, hendrerit quis, leo. Pellentesque rutrum malesuada neque.","Aloma-Alfaeqa","","publish","open","closed","","manufacturing-process-management","","","2016-09-08 09:00:40","2016-09-08 09:00:40","","0","http://demo.themetor.com/bizpro/?post_type=portfolio&p=423","0","portfolio","","0"); INSERT INTO `wp_posts` VALUES("424","1","2016-09-08 09:02:09","2016-09-08 09:02:09","Mauris vel lacus vitae felis vestibulum volutpat. Etiam est nunc, venenatis in, tristique eu, imperdiet ac, nisl. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In iaculis facilisis massa. Etiam eu urna. Sed porta. Suspendisse quam leo, molestie sed, luctus quis, feugiat in, pede. Fusce tellus. Sed metus augue, convallis et, vehicula ut, pulvinar eu, ante.\n\nInteger orci tellus, tristique vitae, consequat nec, porta vel, lectus. Nulla sit amet diam. Duis non nunc. Nulla rhoncus dictum metus. Curabitur tristique mi condimentum orci.\n\nPhasellus pellentesque aliquam enim. Proin dui lectus, cursus eu, mattis laoreet, viverra sit amet, quam. Curabitur vel dolor ultrices ipsum dictum tristique. Praesent vitae lacus. Ut velit enim, vestibulum non, fermentum nec, hendrerit quis, leo. Pellentesque rutrum malesuada neque.","Project Title","","publish","open","closed","","project-title","","","2016-09-08 09:02:09","2016-09-08 09:02:09","","0","http://demo.themetor.com/bizpro/?post_type=portfolio&p=424","0","portfolio","","0"); INSERT INTO `wp_posts` VALUES("425","1","2016-09-08 09:03:12","2016-09-08 09:03:12","Nunc tempus felis vitae urna. Vivamus porttitor, neque at volutpat rutrum, purus nisi eleifend libero, a tempus libero lectus feugiat felis. Morbi diam mauris, viverra in, gravida eu, mattis in, ante. Morbi eget arcu. Morbi porta, libero id ullamcorper nonummy, nibh ligula pulvinar metus, eget consectetuer augue nisi quis lacus. Ut ac mi quis lacus mollis aliquam. Curabitur iaculis tempus eros. Curabitur vel mi sit amet magna malesuada ultrices. Ut nisi erat, fermentum vel, congue id, euismod in, elit. Fusce ultricies, orci ac feugiat suscipit, leo massa sodales velit, et scelerisque mi tortor at ipsum. Proin orci odio, commodo ac, gravida non, tristique vel, tellus. Pellentesque nibh libero, ultricies eu, sagittis non, mollis sed, justo. Praesent metus ipsum, pulvinar pulvinar, porta id, fringilla at, est.","More Solution","","publish","open","closed","","business-finance","","","2016-09-08 09:03:12","2016-09-08 09:03:12","","0","http://demo.themetor.com/bizpro/?post_type=portfolio&p=425","0","portfolio","","0"); INSERT INTO `wp_posts` VALUES("426","1","2016-09-08 09:04:25","2016-09-08 09:04:25","Nunc tempus felis vitae urna. Vivamus porttitor, neque at volutpat rutrum, purus nisi eleifend libero, a tempus libero lectus feugiat felis. Morbi diam mauris, viverra in, gravida eu, mattis in, ante. Morbi eget arcu. Morbi porta, libero id ullamcorper nonummy, nibh ligula pulvinar metus, eget consectetuer augue nisi quis lacus. Ut ac mi quis lacus mollis aliquam. Curabitur iaculis tempus eros. Curabitur vel mi sit amet magna malesuada ultrices. Ut nisi erat, fermentum vel, congue id, euismod in, elit. Fusce ultricies, orci ac feugiat suscipit, leo massa sodales velit, et scelerisque mi tortor at ipsum. Proin orci odio, commodo ac, gravida non, tristique vel, tellus. Pellentesque nibh libero, ultricies eu, sagittis non, mollis sed, justo. Praesent metus ipsum, pulvinar pulvinar, porta id, fringilla at, est.","Saudi Antiserum","","publish","open","closed","","urban-management","","","2016-09-08 09:04:25","2016-09-08 09:04:25","","0","http://demo.themetor.com/bizpro/?post_type=portfolio&p=426","0","portfolio","","0"); INSERT INTO `wp_posts` VALUES("555","1","2016-09-20 13:54:23","2016-09-20 13:54:23","Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum at, laoreet mattis, massa. Sed eleifend nonummy diam. Praesent mauris ante, elementum et, bibendum at, posuere sit amet, nibh. Duis tincidunt lectus quis dui viverra vestibulum. Suspendisse vulputate aliquam dui. Nulla elementum dui ut augue. Aliquam vehicula mi at mauris. Maecenas placerat, nisl at consequat rhoncus, sem nunc gravida justo, quis eleifend arcu velit quis lacus. Morbi magna magna, tincidunt a, mattis non, imperdiet vitae, tellus. Sed odio est, auctor ac, sollicitudin in, consequat vitae, orci. Fusce id felis. Vivamus sollicitudin metus eget eros.","Standard Post","","publish","open","open","","standard-post","","","2016-09-20 13:54:23","2016-09-20 13:54:23","","0","http://demo.themetor.com/bizpro/?p=555","0","post","","0"); INSERT INTO `wp_posts` VALUES("557","1","2016-09-20 13:56:11","2016-09-20 13:56:11","Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum at, laoreet mattis, massa. Sed eleifend nonummy diam. Praesent mauris ante, elementum et, bibendum at, posuere sit amet, nibh. Duis tincidunt lectus quis dui viverra vestibulum. Suspendisse vulputate aliquam dui.\n\nNulla elementum dui ut augue. Aliquam vehicula mi at mauris. Maecenas placerat, nisl at consequat rhoncus, sem nunc gravida justo, quis eleifend arcu velit quis lacus. Morbi magna magna, tincidunt a, mattis non, imperdiet vitae, tellus. Sed odio est, auctor ac, sollicitudin in, consequat vitae, orci. Fusce id felis. Vivamus sollicitudin metus eget eros.","Gallery post format","","publish","open","open","","gallery-post-format","","","2016-09-20 13:56:11","2016-09-20 13:56:11","","0","http://demo.themetor.com/bizpro/?p=557","0","post","","0"); INSERT INTO `wp_posts` VALUES("559","1","2016-09-20 13:58:16","2016-09-20 13:58:16","
Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning.
","Albert Einstein","","publish","open","open","","albert-einstein","","","2016-09-20 13:58:16","2016-09-20 13:58:16","","0","http://demo.themetor.com/bizpro/?p=559","0","post","","0"); INSERT INTO `wp_posts` VALUES("561","1","2016-09-20 13:59:51","2016-09-20 13:59:51","","Video Post Format","","publish","open","open","","video-post-format","","","2016-09-20 13:59:51","2016-09-20 13:59:51","","0","http://demo.themetor.com/bizpro/?p=561","0","post","","0"); INSERT INTO `wp_posts` VALUES("1198","1","2016-09-28 16:18:26","2016-09-28 16:18:26","Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum at, laoreet mattis, massa. Sed eleifend nonummy diam. Praesent mauris ante, elementum et, bibendum at, posuere sit amet, nibh. Duis tincidunt lectus quis dui viverra vestibulum. Suspendisse vulputate aliquam dui. Nulla elementum dui ut augue. Aliquam vehicula mi at mauris. Maecenas placerat, nisl at consequat rhoncus, sem nunc gravida justo, quis eleifend arcu velit quis lacus. Morbi magna magna, tincidunt a, mattis non, imperdiet vitae, tellus. Sed odio est, auctor ac, sollicitudin in, consequat vitae, orci. Fusce id felis. Vivamus sollicitudin metus eget eros.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In posuere felis nec tortor. Pellentesque faucibus. Ut accumsan ultricies elit. Maecenas at justo id velit placerat molestie. Donec dictum lectus non odio. Cras a ante vitae enim iaculis aliquam. Mauris nunc quam, venenatis nec, euismod sit amet, egestas placerat, est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras id elit. Integer quis urna. Ut ante enim, dapibus malesuada, fringilla eu, condimentum quis, tellus. Aenean porttitor eros vel dolor. Donec convallis pede venenatis nibh. Duis quam. Nam eget lacus. Aliquam erat volutpat. Quisque dignissim congue leo.\n\nMauris vel lacus vitae felis vestibulum volutpat. Etiam est nunc, venenatis in, tristique eu, imperdiet ac, nisl. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In iaculis facilisis massa. Etiam eu urna. Sed porta. Suspendisse quam leo, molestie sed, luctus quis, feugiat in, pede. Fusce tellus. Sed metus augue, convallis et, vehicula ut, pulvinar eu, ante. Integer orci tellus, tristique vitae, consequat nec, porta vel, lectus. Nulla sit amet diam. Duis non nunc. Nulla rhoncus dictum metus. Curabitur tristique mi condimentum orci. Phasellus pellentesque aliquam enim. Proin dui lectus, cursus eu, mattis laoreet, viverra sit amet, quam. Curabitur vel dolor ultrices ipsum dictum tristique. Praesent vitae lacus. Ut velit enim, vestibulum non, fermentum nec, hendrerit quis, leo. Pellentesque rutrum malesuada neque.\n\n \n\n ","3D Slider","","publish","closed","closed","","3d-slider","","","2016-09-28 16:18:26","2016-09-28 16:18:26","","0","http://demo.themetor.com/bizpro/?page_id=1198","0","page","","0"); INSERT INTO `wp_posts` VALUES("1200","1","2016-09-28 16:19:11","2016-09-28 16:19:11","Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum at, laoreet mattis, massa. Sed eleifend nonummy diam. Praesent mauris ante, elementum et, bibendum at, posuere sit amet, nibh. Duis tincidunt lectus quis dui viverra vestibulum. Suspendisse vulputate aliquam dui. Nulla elementum dui ut augue. Aliquam vehicula mi at mauris. Maecenas placerat, nisl at consequat rhoncus, sem nunc gravida justo, quis eleifend arcu velit quis lacus. Morbi magna magna, tincidunt a, mattis non, imperdiet vitae, tellus. Sed odio est, auctor ac, sollicitudin in, consequat vitae, orci. Fusce id felis. Vivamus sollicitudin metus eget eros.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In posuere felis nec tortor. Pellentesque faucibus. Ut accumsan ultricies elit. Maecenas at justo id velit placerat molestie. Donec dictum lectus non odio. Cras a ante vitae enim iaculis aliquam. Mauris nunc quam, venenatis nec, euismod sit amet, egestas placerat, est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras id elit. Integer quis urna. Ut ante enim, dapibus malesuada, fringilla eu, condimentum quis, tellus. Aenean porttitor eros vel dolor. Donec convallis pede venenatis nibh. Duis quam. Nam eget lacus. Aliquam erat volutpat. Quisque dignissim congue leo.\n\nMauris vel lacus vitae felis vestibulum volutpat. Etiam est nunc, venenatis in, tristique eu, imperdiet ac, nisl. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In iaculis facilisis massa. Etiam eu urna. Sed porta. Suspendisse quam leo, molestie sed, luctus quis, feugiat in, pede. Fusce tellus. Sed metus augue, convallis et, vehicula ut, pulvinar eu, ante. Integer orci tellus, tristique vitae, consequat nec, porta vel, lectus. Nulla sit amet diam. Duis non nunc. Nulla rhoncus dictum metus. Curabitur tristique mi condimentum orci. Phasellus pellentesque aliquam enim. Proin dui lectus, cursus eu, mattis laoreet, viverra sit amet, quam. Curabitur vel dolor ultrices ipsum dictum tristique. Praesent vitae lacus. Ut velit enim, vestibulum non, fermentum nec, hendrerit quis, leo. Pellentesque rutrum malesuada neque.\n\n \n\n ","Kwicks Slider","","publish","closed","closed","","kwicks-slider","","","2016-09-28 16:19:11","2016-09-28 16:19:11","","0","http://demo.themetor.com/bizpro/?page_id=1200","0","page","","0"); INSERT INTO `wp_posts` VALUES("1202","1","2016-09-28 16:19:47","2016-09-28 16:19:47","Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum at, laoreet mattis, massa. Sed eleifend nonummy diam. Praesent mauris ante, elementum et, bibendum at, posuere sit amet, nibh. Duis tincidunt lectus quis dui viverra vestibulum. Suspendisse vulputate aliquam dui. Nulla elementum dui ut augue. Aliquam vehicula mi at mauris. Maecenas placerat, nisl at consequat rhoncus, sem nunc gravida justo, quis eleifend arcu velit quis lacus. Morbi magna magna, tincidunt a, mattis non, imperdiet vitae, tellus. Sed odio est, auctor ac, sollicitudin in, consequat vitae, orci. Fusce id felis. Vivamus sollicitudin metus eget eros.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In posuere felis nec tortor. Pellentesque faucibus. Ut accumsan ultricies elit. Maecenas at justo id velit placerat molestie. Donec dictum lectus non odio. Cras a ante vitae enim iaculis aliquam. Mauris nunc quam, venenatis nec, euismod sit amet, egestas placerat, est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras id elit. Integer quis urna. Ut ante enim, dapibus malesuada, fringilla eu, condimentum quis, tellus. Aenean porttitor eros vel dolor. Donec convallis pede venenatis nibh. Duis quam. Nam eget lacus. Aliquam erat volutpat. Quisque dignissim congue leo.\n\nMauris vel lacus vitae felis vestibulum volutpat. Etiam est nunc, venenatis in, tristique eu, imperdiet ac, nisl. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In iaculis facilisis massa. Etiam eu urna. Sed porta. Suspendisse quam leo, molestie sed, luctus quis, feugiat in, pede. Fusce tellus. Sed metus augue, convallis et, vehicula ut, pulvinar eu, ante. Integer orci tellus, tristique vitae, consequat nec, porta vel, lectus. Nulla sit amet diam. Duis non nunc. Nulla rhoncus dictum metus. Curabitur tristique mi condimentum orci. Phasellus pellentesque aliquam enim. Proin dui lectus, cursus eu, mattis laoreet, viverra sit amet, quam. Curabitur vel dolor ultrices ipsum dictum tristique. Praesent vitae lacus. Ut velit enim, vestibulum non, fermentum nec, hendrerit quis, leo. Pellentesque rutrum malesuada neque.\n\n \n\n ","Roundabout Slider","","publish","closed","closed","","roundabout-slider","","","2016-09-28 16:19:47","2016-09-28 16:19:47","","0","http://demo.themetor.com/bizpro/?page_id=1202","0","page","","0"); INSERT INTO `wp_posts` VALUES("1204","1","2016-09-28 16:20:25","2016-09-28 16:20:25","Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus. Morbi ut mi. Nullam enim leo, egestas id, condimentum at, laoreet mattis, massa. Sed eleifend nonummy diam. Praesent mauris ante, elementum et, bibendum at, posuere sit amet, nibh. Duis tincidunt lectus quis dui viverra vestibulum. Suspendisse vulputate aliquam dui. Nulla elementum dui ut augue. Aliquam vehicula mi at mauris. Maecenas placerat, nisl at consequat rhoncus, sem nunc gravida justo, quis eleifend arcu velit quis lacus. Morbi magna magna, tincidunt a, mattis non, imperdiet vitae, tellus. Sed odio est, auctor ac, sollicitudin in, consequat vitae, orci. Fusce id felis. Vivamus sollicitudin metus eget eros.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In posuere felis nec tortor. Pellentesque faucibus. Ut accumsan ultricies elit. Maecenas at justo id velit placerat molestie. Donec dictum lectus non odio. Cras a ante vitae enim iaculis aliquam. Mauris nunc quam, venenatis nec, euismod sit amet, egestas placerat, est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras id elit. Integer quis urna. Ut ante enim, dapibus malesuada, fringilla eu, condimentum quis, tellus. Aenean porttitor eros vel dolor. Donec convallis pede venenatis nibh. Duis quam. Nam eget lacus. Aliquam erat volutpat. Quisque dignissim congue leo.\n\nMauris vel lacus vitae felis vestibulum volutpat. Etiam est nunc, venenatis in, tristique eu, imperdiet ac, nisl. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In iaculis facilisis massa. Etiam eu urna. Sed porta. Suspendisse quam leo, molestie sed, luctus quis, feugiat in, pede. Fusce tellus. Sed metus augue, convallis et, vehicula ut, pulvinar eu, ante. Integer orci tellus, tristique vitae, consequat nec, porta vel, lectus. Nulla sit amet diam. Duis non nunc. Nulla rhoncus dictum metus. Curabitur tristique mi condimentum orci. Phasellus pellentesque aliquam enim. Proin dui lectus, cursus eu, mattis laoreet, viverra sit amet, quam. Curabitur vel dolor ultrices ipsum dictum tristique. Praesent vitae lacus. Ut velit enim, vestibulum non, fermentum nec, hendrerit quis, leo. Pellentesque rutrum malesuada neque.\n\n \n\n ","Liteaccordion Slider","","publish","closed","closed","","liteaccordion-slider","","","2016-09-28 16:20:25","2016-09-28 16:20:25","","0","http://demo.themetor.com/bizpro/?page_id=1204","0","page","","0"); INSERT INTO `wp_posts` VALUES("1430","1","2016-10-03 20:03:08","2016-10-03 20:03:08","[vc_row][vc_column width=\"1/2\"][title]Get in Touch with us[/title][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\n\nPhone: +1 (800) 1234567\nFax: +1 (800) 123456\nEmail: email@yourname.com[/vc_column_text][social style=\"circle\" border=\"yes\" tooltip=\"toptip\" facebook=\"#\" twitter=\"#\" google_plus=\"#\" rss=\"#\" linkedin=\"#\"][/vc_column][vc_column width=\"1/2\"][title]Message[/title][contact-form-7 id=\"46\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][gap height=\"70\"][title align=\"center\"]We are Here![/title][gap height=\"30\"][gmap zoom=\"14\" markerimage=\"1072\" color=\"#099aad\" lat=\"-37.817314\" long=\"144.955431\" widht=\"100%\" height=\"350\" address=\"121 King St, Melbourne VIC 3000, Australia\" infowindow=\"Your text goes here!\" apikey=\"AIzaSyAIS-TuOD5hnITbrRCOIkznlU1PLkUMD1A\"][gap height=\"70\"][button text=\"Call Us +1 (800) 123456\" text_color=\"#666666\" button_align=\"center\" icon=\"phone\" size=\"large\"][gap height=\"70\"][/vc_column][/vc_row]","Contact Us 2","","publish","closed","closed","","contact-us-2-2","","","2016-10-03 20:03:08","2016-10-03 20:03:08","","0","http://demo.themetor.com/bizpro/?page_id=1430","0","page","","0"); INSERT INTO `wp_posts` VALUES("1458","1","2016-10-03 22:00:09","2016-10-03 22:00:09","[vc_row][vc_column][title header=\"h3\" align=\"center\"]Vertical Style[/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][process_box type=\"vertical\" title=\"Free Consultation\" number_color=\"rgba(9,154,173,0.15)\"]Lorem ipsum consectetuer adipiscing elit. Nam cursus. Morbi ut mi.[/process_box][/vc_column][vc_column width=\"1/4\"][process_box type=\"vertical\" title=\"Research \" box_number=\"2\" number_color=\"rgba(9,154,173,0.35)\"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam cursus.[/process_box][/vc_column][vc_column width=\"1/4\"][process_box type=\"vertical\" title=\"Contract & Payment\" box_number=\"3\" number_color=\"rgba(9,154,173,0.68)\"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit mi.[/process_box][/vc_column][vc_column width=\"1/4\"][process_box type=\"vertical\" title=\"Project Done!\" box_number=\"4\" number_color=\"#099aad\"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi ut mi.[/process_box][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][title header=\"h3\" align=\"center\"]Horizontal Style[/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][process_box title=\"Consultation\" number_color=\"#099aad\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem …[/process_box][/vc_column][vc_column width=\"1/3\"][process_box title=\"Development\" box_number=\"2\" number_color=\"#099aad\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem …[/process_box][/vc_column][vc_column width=\"1/3\"][process_box title=\"Done!\" box_number=\"3\" number_color=\"#099aad\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem …[/process_box][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][title header=\"h3\" align=\"center\"]Any Colors! Any Columns![/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][process_box type=\"vertical\" title=\"Consultation\" number_color=\"#8e44ad\"]First day[/process_box][/vc_column][vc_column width=\"1/6\"][process_box type=\"vertical\" title=\"Reasearch\" box_number=\"2\" number_color=\"#2980b9\"]2-3 days[/process_box][/vc_column][vc_column width=\"1/6\"][process_box type=\"vertical\" title=\"Contract\" box_number=\"3\" number_color=\"#27ae60\"]day 4[/process_box][/vc_column][vc_column width=\"1/6\"][process_box type=\"vertical\" title=\"Start\" box_number=\"4\" number_color=\"#f1c40f\"]2 weeks after contract[/process_box][/vc_column][vc_column width=\"1/6\"][process_box type=\"vertical\" title=\"Test & Debug\" box_number=\"5\" number_color=\"#e67e22\"]3 days after project done[/process_box][/vc_column][vc_column width=\"1/6\"][process_box type=\"vertical\" title=\"Delivery\" box_number=\"6\" number_color=\"#c0392b\"]Les than 20 days![/process_box][/vc_column][/vc_row][vc_row][vc_column][gap height=\"70\"][title header=\"h3\" align=\"center\"]Any Letter! Any Size![/title][divider margin_top=\"10px\" margin_bottom=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][process_box title=\"Get Free Consultation\" box_number=\"A\" number_color=\"#16a085\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem …[/process_box][/vc_column][vc_column width=\"1/3\"][process_box title=\"Warning\" box_number=\"!\" number_color=\"#e67e22\"]Sed ut perspiciatis unde omnis iste natus error  …[/process_box][gap height=\"70\"][/vc_column][/vc_row]","Process Box","","publish","closed","closed","","process-box","","","2016-10-03 22:00:09","2016-10-03 22:00:09","","0","http://demo.themetor.com/bizpro/?page_id=1458","0","page","","0"); INSERT INTO `wp_posts` VALUES("2896","1","2016-12-20 18:10:21","2016-12-20 15:10:21","","Rema Al-Reyad","","publish","open","closed","","rema-al-reyad","","","2016-12-20 18:10:21","2016-12-20 15:10:21","","0","http://atheltree.com/?post_type=portfolio&p=2211","0","portfolio","","0"); INSERT INTO `wp_posts` VALUES("2897","1","2016-12-16 01:53:31","2016-12-15 22:53:31","مرحباً بك في ووردبريس. هذه مقالتك الأولى. حررها أو احذفها، ثم ابدأ النشر!\n ","أهلاً بالعالم !","","publish","open","open","","%d8%a3%d9%87%d9%84%d8%a7-%d8%a8%d8%a7%d9%84%d8%b9%d8%a7%d9%84%d9%85","","","2016-12-16 01:53:31","2016-12-15 22:53:31","","0","http://atheltree.com/?p=1","0","post","","1"); INSERT INTO `wp_posts` VALUES("2898","1","2016-12-16 02:02:12","2016-12-15 23:02:12","\n\n\n\n\n\n\n\n[submit \"Send\"]\natheltree.com \"[your-subject]\"\n[your-name] \nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on atheltree.com (http://atheltree.com)\nsupport@atheltree.com\nReply-To: [your-email]\n\n\n\n1\natheltree.com \"[your-subject]\"\natheltree.com \nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on atheltree.com (http://atheltree.com)\n[your-email]\nReply-To: support@atheltree.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again latersss.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again laterrr.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.","Contact form 1","","publish","closed","closed","","contact-form-1-2","","","2016-12-16 02:02:12","2016-12-15 23:02:12","","0","http://atheltree.com/?post_type=wpcf7_contact_form&p=5","0","wpcf7_contact_form","","0"); INSERT INTO `wp_posts` VALUES("46","1","2016-08-04 21:04:51","2016-08-04 21:04:51","

[text* your-name placeholder \"Your Name (*)\"]

\n\n

[email* your-email placeholder \"Your Email (*)\"]

\n\n

[text* your-subject placeholder \"Your subject (*)\"]

\n\n

[textarea your-message placeholder \"Your Message\"]

\n\n

[submit \"Send Message\"]

\n[your-subject]\n[your-name] \nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on atheltree.com (http://atheltree.com)\nsupport@atheltree.com\n\n\n\n\n1\natheltree.com \"[your-subject]\"\natheltree.com \nMessage Body:\n[Thank your for your interesting to our Products- Services and We will Contact with you soon]\n\n--\nThis e-mail was sent from a contact form on atheltree.com (http://atheltree.com)\n[your-email]\nReply-To: support@atheltree.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again laterrr.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again laterss.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.","Contact form 1","","publish","closed","closed","","contact-form-1-2-2","","","2016-08-04 21:04:51","2016-08-04 21:04:51","","0","http://demo.themetor.com/bizpro/?post_type=wpcf7_contact_form&p=46","0","wpcf7_contact_form","","0"); INSERT INTO `wp_posts` VALUES("311","1","2016-08-27 21:02:48","2016-08-27 21:02:48","","","","publish","closed","closed","","311","","","2016-08-27 21:02:48","2016-08-27 21:02:48","","0","http://demo.themetor.com/bizpro/?post_type=testimonial&p=311","0","testimonial","","0"); INSERT INTO `wp_posts` VALUES("316","1","2016-08-27 21:03:33","2016-08-27 21:03:33","","","","publish","closed","closed","","316","","","2016-08-27 21:03:33","2016-08-27 21:03:33","","0","http://demo.themetor.com/bizpro/?post_type=testimonial&p=316","0","testimonial","","0"); INSERT INTO `wp_posts` VALUES("317","1","2016-08-27 21:04:33","2016-08-27 21:04:33","","","","publish","closed","closed","","317","","","2016-08-27 21:04:33","2016-08-27 21:04:33","","0","http://demo.themetor.com/bizpro/?post_type=testimonial&p=317","0","testimonial","","0"); INSERT INTO `wp_posts` VALUES("564","1","2016-09-20 16:11:10","2016-09-20 16:11:10","Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In posuere felis nec tortor. Pellentesque faucibus. Ut accumsan ultricies elit. Maecenas at justo id velit placerat molestie. Donec dictum lectus non odio. Cras a ante vitae enim iaculis aliquam. Mauris nunc quam, venenatis nec, euismod sit amet, egestas placerat, est.\n\nPellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras id elit. Integer quis urna. Ut ante enim, dapibus malesuada, fringilla eu, condimentum quis, tellus. Aenean porttitor eros vel dolor. Donec convallis pede venenatis nibh.","Your News Title","","publish","open","open","","your-news-title","","","2016-09-20 16:11:10","2016-09-20 16:11:10","","0","http://demo.themetor.com/bizpro/?p=564","0","post","","3"); INSERT INTO `wp_posts` VALUES("1110","1","2016-09-28 02:41:16","2016-09-28 02:41:16","

Your Name (required)
\n [text* your-name]

\n\n

Your Email (required)
\n [email* your-email]

\n\n

Department
\n[select menu-59 \"Web Apps\" \"Mobile Apps\" \"Web Site\" \"SEO\" \"Graphics\" \"Networking\"]\n

\n\n

\n[quiz quiz-31 \"3+7=?|10\" \"1+5=?|6\" \"6+3=?|9\" \"7+1=?|8\" \"3+4=?|7\" \"1+2=?|3\"]\n

\n\n

Your Question
\n [textarea your-q]

\n\n

[submit \"Ask\"]

\natheltree.com \"[menu-59]\"\n[your-name] \nFrom: [your-name] <[your-email]>\nSubject: [menu-59]\n\nMessage Body:\n[your-q]\n\n--\nThis e-mail was sent from a contact form on atheltree.com (http://atheltree.com)\nSupport@atheltree.com\nReply-To: [your-email]\n\n\n\n\n\n\n\n\n\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.","Faq","","publish","closed","closed","","faq","","","2016-09-28 02:41:16","2016-09-28 02:41:16","","0","http://demo.themetor.com/bizpro/?post_type=wpcf7_contact_form&p=1110","0","wpcf7_contact_form","","0"); INSERT INTO `wp_posts` VALUES("1175","1","2016-09-28 16:10:59","2016-09-28 16:10:59","","Slide 1","","publish","closed","closed","","slide-1","","","2016-09-28 16:10:59","2016-09-28 16:10:59","","0","http://demo.themetor.com/bizpro/?post_type=slide&p=1175","0","slide","","0"); INSERT INTO `wp_posts` VALUES("1184","1","2016-09-28 16:13:53","2016-09-28 16:13:53","","slide 5","","publish","closed","closed","","slide-5","","","2016-09-28 16:13:53","2016-09-28 16:13:53","","0","http://demo.themetor.com/bizpro/?post_type=slide&p=1184","0","slide","","0"); INSERT INTO `wp_posts` VALUES("1817","1","2016-09-28 16:12:01","2016-09-28 16:12:01","","Slide 2","","publish","closed","closed","","slide-2","","","2016-09-28 16:12:01","2016-09-28 16:12:01","","0","http://demo.themetor.com/bizpro/?post_type=slide&p=1181","0","slide","","0"); INSERT INTO `wp_posts` VALUES("1818","1","2016-09-28 16:12:35","2016-09-28 16:12:35","","Slide 3","","publish","closed","closed","","slide-3","","","2016-09-28 16:12:35","2016-09-28 16:12:35","","0","http://demo.themetor.com/bizpro/?post_type=slide&p=1182","0","slide","","0"); INSERT INTO `wp_posts` VALUES("1819","1","2016-09-28 16:13:16","2016-09-28 16:13:16","","Slide 4","","publish","closed","closed","","slide-4","","","2016-09-28 16:13:16","2016-09-28 16:13:16","","0","http://demo.themetor.com/bizpro/?post_type=slide&p=1183","0","slide","","0"); INSERT INTO `wp_posts` VALUES("2245","1","2016-12-22 11:03:35","2016-12-22 08:03:35","","slide4","","publish","closed","closed","","slide4","","","2016-12-22 11:03:35","2016-12-22 08:03:35","","0","http://atheltree.com/?post_type=slide&p=2245","0","slide","","0"); INSERT INTO `wp_posts` VALUES("2247","1","2016-12-22 16:38:08","2016-12-22 13:38:08","","","","publish","closed","closed","","2247","","","2016-12-22 16:38:08","2016-12-22 13:38:08","","0","http://atheltree.com/?post_type=slide&p=2247","0","slide","","0"); INSERT INTO `wp_posts` VALUES("2248","1","2016-12-22 16:39:24","2016-12-22 13:39:24","","","","publish","closed","closed","","2248","","","2016-12-22 16:39:24","2016-12-22 13:39:24","","0","http://atheltree.com/?post_type=slide&p=2248","0","slide","","0"); INSERT INTO `wp_posts` VALUES("2249","1","2016-12-22 16:40:01","2016-12-22 13:40:01","","","","publish","closed","closed","","2249","","","2016-12-22 16:40:01","2016-12-22 13:40:01","","0","http://atheltree.com/?post_type=slide&p=2249","0","slide","","0"); INSERT INTO `wp_posts` VALUES("2902","1","2017-03-06 12:51:06","2017-03-06 09:51:06","أضرار التدخين على الحامل معروفة منذ زمن بعيد لكافة الناس والعاملين في المجال الطبي. ومع ذلك، لا تزال العديد من النساء تدخن خلال فترة الحمل وتعرض الجنين والطفل للخطر. لا تدعي أن هذا لن يحدث لي، عليك الاقلاع عن التدخين فورا قبل الحمل.","أثر التدخين على صحة الانسان","","publish","open","open","","%d8%a3%d8%ab%d8%b1-%d8%a7%d9%84%d8%aa%d8%af%d8%ae%d9%8a%d9%86-%d8%b9%d9%84%d9%89-%d8%b5%d8%ad%d8%a9-%d8%a7%d9%84%d8%a7%d9%86%d8%b3%d8%a7%d9%86","","","2017-03-06 12:51:06","2017-03-06 09:51:06","","0","http://atheltree.com/?p=2902","0","post","","0"); INSERT INTO `wp_posts` VALUES("2903","1","2017-03-21 11:07:09","2017-03-21 11:07:09","","Projects","","publish","closed","closed","","projects","","","2017-03-21 11:07:09","2017-03-21 11:07:09","","0","http://atheltree.com/ar/2017/03/21/projects/","4","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("2904","1","2017-03-21 11:07:09","2017-03-21 11:07:09"," ","","","publish","closed","closed","","2904","","","2017-03-21 11:07:09","2017-03-21 11:07:09","","0","http://atheltree.com/ar/2017/03/21/2904/","3","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("2905","1","2017-03-21 11:07:09","2017-03-21 11:07:09"," ","","","publish","closed","closed","","2905","","","2017-03-21 11:07:09","2017-03-21 11:07:09","","0","http://atheltree.com/ar/2017/03/21/2905/","6","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("2906","1","2017-03-21 11:07:10","2017-03-21 11:07:10"," ","","","publish","closed","closed","","2906","","","2017-03-21 11:07:10","2017-03-21 11:07:10","","0","http://atheltree.com/ar/2017/03/21/2906/","7","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("2907","1","2017-03-21 11:07:10","2017-03-21 11:07:10"," ","","","publish","closed","closed","","2907","","","2017-03-21 11:07:10","2017-03-21 11:07:10","","0","http://atheltree.com/ar/2017/03/21/2907/","2","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("2908","1","2017-03-21 11:07:10","2017-03-21 11:07:10"," ","","","publish","closed","closed","","2908","","","2017-03-21 11:07:10","2017-03-21 11:07:10","","0","http://atheltree.com/ar/2017/03/21/2908/","1","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("2909","1","2017-03-21 11:07:10","2017-03-21 11:07:10"," ","","","publish","closed","closed","","2909","","","2017-03-21 11:07:10","2017-03-21 11:07:10","","0","http://atheltree.com/ar/2017/03/21/2909/","2","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("2910","1","2017-03-21 11:07:10","2017-03-21 11:07:10"," ","","","publish","closed","closed","","2910","","","2017-03-21 11:07:10","2017-03-21 11:07:10","","0","http://atheltree.com/ar/2017/03/21/2910/","6","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("2911","1","2017-03-21 11:07:10","2017-03-21 11:07:10"," ","","","publish","closed","closed","","2911","","","2017-03-21 11:07:10","2017-03-21 11:07:10","","0","http://atheltree.com/ar/2017/03/21/2911/","3","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("2912","1","2017-03-21 11:07:10","2017-03-21 11:07:10","fa-group","Partners","","publish","closed","closed","","partners","","","2017-03-21 11:07:10","2017-03-21 11:07:10","","0","http://atheltree.com/ar/2017/03/21/partners/","5","nav_menu_item","","0"); INSERT INTO `wp_posts` VALUES("2913","1","2017-03-21 11:07:10","2017-03-21 11:07:10","","home page","","publish","closed","closed","","home-page","","","2017-03-21 11:07:10","2017-03-21 11:07:10","","0","http://atheltree.com/ar/2017/03/21/home-page/","1","nav_menu_item","","0"); DROP TABLE IF EXISTS `wp_revslider_css`; SET character_set_client = utf8; CREATE TABLE `wp_revslider_css` ( `id` int(9) NOT NULL AUTO_INCREMENT, `handle` text NOT NULL, `settings` longtext, `hover` longtext, `params` longtext NOT NULL, `advanced` longtext, UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=110 DEFAULT CHARSET=latin1; INSERT INTO `wp_revslider_css` VALUES("1",".tp-caption.medium_grey","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("2",".tp-caption.small_text","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("3",".tp-caption.medium_text","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("4",".tp-caption.large_text","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("5",".tp-caption.very_large_text","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("6",".tp-caption.very_big_white","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("7",".tp-caption.very_big_black","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("8",".tp-caption.modern_medium_fat","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("9",".tp-caption.modern_medium_fat_white","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("10",".tp-caption.modern_medium_light","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("11",".tp-caption.modern_big_bluebg","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("12",".tp-caption.modern_big_redbg","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("13",".tp-caption.modern_small_text_dark","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("14",".tp-caption.boxshadow","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","[]","{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("15",".tp-caption.black","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#000\"}","{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("16",".tp-caption.noshadow","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","[]","{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("17",".tp-caption.thinheadline_dark","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("18",".tp-caption.thintext_dark","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("19",".tp-caption.largeblackbg","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("20",".tp-caption.largepinkbg","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("21",".tp-caption.largewhitebg","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("22",".tp-caption.largegreenbg","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}","{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("23",".tp-caption.excerpt","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}","{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("24",".tp-caption.large_bold_grey","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("25",".tp-caption.medium_thin_grey","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("26",".tp-caption.small_thin_grey","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("27",".tp-caption.lightgrey_divider","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}","{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("28",".tp-caption.large_bold_darkblue","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("29",".tp-caption.medium_bg_darkblue","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("30",".tp-caption.medium_bold_red","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("31",".tp-caption.medium_light_red","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("32",".tp-caption.medium_bg_red","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("33",".tp-caption.medium_bold_orange","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("34",".tp-caption.medium_bg_orange","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("35",".tp-caption.grassfloor","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}","{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("36",".tp-caption.large_bold_white","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("37",".tp-caption.medium_light_white","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("38",".tp-caption.mediumlarge_light_white","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("39",".tp-caption.mediumlarge_light_white_center","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("40",".tp-caption.medium_bg_asbestos","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("41",".tp-caption.medium_light_black","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("42",".tp-caption.large_bold_black","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("43",".tp-caption.mediumlarge_light_darkblue","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("44",".tp-caption.small_light_white","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("45",".tp-caption.roundedimage","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("46",".tp-caption.large_bg_black","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}","{\"idle\":[],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("47",".tp-caption.mediumwhitebg","{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}","null","{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}","{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("48",".tp-caption.MarkerDisplay","{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}","{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}","{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("49",".tp-caption.Restaurant-Display","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}","{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("50",".tp-caption.Restaurant-Cursive","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}","{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("51",".tp-caption.Restaurant-ScrollDownText","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}","{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("52",".tp-caption.Restaurant-Description","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}","{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("53",".tp-caption.Restaurant-Price","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}","{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("54",".tp-caption.Restaurant-Menuitem","{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Power2.easeInOut\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("55",".tp-caption.Furniture-LogoText","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("56",".tp-caption.Furniture-Plus","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("57",".tp-caption.Furniture-Title","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("58",".tp-caption.Furniture-Subtitle","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("59",".tp-caption.Gym-Display","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("60",".tp-caption.Gym-Subline","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("61",".tp-caption.Gym-SmallText","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("62",".tp-caption.Fashion-SmallText","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("63",".tp-caption.Fashion-BigDisplay","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("64",".tp-caption.Fashion-TextBlock","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("65",".tp-caption.Sports-Display","{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("66",".tp-caption.Sports-DisplayFat","{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":[\"\"],\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("67",".tp-caption.Sports-Subline","{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("68",".tp-caption.Instagram-Caption","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("69",".tp-caption.News-Title","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("70",".tp-caption.News-Subtitle","{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"Power3.easeInOut\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("71",".tp-caption.Photography-Display","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("72",".tp-caption.Photography-Subline","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("73",".tp-caption.Photography-ImageHover","{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"Power3.easeInOut\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("74",".tp-caption.Photography-Menuitem","{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("75",".tp-caption.Photography-Textblock","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("76",".tp-caption.Photography-Subline-2","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("77",".tp-caption.Photography-ImageHover2","{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Back.easeOut\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("78",".tp-caption.WebProduct-Title","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("79",".tp-caption.WebProduct-SubTitle","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("80",".tp-caption.WebProduct-Content","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("81",".tp-caption.WebProduct-Menuitem","{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("82",".tp-caption.WebProduct-Title-Light","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("83",".tp-caption.WebProduct-SubTitle-Light","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("84",".tp-caption.WebProduct-Content-Light","{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("85",".tp-caption.FatRounded","{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("86",".tp-caption.NotGeneric-Title","{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":\"[object Object]\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("87",".tp-caption.NotGeneric-SubTitle","{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("88",".tp-caption.NotGeneric-CallToAction","{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("89",".tp-caption.NotGeneric-Icon","{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("90",".tp-caption.NotGeneric-Menuitem","{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("91",".tp-caption.MarkerStyle","{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("92",".tp-caption.Gym-Menuitem","{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("93",".tp-caption.Newspaper-Button","{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("94",".tp-caption.Newspaper-Subtitle","{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("95",".tp-caption.Newspaper-Title","{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("96",".tp-caption.Newspaper-Title-Centered","{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("97",".tp-caption.Hero-Button","{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("98",".tp-caption.Video-Title","{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("99",".tp-caption.Video-SubTitle","{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("100",".tp-caption.NotGeneric-Button","{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("101",".tp-caption.NotGeneric-BigButton","{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("102",".tp-caption.WebProduct-Button","{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("103",".tp-caption.Restaurant-Button","{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("104",".tp-caption.Gym-Button","{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("105",".tp-caption.Gym-Button-Light","{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power2.easeInOut\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":\"\",\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("106",".tp-caption.Sports-Button-Light","{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("107",".tp-caption.Sports-Button-Red","{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("108",".tp-caption.Photography-Button","{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}"); INSERT INTO `wp_revslider_css` VALUES("109",".tp-caption.Newspaper-Button-2","{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}","{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}","{\"idle\":\"\",\"hover\":\"\"}"); DROP TABLE IF EXISTS `wp_revslider_layer_animations`; SET character_set_client = utf8; CREATE TABLE `wp_revslider_layer_animations` ( `id` int(9) NOT NULL AUTO_INCREMENT, `handle` text NOT NULL, `params` text NOT NULL, `settings` text, UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `wp_revslider_navigations`; SET character_set_client = utf8; CREATE TABLE `wp_revslider_navigations` ( `id` int(9) NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `handle` varchar(191) NOT NULL, `css` longtext NOT NULL, `markup` longtext NOT NULL, `settings` longtext, UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `wp_revslider_sliders`; SET character_set_client = utf8; CREATE TABLE `wp_revslider_sliders` ( `id` int(9) NOT NULL AUTO_INCREMENT, `title` tinytext NOT NULL, `alias` tinytext, `params` longtext NOT NULL, `settings` text, `type` varchar(191) NOT NULL DEFAULT '', UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `wp_revslider_slides`; SET character_set_client = utf8; CREATE TABLE `wp_revslider_slides` ( `id` int(9) NOT NULL AUTO_INCREMENT, `slider_id` int(9) NOT NULL, `slide_order` int(11) NOT NULL, `params` longtext NOT NULL, `layers` longtext NOT NULL, `settings` text NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `wp_revslider_static_slides`; SET character_set_client = utf8; CREATE TABLE `wp_revslider_static_slides` ( `id` int(9) NOT NULL AUTO_INCREMENT, `slider_id` int(9) NOT NULL, `params` longtext NOT NULL, `layers` longtext NOT NULL, `settings` text NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `wp_term_relationships`; SET character_set_client = utf8; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; INSERT INTO `wp_term_relationships` VALUES("1","1","0"); INSERT INTO `wp_term_relationships` VALUES("407","8","0"); INSERT INTO `wp_term_relationships` VALUES("414","8","0"); INSERT INTO `wp_term_relationships` VALUES("415","8","0"); INSERT INTO `wp_term_relationships` VALUES("416","8","0"); INSERT INTO `wp_term_relationships` VALUES("417","8","0"); INSERT INTO `wp_term_relationships` VALUES("418","8","0"); INSERT INTO `wp_term_relationships` VALUES("1986","32","0"); INSERT INTO `wp_term_relationships` VALUES("1987","32","0"); INSERT INTO `wp_term_relationships` VALUES("1988","34","0"); INSERT INTO `wp_term_relationships` VALUES("1989","34","0"); INSERT INTO `wp_term_relationships` VALUES("1990","34","0"); INSERT INTO `wp_term_relationships` VALUES("1991","34","0"); INSERT INTO `wp_term_relationships` VALUES("1992","34","0"); INSERT INTO `wp_term_relationships` VALUES("1993","34","0"); INSERT INTO `wp_term_relationships` VALUES("1994","34","0"); INSERT INTO `wp_term_relationships` VALUES("1995","34","0"); INSERT INTO `wp_term_relationships` VALUES("1996","34","0"); INSERT INTO `wp_term_relationships` VALUES("2209","8","0"); INSERT INTO `wp_term_relationships` VALUES("419","29","0"); INSERT INTO `wp_term_relationships` VALUES("419","31","0"); INSERT INTO `wp_term_relationships` VALUES("420","27","0"); INSERT INTO `wp_term_relationships` VALUES("420","28","0"); INSERT INTO `wp_term_relationships` VALUES("420","29","0"); INSERT INTO `wp_term_relationships` VALUES("420","31","0"); INSERT INTO `wp_term_relationships` VALUES("421","26","0"); INSERT INTO `wp_term_relationships` VALUES("422","29","0"); INSERT INTO `wp_term_relationships` VALUES("422","30","0"); INSERT INTO `wp_term_relationships` VALUES("423","31","0"); INSERT INTO `wp_term_relationships` VALUES("424","29","0"); INSERT INTO `wp_term_relationships` VALUES("424","30","0"); INSERT INTO `wp_term_relationships` VALUES("425","31","0"); INSERT INTO `wp_term_relationships` VALUES("426","31","0"); INSERT INTO `wp_term_relationships` VALUES("555","1","0"); INSERT INTO `wp_term_relationships` VALUES("555","14","0"); INSERT INTO `wp_term_relationships` VALUES("555","15","0"); INSERT INTO `wp_term_relationships` VALUES("555","16","0"); INSERT INTO `wp_term_relationships` VALUES("555","22","0"); INSERT INTO `wp_term_relationships` VALUES("555","23","0"); INSERT INTO `wp_term_relationships` VALUES("555","25","0"); INSERT INTO `wp_term_relationships` VALUES("557","1","0"); INSERT INTO `wp_term_relationships` VALUES("557","13","0"); INSERT INTO `wp_term_relationships` VALUES("557","15","0"); INSERT INTO `wp_term_relationships` VALUES("557","17","0"); INSERT INTO `wp_term_relationships` VALUES("557","21","0"); INSERT INTO `wp_term_relationships` VALUES("557","24","0"); INSERT INTO `wp_term_relationships` VALUES("557","35","0"); INSERT INTO `wp_term_relationships` VALUES("559","1","0"); INSERT INTO `wp_term_relationships` VALUES("559","14","0"); INSERT INTO `wp_term_relationships` VALUES("559","16","0"); INSERT INTO `wp_term_relationships` VALUES("559","36","0"); INSERT INTO `wp_term_relationships` VALUES("561","1","0"); INSERT INTO `wp_term_relationships` VALUES("561","13","0"); INSERT INTO `wp_term_relationships` VALUES("561","14","0"); INSERT INTO `wp_term_relationships` VALUES("561","15","0"); INSERT INTO `wp_term_relationships` VALUES("561","37","0"); INSERT INTO `wp_term_relationships` VALUES("2896","26","0"); INSERT INTO `wp_term_relationships` VALUES("2897","1","0"); INSERT INTO `wp_term_relationships` VALUES("2897","19","0"); INSERT INTO `wp_term_relationships` VALUES("311","11","0"); INSERT INTO `wp_term_relationships` VALUES("316","11","0"); INSERT INTO `wp_term_relationships` VALUES("317","11","0"); INSERT INTO `wp_term_relationships` VALUES("564","1","0"); INSERT INTO `wp_term_relationships` VALUES("564","20","0"); INSERT INTO `wp_term_relationships` VALUES("564","21","0"); INSERT INTO `wp_term_relationships` VALUES("564","22","0"); INSERT INTO `wp_term_relationships` VALUES("564","23","0"); INSERT INTO `wp_term_relationships` VALUES("564","13","0"); INSERT INTO `wp_term_relationships` VALUES("564","15","0"); INSERT INTO `wp_term_relationships` VALUES("564","17","0"); INSERT INTO `wp_term_relationships` VALUES("1175","7","0"); INSERT INTO `wp_term_relationships` VALUES("1184","7","0"); INSERT INTO `wp_term_relationships` VALUES("1817","7","0"); INSERT INTO `wp_term_relationships` VALUES("1818","7","0"); INSERT INTO `wp_term_relationships` VALUES("1819","4","0"); INSERT INTO `wp_term_relationships` VALUES("2245","7","0"); INSERT INTO `wp_term_relationships` VALUES("2902","1","0"); INSERT INTO `wp_term_relationships` VALUES("2902","13","0"); INSERT INTO `wp_term_relationships` VALUES("2902","14","0"); INSERT INTO `wp_term_relationships` VALUES("2902","15","0"); INSERT INTO `wp_term_relationships` VALUES("2902","16","0"); INSERT INTO `wp_term_relationships` VALUES("2902","17","0"); INSERT INTO `wp_term_relationships` VALUES("2902","18","0"); INSERT INTO `wp_term_relationships` VALUES("2902","19","0"); INSERT INTO `wp_term_relationships` VALUES("2903","33","0"); INSERT INTO `wp_term_relationships` VALUES("2904","33","0"); INSERT INTO `wp_term_relationships` VALUES("2905","33","0"); INSERT INTO `wp_term_relationships` VALUES("2906","33","0"); INSERT INTO `wp_term_relationships` VALUES("2907","33","0"); INSERT INTO `wp_term_relationships` VALUES("2908","32","0"); INSERT INTO `wp_term_relationships` VALUES("2909","32","0"); INSERT INTO `wp_term_relationships` VALUES("2910","32","0"); INSERT INTO `wp_term_relationships` VALUES("2911","32","0"); INSERT INTO `wp_term_relationships` VALUES("2912","33","0"); INSERT INTO `wp_term_relationships` VALUES("2913","33","0"); DROP TABLE IF EXISTS `wp_term_taxonomy`; SET character_set_client = utf8; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; INSERT INTO `wp_term_taxonomy` VALUES("1","1","category","","0","8"); INSERT INTO `wp_term_taxonomy` VALUES("2","2","slider_types","","0","0"); INSERT INTO `wp_term_taxonomy` VALUES("3","3","slider_types","","0","0"); INSERT INTO `wp_term_taxonomy` VALUES("4","4","slider_types","","0","1"); INSERT INTO `wp_term_taxonomy` VALUES("5","5","slider_types","","0","0"); INSERT INTO `wp_term_taxonomy` VALUES("6","6","slider_types","","0","0"); INSERT INTO `wp_term_taxonomy` VALUES("7","7","slider_types","","0","5"); INSERT INTO `wp_term_taxonomy` VALUES("8","8","clients_types","","0","7"); INSERT INTO `wp_term_taxonomy` VALUES("9","9","clients_types","","0","0"); INSERT INTO `wp_term_taxonomy` VALUES("10","10","clients_types","","0","0"); INSERT INTO `wp_term_taxonomy` VALUES("11","11","testimonial_types","","0","3"); INSERT INTO `wp_term_taxonomy` VALUES("12","12","testimonial_types","","0","0"); INSERT INTO `wp_term_taxonomy` VALUES("13","13","category","","0","4"); INSERT INTO `wp_term_taxonomy` VALUES("14","14","category","","0","4"); INSERT INTO `wp_term_taxonomy` VALUES("15","15","category","","0","5"); INSERT INTO `wp_term_taxonomy` VALUES("16","16","category","","0","3"); INSERT INTO `wp_term_taxonomy` VALUES("17","17","category","","0","3"); INSERT INTO `wp_term_taxonomy` VALUES("18","18","category","","0","1"); INSERT INTO `wp_term_taxonomy` VALUES("19","19","category","","0","2"); INSERT INTO `wp_term_taxonomy` VALUES("20","20","post_tag","","0","1"); INSERT INTO `wp_term_taxonomy` VALUES("21","21","post_tag","","0","2"); INSERT INTO `wp_term_taxonomy` VALUES("22","22","post_tag","","0","2"); INSERT INTO `wp_term_taxonomy` VALUES("23","23","post_tag","","0","2"); INSERT INTO `wp_term_taxonomy` VALUES("24","24","post_tag","","0","1"); INSERT INTO `wp_term_taxonomy` VALUES("25","25","post_tag","","0","1"); INSERT INTO `wp_term_taxonomy` VALUES("26","26","portfolio_types","","0","2"); INSERT INTO `wp_term_taxonomy` VALUES("27","27","portfolio_types","","0","1"); INSERT INTO `wp_term_taxonomy` VALUES("28","28","portfolio_types","","0","1"); INSERT INTO `wp_term_taxonomy` VALUES("29","29","portfolio_types","","0","4"); INSERT INTO `wp_term_taxonomy` VALUES("30","30","portfolio_types","","0","2"); INSERT INTO `wp_term_taxonomy` VALUES("31","31","portfolio_types","","0","5"); INSERT INTO `wp_term_taxonomy` VALUES("32","32","nav_menu","","0","6"); INSERT INTO `wp_term_taxonomy` VALUES("33","33","nav_menu","","0","7"); INSERT INTO `wp_term_taxonomy` VALUES("34","34","nav_menu","","0","9"); INSERT INTO `wp_term_taxonomy` VALUES("35","35","post_format","","0","1"); INSERT INTO `wp_term_taxonomy` VALUES("36","36","post_format","","0","1"); INSERT INTO `wp_term_taxonomy` VALUES("37","37","post_format","","0","1"); DROP TABLE IF EXISTS `wp_termmeta`; SET character_set_client = utf8; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; DROP TABLE IF EXISTS `wp_terms`; SET character_set_client = utf8; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; INSERT INTO `wp_terms` VALUES("1","Uncategorized","uncategorized","0"); INSERT INTO `wp_terms` VALUES("2","Flex Slider","flex-slider","0"); INSERT INTO `wp_terms` VALUES("3","Nivo Slider","nivo-slider","0"); INSERT INTO `wp_terms` VALUES("4","Kwick Slider","kwick-slider","0"); INSERT INTO `wp_terms` VALUES("5","3D Slice Slider","3d-slice-slider","0"); INSERT INTO `wp_terms` VALUES("6","Roundabout Slider","roundabout-slider","0"); INSERT INTO `wp_terms` VALUES("7","Lite Accordion Slider","lite-accordion-slider","0"); INSERT INTO `wp_terms` VALUES("8","Clients","clients","0"); INSERT INTO `wp_terms` VALUES("9","Sponsors","sponsors","0"); INSERT INTO `wp_terms` VALUES("10","Partners","partners","0"); INSERT INTO `wp_terms` VALUES("11","Testimonial","testimonial","0"); INSERT INTO `wp_terms` VALUES("12","Quote","quote","0"); INSERT INTO `wp_terms` VALUES("13","Building","building","0"); INSERT INTO `wp_terms` VALUES("14","Business","business","0"); INSERT INTO `wp_terms` VALUES("15","Consultation","consultation","0"); INSERT INTO `wp_terms` VALUES("16","Finance","finance","0"); INSERT INTO `wp_terms` VALUES("17","Projects","projects","0"); INSERT INTO `wp_terms` VALUES("18","Uncategorized","uncategorized-ar","0"); INSERT INTO `wp_terms` VALUES("19","غير مصنف","%d8%ba%d9%8a%d8%b1-%d9%85%d8%b5%d9%86%d9%81","0"); INSERT INTO `wp_terms` VALUES("20","biz","biz","0"); INSERT INTO `wp_terms` VALUES("21","building","building","0"); INSERT INTO `wp_terms` VALUES("22","business","business","0"); INSERT INTO `wp_terms` VALUES("23","finance","finance","0"); INSERT INTO `wp_terms` VALUES("24","project","project","0"); INSERT INTO `wp_terms` VALUES("25","sticky","sticky","0"); INSERT INTO `wp_terms` VALUES("26","Graphics","industrial","0"); INSERT INTO `wp_terms` VALUES("27","Mobile Apps","consulting","0"); INSERT INTO `wp_terms` VALUES("28","Networking","website","0"); INSERT INTO `wp_terms` VALUES("29","SEO","urban","0"); INSERT INTO `wp_terms` VALUES("30","Web Apps","building","0"); INSERT INTO `wp_terms` VALUES("31","Web Site","finance","0"); INSERT INTO `wp_terms` VALUES("32","Footer Menu","footer-menu","0"); INSERT INTO `wp_terms` VALUES("33","Main Menu","main-menu","0"); INSERT INTO `wp_terms` VALUES("34","One Page","one-page","0"); INSERT INTO `wp_terms` VALUES("35","Gallery","post-format-gallery","0"); INSERT INTO `wp_terms` VALUES("36","Quote","post-format-quote","0"); INSERT INTO `wp_terms` VALUES("37","Video","post-format-video","0"); DROP TABLE IF EXISTS `wp_usermeta`; SET character_set_client = utf8; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; INSERT INTO `wp_usermeta` VALUES("1","1","nickname","admin"); INSERT INTO `wp_usermeta` VALUES("2","1","first_name",""); INSERT INTO `wp_usermeta` VALUES("3","1","last_name",""); INSERT INTO `wp_usermeta` VALUES("4","1","description",""); INSERT INTO `wp_usermeta` VALUES("5","1","rich_editing","true"); INSERT INTO `wp_usermeta` VALUES("6","1","comment_shortcuts","false"); INSERT INTO `wp_usermeta` VALUES("7","1","admin_color","fresh"); INSERT INTO `wp_usermeta` VALUES("8","1","use_ssl","0"); INSERT INTO `wp_usermeta` VALUES("9","1","show_admin_bar_front","true"); INSERT INTO `wp_usermeta` VALUES("10","1","locale",""); INSERT INTO `wp_usermeta` VALUES("11","1","wp_capabilities","a:1:{s:13:\"administrator\";b:1;}"); INSERT INTO `wp_usermeta` VALUES("12","1","wp_user_level","10"); INSERT INTO `wp_usermeta` VALUES("13","1","dismissed_wp_pointers",""); INSERT INTO `wp_usermeta` VALUES("14","1","show_welcome_panel","1"); INSERT INTO `wp_usermeta` VALUES("15","1","session_tokens","a:2:{s:64:\"f2e51c5e192dcf9ea1f5c52e1b273bd8cef8df7b6de8a9cf66e7f2c73594052e\";a:4:{s:10:\"expiration\";i:1491302688;s:2:\"ip\";s:10:\"94.99.4.89\";s:2:\"ua\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\";s:5:\"login\";i:1490093088;}s:64:\"d746f2a033659ac5a3ef309f5f5d6a7c6432cc790d33a4500b8d9e156b066599\";a:4:{s:10:\"expiration\";i:1490265902;s:2:\"ip\";s:10:\"94.99.4.89\";s:2:\"ua\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36\";s:5:\"login\";i:1490093102;}}"); INSERT INTO `wp_usermeta` VALUES("16","1","wp_user-settings","imgsize=full&align=left&editor=tinymce&edit_element_vcUIPanelWidth=1182&edit_element_vcUIPanelLeft=137px&edit_element_vcUIPanelTop=19px&libraryContent=browse&hidetb=1"); INSERT INTO `wp_usermeta` VALUES("17","1","wp_user-settings-time","1490093098"); INSERT INTO `wp_usermeta` VALUES("18","1","wp_dashboard_quick_press_last_post_id","3"); DROP TABLE IF EXISTS `wp_users`; SET character_set_client = utf8; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; INSERT INTO `wp_users` VALUES("1","admin","$P$B2aghYXdrBN7oMRGvbFOUVAPMOEdr71","admin","eng.sheshtawy@gmail.com","","2017-03-21 10:44:48","","0","admin"); SET FOREIGN_KEY_CHECKS = 1;