/* DUPLICATOR MYSQL SCRIPT CREATED ON : 2015-10-06 13:28:50 */

SET FOREIGN_KEY_CHECKS = 0;

CREATE TABLE `wp_bup_files` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pid` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `path` varchar(255) NOT NULL,
  `mime_type` varchar(255) DEFAULT NULL,
  `size` int(11) NOT NULL DEFAULT '0',
  `active` tinyint(1) NOT NULL,
  `date` datetime DEFAULT NULL,
  `download_limit` int(11) NOT NULL DEFAULT '0',
  `period_limit` int(11) NOT NULL DEFAULT '0',
  `description` text NOT NULL,
  `type_id` smallint(5) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_bup_htmltype` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `label` varchar(32) NOT NULL,
  `description` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `label` (`label`)
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_bup_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(64) NOT NULL,
  `data` text,
  `date_created` int(11) NOT NULL DEFAULT '0',
  `uid` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_bup_modules` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(64) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT '0',
  `type_id` smallint(3) NOT NULL DEFAULT '0',
  `params` text,
  `has_tab` tinyint(1) NOT NULL DEFAULT '0',
  `label` varchar(128) DEFAULT NULL,
  `description` text,
  `ex_plug_dir` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_bup_modules_type` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `label` varchar(64) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_bup_options` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(64) CHARACTER SET latin1 NOT NULL,
  `value` longtext,
  `label` varchar(128) CHARACTER SET latin1 DEFAULT NULL,
  `description` text CHARACTER SET latin1,
  `htmltype_id` smallint(2) NOT NULL DEFAULT '1',
  `params` text,
  `cat_id` mediumint(3) DEFAULT '0',
  `sort_order` mediumint(3) DEFAULT '0',
  `value_type` varchar(16) CHARACTER SET latin1 DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_bup_options_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `label` varchar(128) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=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) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=66 DEFAULT CHARSET=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 NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) 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 NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) 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=InnoDB AUTO_INCREMENT=106 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_duplicator_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) NOT NULL,
  `hash` varchar(50) NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) NOT NULL,
  `package` mediumblob NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) 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) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `wp_mp_country` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `country_code` varchar(50) DEFAULT NULL,
  `country_name` varchar(255) DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=240 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_mp_feature_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `productid` int(11) NOT NULL,
  `startdate` int(11) NOT NULL,
  `enddate` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_mp_feature_set` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `feature_name` text NOT NULL,
  `enabled` int(1) NOT NULL DEFAULT '1',
  `del` int(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_mp_feature_set_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fid` int(11) NOT NULL,
  `field_type` varchar(80) NOT NULL,
  `option_name` text NOT NULL,
  `option_value` longtext NOT NULL,
  `enabled` int(1) NOT NULL DEFAULT '1',
  `del` int(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_mp_order_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `oid` varchar(255) NOT NULL,
  `pid` int(11) NOT NULL,
  `quantity` int(11) NOT NULL,
  `license` varchar(255) NOT NULL,
  `price` double NOT NULL,
  `status` int(11) NOT NULL,
  `coupon` varchar(255) DEFAULT NULL,
  `coupon_amount` float DEFAULT NULL,
  `site_commission` float DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_mp_orders` (
  `order_id` varchar(100) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `date` int(11) DEFAULT NULL,
  `items` text,
  `cart_data` text,
  `total` double DEFAULT NULL,
  `order_status` enum('Pending','Processing','Completed','Canceled') DEFAULT NULL,
  `payment_status` enum('Pending','Processing','Completed','Canceled') DEFAULT NULL,
  `uid` int(11) DEFAULT NULL,
  `order_notes` varchar(255) DEFAULT NULL,
  `payment_method` varchar(255) DEFAULT NULL,
  `shipping_method` varchar(255) DEFAULT NULL,
  `shipping_cost` float DEFAULT NULL,
  `billing_shipping_data` text,
  `cart_discount` float DEFAULT NULL,
  PRIMARY KEY (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_mp_payment_methods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(100) NOT NULL,
  `description` text NOT NULL,
  `class_name` varchar(80) NOT NULL,
  `enabled` int(11) NOT NULL,
  `default` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_mp_withdraws` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `uid` int(11) NOT NULL DEFAULT '0',
  `date` int(11) NOT NULL DEFAULT '0',
  `amount` double NOT NULL DEFAULT '0',
  `status` int(11) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(64) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=40830 DEFAULT CHARSET=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) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2289 DEFAULT CHARSET=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 NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(20) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text 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 NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`),
  KEY `post_name` (`post_name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=1270 DEFAULT CHARSET=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=InnoDB DEFAULT CHARSET=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) NOT NULL DEFAULT '',
  `description` longtext 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=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_usces_access` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `acc_key` varchar(50) NOT NULL,
  `acc_type` varchar(50) DEFAULT NULL,
  `acc_value` longtext,
  `acc_date` date NOT NULL DEFAULT '0000-00-00',
  `acc_num1` int(11) NOT NULL DEFAULT '0',
  `acc_num2` int(11) NOT NULL DEFAULT '0',
  `acc_str1` varchar(200) DEFAULT NULL,
  `acc_str2` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `acc_key` (`acc_key`),
  KEY `acc_type` (`acc_type`),
  KEY `acc_date` (`acc_date`),
  KEY `acc_num1` (`acc_num1`),
  KEY `acc_num2` (`acc_num2`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_usces_log` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `log` longtext,
  `log_type` varchar(100) DEFAULT NULL,
  `log_key` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `datetime` (`datetime`),
  KEY `log_type` (`log_type`),
  KEY `log_key` (`log_key`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_usces_member` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `mem_email` varchar(100) NOT NULL,
  `mem_pass` varchar(64) NOT NULL,
  `mem_status` int(11) NOT NULL DEFAULT '0',
  `mem_cookie` varchar(13) DEFAULT NULL,
  `mem_point` int(11) NOT NULL DEFAULT '0',
  `mem_name1` varchar(100) NOT NULL,
  `mem_name2` varchar(100) DEFAULT NULL,
  `mem_name3` varchar(100) DEFAULT NULL,
  `mem_name4` varchar(100) DEFAULT NULL,
  `mem_zip` varchar(50) DEFAULT NULL,
  `mem_pref` varchar(100) NOT NULL,
  `mem_address1` varchar(100) NOT NULL,
  `mem_address2` varchar(100) DEFAULT NULL,
  `mem_address3` varchar(100) DEFAULT NULL,
  `mem_tel` varchar(100) NOT NULL,
  `mem_fax` varchar(100) DEFAULT NULL,
  `mem_delivery_flag` tinyint(1) DEFAULT NULL,
  `mem_delivery` longtext,
  `mem_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `mem_nicename` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `mem_email` (`mem_email`),
  KEY `mem_pass` (`mem_pass`)
) ENGINE=MyISAM AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_usces_member_meta` (
  `mmeta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `member_id` bigint(20) NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`mmeta_id`),
  KEY `order_id` (`member_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_usces_order` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `mem_id` bigint(20) unsigned DEFAULT NULL,
  `order_email` varchar(100) NOT NULL,
  `order_name1` varchar(100) NOT NULL,
  `order_name2` varchar(100) DEFAULT NULL,
  `order_name3` varchar(100) DEFAULT NULL,
  `order_name4` varchar(100) DEFAULT NULL,
  `order_zip` varchar(50) DEFAULT NULL,
  `order_pref` varchar(100) NOT NULL,
  `order_address1` varchar(100) NOT NULL,
  `order_address2` varchar(100) DEFAULT NULL,
  `order_address3` varchar(100) DEFAULT NULL,
  `order_tel` varchar(100) NOT NULL,
  `order_fax` varchar(100) DEFAULT NULL,
  `order_delivery` longtext,
  `order_cart` longtext,
  `order_note` text,
  `order_delivery_time` varchar(100) NOT NULL,
  `order_payment_name` varchar(100) NOT NULL,
  `order_condition` text,
  `order_item_total_price` decimal(10,2) NOT NULL DEFAULT '0.00',
  `order_getpoint` int(10) NOT NULL DEFAULT '0',
  `order_usedpoint` int(10) NOT NULL DEFAULT '0',
  `order_discount` decimal(10,2) NOT NULL DEFAULT '0.00',
  `order_shipping_charge` decimal(10,2) NOT NULL DEFAULT '0.00',
  `order_cod_fee` decimal(10,2) NOT NULL DEFAULT '0.00',
  `order_tax` decimal(10,2) NOT NULL DEFAULT '0.00',
  `order_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `order_modified` varchar(20) DEFAULT NULL,
  `order_status` varchar(255) DEFAULT NULL,
  `order_check` text,
  `order_delidue_date` varchar(30) DEFAULT NULL,
  `order_delivery_method` int(10) NOT NULL DEFAULT '-1',
  `order_delivery_date` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `order_email` (`order_email`),
  KEY `order_name1` (`order_name1`),
  KEY `order_name2` (`order_name2`),
  KEY `order_pref` (`order_pref`),
  KEY `order_address1` (`order_address1`),
  KEY `order_tel` (`order_tel`),
  KEY `order_date` (`order_date`)
) ENGINE=MyISAM AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_usces_order_meta` (
  `ometa_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`ometa_id`),
  KEY `order_id` (`order_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_usces_ordercart` (
  `cart_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) NOT NULL,
  `group_id` int(3) NOT NULL DEFAULT '0',
  `row_index` int(3) NOT NULL,
  `post_id` bigint(20) NOT NULL,
  `item_code` varchar(100) NOT NULL,
  `item_name` varchar(250) NOT NULL,
  `cprice` decimal(15,2) DEFAULT NULL,
  `sku_code` varchar(100) NOT NULL,
  `sku_name` varchar(250) DEFAULT NULL,
  `price` decimal(15,2) DEFAULT NULL,
  `quantity` float NOT NULL,
  `unit` varchar(50) DEFAULT NULL,
  `tax` decimal(13,2) DEFAULT NULL,
  `destination_id` int(10) DEFAULT NULL,
  `cart_serial` text,
  PRIMARY KEY (`cart_id`),
  UNIQUE KEY `row` (`row_index`,`destination_id`,`order_id`),
  KEY `order_id` (`order_id`),
  KEY `post_id` (`post_id`),
  KEY `item_code` (`item_code`),
  KEY `item_name` (`item_name`),
  KEY `sku_code` (`sku_code`),
  KEY `sku_name` (`sku_name`)
) ENGINE=MyISAM AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_usces_ordercart_meta` (
  `cartmeta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `cart_id` bigint(20) NOT NULL DEFAULT '0',
  `meta_type` varchar(100) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`cartmeta_id`),
  KEY `cart_id` (`cart_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=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) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(64) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(60) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_visual_form_builder_entries` (
  `entries_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) NOT NULL,
  `data` longtext NOT NULL,
  `subject` text,
  `sender_name` varchar(255) DEFAULT NULL,
  `sender_email` varchar(255) DEFAULT NULL,
  `emails_to` text,
  `date_submitted` datetime DEFAULT NULL,
  `ip_address` varchar(25) DEFAULT NULL,
  `entry_approved` varchar(20) DEFAULT '1',
  PRIMARY KEY (`entries_id`)
) ENGINE=MyISAM AUTO_INCREMENT=30 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_visual_form_builder_fields` (
  `field_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) NOT NULL,
  `field_key` varchar(255) NOT NULL,
  `field_type` varchar(25) NOT NULL,
  `field_options` text,
  `field_description` text,
  `field_name` text NOT NULL,
  `field_sequence` bigint(20) DEFAULT '0',
  `field_parent` bigint(20) DEFAULT '0',
  `field_validation` varchar(25) DEFAULT NULL,
  `field_required` varchar(25) DEFAULT NULL,
  `field_size` varchar(25) DEFAULT 'medium',
  `field_css` varchar(255) DEFAULT NULL,
  `field_layout` varchar(255) DEFAULT NULL,
  `field_default` text,
  PRIMARY KEY (`field_id`)
) ENGINE=MyISAM AUTO_INCREMENT=30 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_visual_form_builder_forms` (
  `form_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_key` tinytext NOT NULL,
  `form_title` text NOT NULL,
  `form_email_subject` text,
  `form_email_to` text,
  `form_email_from` varchar(255) DEFAULT NULL,
  `form_email_from_name` varchar(255) DEFAULT NULL,
  `form_email_from_override` varchar(255) DEFAULT NULL,
  `form_email_from_name_override` varchar(255) DEFAULT NULL,
  `form_success_type` varchar(25) DEFAULT 'text',
  `form_success_message` text,
  `form_notification_setting` varchar(25) DEFAULT NULL,
  `form_notification_email_name` varchar(255) DEFAULT NULL,
  `form_notification_email_from` varchar(255) DEFAULT NULL,
  `form_notification_email` varchar(25) DEFAULT NULL,
  `form_notification_subject` varchar(255) DEFAULT NULL,
  `form_notification_message` text,
  `form_notification_entry` varchar(25) DEFAULT NULL,
  `form_label_alignment` varchar(25) DEFAULT NULL,
  PRIMARY KEY (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_api_keys` (
  `key_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `description` longtext,
  `permissions` varchar(10) NOT NULL,
  `consumer_key` char(64) NOT NULL,
  `consumer_secret` char(43) NOT NULL,
  `nonces` longtext,
  `truncated_key` char(7) NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) NOT NULL,
  `attribute_label` longtext,
  `attribute_type` varchar(200) NOT NULL,
  `attribute_orderby` varchar(200) NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `download_id` varchar(32) NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `order_id` bigint(20) NOT NULL DEFAULT '0',
  `order_key` varchar(200) NOT NULL,
  `user_email` varchar(200) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `downloads_remaining` varchar(9) DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`,`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_order_items` (
  `order_item_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `order_item_name` longtext NOT NULL,
  `order_item_type` varchar(200) NOT NULL DEFAULT '',
  `order_id` bigint(20) NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `location_code` varchar(255) NOT NULL,
  `tax_rate_id` bigint(20) NOT NULL,
  `location_type` varchar(40) NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type` (`location_type`),
  KEY `location_type_code` (`location_type`,`location_code`(90))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(200) NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) NOT NULL DEFAULT '',
  `tax_rate` varchar(200) NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT '0',
  `tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
  `tax_rate_order` bigint(20) NOT NULL,
  `tax_rate_class` varchar(200) NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`),
  KEY `tax_rate_class` (`tax_rate_class`),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_termmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `woocommerce_term_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `woocommerce_term_id` (`woocommerce_term_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;


/* INSERT TABLE DATA: wp_bup_htmltype */
INSERT INTO `wp_bup_htmltype` VALUES("1", "text", "Text");
INSERT INTO `wp_bup_htmltype` VALUES("2", "password", "Password");
INSERT INTO `wp_bup_htmltype` VALUES("3", "hidden", "Hidden");
INSERT INTO `wp_bup_htmltype` VALUES("4", "checkbox", "Checkbox");
INSERT INTO `wp_bup_htmltype` VALUES("5", "checkboxlist", "Checkboxes");
INSERT INTO `wp_bup_htmltype` VALUES("6", "datepicker", "Date Picker");
INSERT INTO `wp_bup_htmltype` VALUES("7", "submit", "Button");
INSERT INTO `wp_bup_htmltype` VALUES("8", "img", "Image");
INSERT INTO `wp_bup_htmltype` VALUES("9", "selectbox", "Drop Down");
INSERT INTO `wp_bup_htmltype` VALUES("10", "radiobuttons", "Radio Buttons");
INSERT INTO `wp_bup_htmltype` VALUES("11", "countryList", "Countries List");
INSERT INTO `wp_bup_htmltype` VALUES("12", "selectlist", "List");
INSERT INTO `wp_bup_htmltype` VALUES("13", "countryListMultiple", "Country List with posibility to select multiple countries");
INSERT INTO `wp_bup_htmltype` VALUES("14", "block", "Will show only value as text");
INSERT INTO `wp_bup_htmltype` VALUES("15", "statesList", "States List");
INSERT INTO `wp_bup_htmltype` VALUES("16", "textFieldsDynamicTable", "Dynamic table - multiple text options set");
INSERT INTO `wp_bup_htmltype` VALUES("17", "textarea", "Textarea");
INSERT INTO `wp_bup_htmltype` VALUES("18", "checkboxHiddenVal", "Checkbox with Hidden field");

/* INSERT TABLE DATA: wp_bup_modules */
INSERT INTO `wp_bup_modules` VALUES("1", "adminmenu", "1", "1", "", "0", "Admin Menu", "", NULL);
INSERT INTO `wp_bup_modules` VALUES("2", "options", "1", "1", "", "1", "Options", "", NULL);
INSERT INTO `wp_bup_modules` VALUES("3", "log", "1", "1", "", "1", "Log", "Internal system module to log some actions on server", NULL);
INSERT INTO `wp_bup_modules` VALUES("4", "templates", "1", "1", "", "0", "Templates for Plugin", "", NULL);
INSERT INTO `wp_bup_modules` VALUES("5", "backup", "1", "1", "", "1", "Backup ready!", "Backup ready!", NULL);
INSERT INTO `wp_bup_modules` VALUES("6", "schedule", "1", "1", "", "1", "Schedule", "Schedule", NULL);
INSERT INTO `wp_bup_modules` VALUES("7", "storage", "1", "1", "", "1", "Storage", "Storage", NULL);
INSERT INTO `wp_bup_modules` VALUES("8", "promo_ready", "1", "1", "", "0", "Promo ready", "", NULL);
INSERT INTO `wp_bup_modules` VALUES("9", "logger", "1", "1", "", "0", "System logger", "", NULL);

/* INSERT TABLE DATA: wp_bup_modules_type */
INSERT INTO `wp_bup_modules_type` VALUES("1", "system");
INSERT INTO `wp_bup_modules_type` VALUES("2", "addons");

/* INSERT TABLE DATA: wp_bup_options */
INSERT INTO `wp_bup_options` VALUES("1", "full", "1", "Full backup", "on/off full backup", "1", "", "0", "0", "dest_backup");
INSERT INTO `wp_bup_options` VALUES("2", "plugins", "0", "Plugins", "on/off backup plugins", "1", "", "0", "0", "dest_backup");
INSERT INTO `wp_bup_options` VALUES("3", "themes", "0", "Themes", "on/off backup themes", "1", "", "0", "0", "dest_backup");
INSERT INTO `wp_bup_options` VALUES("4", "uploads", "0", "Uploads", "on/off backup uploads", "1", "", "0", "0", "dest_backup");
INSERT INTO `wp_bup_options` VALUES("5", "database", "0", "Database", "on/off backup database", "1", "", "0", "0", "db_backup");
INSERT INTO `wp_bup_options` VALUES("6", "any_directories", "0", "Any", "Any other directories found inside wp-content", "1", "", "0", "0", "dest_backup");
INSERT INTO `wp_bup_options` VALUES("7", "warehouse", "/wp-content/upready/", "Warehouse", "path to storage", "1", "", "0", "0", "");
INSERT INTO `wp_bup_options` VALUES("8", "warehouse_ignore", "upready", "Warehouse_ignore", "Name ignore directory storage", "1", "", "0", "0", "");
INSERT INTO `wp_bup_options` VALUES("9", "safe_array", "", "Safe array", "Safe file array", "1", "", "0", "0", "");
INSERT INTO `wp_bup_options` VALUES("10", "count_folder", "", "Count folder", "Count folder", "1", "", "0", "0", "");
INSERT INTO `wp_bup_options` VALUES("11", "exclude", "upgrade,cache", "Exclude", "Exclude directories", "1", "", "0", "0", "");
INSERT INTO `wp_bup_options` VALUES("12", "sch_enable", "0", "Enable shedule", "Enable shedule", "1", "", "0", "0", "");
INSERT INTO `wp_bup_options` VALUES("13", "sch_every_hour", "0", "Schedule every hour", "Schedule every hour", "1", "", "0", "0", "every");
INSERT INTO `wp_bup_options` VALUES("14", "sch_every_day", "0", "Schedule every day", "Schedule every day", "1", "", "0", "0", "every");
INSERT INTO `wp_bup_options` VALUES("15", "sch_every_day_twice", "0", "Schedule every day twice", "Schedule every day twice", "1", "", "0", "0", "every");
INSERT INTO `wp_bup_options` VALUES("16", "sch_every_week", "0", "Schedule every week", "Schedule every week", "1", "", "0", "0", "every");
INSERT INTO `wp_bup_options` VALUES("17", "sch_every_month", "0", "Schedule every month", "Schedule every month", "1", "", "0", "0", "every");
INSERT INTO `wp_bup_options` VALUES("18", "sch_time", "a:1:{i:1;i:0;}", "Schedule time backup", "Schedule time backup", "1", "", "0", "0", "");
INSERT INTO `wp_bup_options` VALUES("19", "sch_dest", "1", "Destination backup", "Destination backup", "1", "", "0", "0", "");
INSERT INTO `wp_bup_options` VALUES("20", "email", "", "Email", "Email", "1", "", "0", "0", "");
INSERT INTO `wp_bup_options` VALUES("21", "glb_dest", "ftp", "Manual destination", "Manual destination", "1", "", "0", "0", "");
INSERT INTO `wp_bup_options` VALUES("22", "force_update", "0", "Force Update", "Force Update", "1", "", "0", "0", "");
INSERT INTO `wp_bup_options` VALUES("23", "safe_update", "1", "Safe Update", "Safe Update", "1", "", "0", "0", "");
INSERT INTO `wp_bup_options` VALUES("24", "replace_newer", "1", "Replace Newer", "Replace newer files or not", "1", "", "0", "0", "");

/* INSERT TABLE DATA: wp_bup_options_categories */
INSERT INTO `wp_bup_options_categories` VALUES("1", "General");
INSERT INTO `wp_bup_options_categories` VALUES("2", "Template");
INSERT INTO `wp_bup_options_categories` VALUES("3", "Subscribe");
INSERT INTO `wp_bup_options_categories` VALUES("4", "Social");

/* INSERT TABLE DATA: wp_commentmeta */
INSERT INTO `wp_commentmeta` VALUES("43", "57", "is_customer_note", "0");
INSERT INTO `wp_commentmeta` VALUES("44", "58", "is_customer_note", "0");
INSERT INTO `wp_commentmeta` VALUES("45", "59", "is_customer_note", "0");
INSERT INTO `wp_commentmeta` VALUES("46", "68", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("47", "67", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("48", "66", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("49", "65", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("50", "64", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("51", "63", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("52", "62", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("53", "61", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("54", "60", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("55", "56", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("56", "69", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("57", "55", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("58", "54", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("59", "53", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("60", "52", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("61", "51", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("62", "50", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("63", "49", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("64", "48", "_wp_trash_meta_status", "0");
INSERT INTO `wp_commentmeta` VALUES("65", "47", "_wp_trash_meta_status", "0");

/* INSERT TABLE DATA: wp_comments */
INSERT INTO `wp_comments` VALUES("44", "991", "Ganjar", "lf42qa9ip6d@gmail.com", "http://www.facebook.com/profile.php?id=100003469773331", "190.73.116.218", "2015-04-07 22:32:21", "2015-04-07 22:32:21", "Anna - Wow!!! The pictures are cnitpvatiag. Its amazing how children like these can inspire you just from a picture.  My favorite after looking many time is the first one ..I felt like this is what Peter Pan would look like as a little boy.", "0", "0", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("45", "983", "Anderson", "zkh62f8cac@hotmail.com", "http://www.facebook.com/profile.php?id=100003469728055", "87.19.166.50", "2015-04-08 05:00:05", "2015-04-08 05:00:05", "Great stuff from you, man. Ive read your stuff before and youre just too aemsowe. I love what youvegot here, love what youre saying and the way you say it. You make it entertaining and you stillmanage to keep it smart. I cant wait to read more from you. This is really a great blog.", "0", "0", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("46", "1017", "Monchu", "uc2wb1vaee@mail.com", "http://www.facebook.com/profile.php?id=100003469660614", "191.238.24.145", "2015-04-08 06:54:35", "2015-04-08 06:54:35", "Christmas Sony Camera Deals 2012</a> on Light It Up This Christmas</a>not everyone would need a nose job but my gfrnirield really needs some rhinoplasty coz her nose is kind of...", "0", "0", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("47", "724", "Minniedriverskincarereviews.Weebly.Com", "winnie_maclurcan@gmail.com", "http://minniedriverskincarereviews.weebly.com/", "23.95.91.76", "2015-04-15 21:59:13", "2015-04-15 21:59:13", "Hi, I wօսld like to sսbscribe for this webloց to obtain hօttest սрdates, ѕo where \r\ncan i do it please help.\r\n\r\nFeel free to ѕurf to my page - Minnie Driver Skincɑre Reviews (<a href=\"http://minniedriverskincarereviews.weebly.com/\" rel=\"nofollow\">Minniedriverskincarereviews.Weebly.Com</a>)", "0", "spam", "Mozilla/5.0 (iPad; CPU OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4", "", "0", "0");
INSERT INTO `wp_comments` VALUES("48", "515", "Stuart", "antwan_stiles@bestmail.us", "http://mamzdrowie.pl/blog/bozena24", "158.222.3.77", "2015-04-16 19:56:22", "2015-04-16 19:56:22", "Hello there! Do you know if they make any plugins to help with SEO?\r\n\r\nI\'m trying to get my blog to rank for some targeted keywords \r\nbut I\'m not seeing very good results. If you know of any please share.\r\nThank you!\r\n\r\nHere is my weblog ... sprawdź tutaj (<a href=\"http://mamzdrowie.pl/blog/bozena24\" rel=\"nofollow\">Stuart</a>)", "0", "spam", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A405 Safari/600.1.4", "", "0", "0");
INSERT INTO `wp_comments` VALUES("49", "515", "Caren", "sunny.godfrey@arcor.de", "http://Galen.bg", "206.17.20.75", "2015-04-17 18:10:47", "2015-04-17 18:10:47", "Very informative post, i\'m regular reader of your site.\r\nI noticed that your website is outranked by many other blogs in google\'s search results.\r\nYou deserve to be in top-10. I know what can help \r\nyou, search in google for:\r\nKelustu\'s tips outsource the work", "0", "spam", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/39.0.2171.50 Mobile/12B440 Safari/600.1.4", "", "0", "0");
INSERT INTO `wp_comments` VALUES("50", "724", "Inkgrabber.com Coupon Code Free Shipping", "dietermackness@googlemail.com", "http://inkgrabbercouponcodes25review.weebly.com", "104.156.208.224", "2015-04-21 23:32:50", "2015-04-21 23:32:50", "Wondeгful beat ! I wish tߋ aрprentice at the same time as you amend your site, how \r\ncan i subscribe for а blog website? Тhе account helped \r\nme a acϲeptable ɗeal. I were tiny bit acquainted of \r\nthis youг broadcast offered vibrant transparent idea", "0", "spam", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:34.0) Gecko/20100101 Firefox/34.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("51", "515", "ct limousine companies", "celesteillingworth@gmail.com", "http://www.youtube.com/watch?v=K2viS7yo9jY", "147.255.56.124", "2015-04-25 22:40:25", "2015-04-25 22:40:25", "Everyone loves what you guys are up too. This sort of \r\nclever work and coverage! Keep up the good works guys I\'ve added \r\nyou guys to our blogroll.\r\n\r\nAlso visit my web-site - <a href=\"http://www.youtube.com/watch?v=K2viS7yo9jY\" rel=\"nofollow\">ct limousine companies</a>", "0", "spam", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("52", "468", "limousine service in bridgeport ct", "adrieneievers@gmail.com", "http://www.youtube.com/watch?v=K2viS7yo9jY", "23.19.83.113", "2015-04-27 05:50:41", "2015-04-27 05:50:41", "I was wondering if you ever thought of changing the layout \r\nof your site? Its very well written; I love what youve got to say.\r\nBut maybe you could a little more in the way of content so people could connect \r\nwith it better. Youve got an awful lot of text for only having 1 or two images.\r\nMaybe you could space it out better?\r\n\r\nmy web blog; <a href=\"http://www.youtube.com/watch?v=K2viS7yo9jY\" rel=\"nofollow\">limousine service in bridgeport ct</a>", "0", "spam", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("53", "724", "where to buy beachbody derm exclusive", "beatris_richey@gmail.com", "http://beachbodydermexclusivereview.jimdo.com", "104.156.208.224", "2015-05-04 08:06:11", "2015-05-04 08:06:11", "I\'m extгemely pleased to find tɦis site. I need to to \r\nthank you for ones time for this particularly wonderful read!!\r\n\r\nI definitely liked every part of it and i also have you saved to faѵ to look at new things on your site.", "0", "spam", "Mozilla/5.0 (Windows NT 5.1; rv:35.0) Gecko/20100101 Firefox/35.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("54", "468", "Lavonne", "leonardo_kerr@yahoo.com", "http://Spencer5778.com", "183.222.152.195", "2015-05-08 01:22:39", "2015-05-08 01:22:39", "This article and many other on your page are very \r\ninteresting. You should show your content to bigger \r\naudience. There is a big chance to go viral. You need initial boost \r\nand visitors will flood your website in no time.\r\nJust search in google for:\r\nJuuri13 viral effect", "0", "spam", "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36 OPR/26.0.1656.60", "", "0", "0");
INSERT INTO `wp_comments` VALUES("55", "635", "CT limo", "lavonda_bucher@inbox.com", "http://www.youtube.com/watch?v=K2viS7yo9jY", "45.43.30.189", "2015-05-19 04:54:35", "2015-05-19 04:54:35", "It\'s truly very complex in this active life to listen news \r\non TV, therefore I simply use world wide web for that purpose, and take the hottest news.\r\n\r\n\r\nMy weblog: <a href=\"http://www.youtube.com/watch?v=K2viS7yo9jY\" rel=\"nofollow\">CT limo</a>", "0", "spam", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.99 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("56", "724", "gsd deess ipl home hair removal device review", "bennettburdick@gmail.com", "http://silknflashandgohairremovalreview.weebly.com", "23.94.74.30", "2015-05-21 03:14:59", "2015-05-21 03:14:59", "Hello, all the time i used to check weblog posts here in the early hours in the morning, as i \r\nlove to learn more and more.", "0", "spam", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Maxthon/4.4.3.4000 Chrome/30.0.1599.101 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("57", "1210", "WooCommerce", "woocommerce@chequerbox.co.za", "", "", "2015-05-21 06:04:19", "2015-05-21 06:04:19", "ITN payment completed", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `wp_comments` VALUES("58", "1210", "WooCommerce", "woocommerce@chequerbox.co.za", "", "", "2015-05-21 06:04:20", "2015-05-21 06:04:20", "Order status changed from Pending Payment to Processing.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `wp_comments` VALUES("59", "1210", "WooCommerce", "woocommerce@chequerbox.co.za", "", "", "2015-05-21 06:04:20", "2015-05-21 06:04:20", "Order item stock reduced successfully.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `wp_comments` VALUES("60", "315", "errada", "janisfranklyn@gmail.com", "http://www.aintressvatipallipec.com", "155.54.171.175", "2015-05-21 14:57:57", "2015-05-21 14:57:57", "I was very pleased to find this page. I need to to thank you for your \r\ntime just for this wonderful read!! I definitely loved every part \r\nof it and I have you saved as a favorite to check out new stuff on your site.", "0", "spam", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Maxthon/4.4.3.4000 Chrome/30.0.1599.101 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("61", "315", "pindah", "cerysmacaluso@freenet.de", "http://www.nedrafteniraluesocka.com", "78.54.77.94", "2015-05-22 04:20:08", "2015-05-22 04:20:08", "For latest information you have to pay a quick visit the web \r\nand on web I found this web page as a best web site for hottest updates.", "0", "spam", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Maxthon/4.4.3.4000 Chrome/30.0.1599.101 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("62", "315", "Soviet", "jeffotoole@inbox.com", "http://www.massflewebieveloupan.com", "112.161.193.9", "2015-05-22 10:13:17", "2015-05-22 10:13:17", "When I initially commented I clicked the \"Notify me when new comments are added\" checkbox and now each \r\ntime a comment is added I get several e-mails with the same comment.\r\nIs there any way you can remove me from that service?\r\nMany thanks!", "0", "spam", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Maxthon/4.4.4.600 Chrome/30.0.1599.101 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("63", "315", "поверхности", "jacquesmcilveen@gmail.com", "http://www.geopparrettarpconver.com", "124.122.132.126", "2015-06-03 06:29:25", "2015-06-03 06:29:25", "With havin so much written content do you ever run into any problems of plagorism or copyright violation? My blog \r\nhas a lot of unique content I\'ve either written myself or outsourced but it appears a \r\nlot of it is popping it up all over the internet without my authorization. \r\nDo you know any solutions to help prevent content \r\nfrom being ripped off? I\'d genuinely appreciate it.", "0", "spam", "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2220.0 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("64", "919", "find a book", "florenetakasuka@googlemail.com", "http://www.bookscool.com/book/details/0p55rk0ydau8x13cizd", "98.126.26.210", "2015-06-03 15:33:04", "2015-06-03 15:33:04", "Greetings from California! I\'m bored to death at work so I decided to check out \r\nyour website on my iphone during lunch break. I love the information you present here \r\nand can\'t wait to take a look when I get home. I\'m amazed at how quick your blog loaded on my mobile ..\r\nI\'m not even using WIFI, just 3G .. Anyhow, good blog!", "0", "spam", "Mozilla/5.0 (iPad; CPU OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/12B440", "", "0", "0");
INSERT INTO `wp_comments` VALUES("65", "315", "mówi", "charli_dacomb@gawab.com", "http://www.bookmanconnelneraber.com", "171.97.0.117", "2015-06-03 21:54:26", "2015-06-03 21:54:26", "It\'s really a nice and helpful piece of information. I\'m happy that you simply \r\nshared this helpful info with us. Please stay us up to date like this.\r\nThank you for sharing.", "0", "spam", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("66", "315", "lanet", "alyciakinney@gawab.com", "http://www.kyowardingilidynonet.com", "110.168.195.19", "2015-06-04 02:40:19", "2015-06-04 02:40:19", "magnificent put up, very informative. I\'m wondering why the other experts of this sector don\'t realize this.\r\nYou must continue your writing. I am confident, you\'ve a huge \r\nreaders\' base already!", "0", "spam", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("67", "931", "automotive parts", "audrydownie@peacemail.com", "http://vedadri.com/index.php?option=com_blog&amp;view=comments&amp;pid=95102&amp;Itemid=0", "104.224.28.81", "2015-06-05 11:17:36", "2015-06-05 11:17:36", "Nice respond in return of this matter with real arguments and describing everything on the topic of that.\r\n\r\n\r\nStop by my website <a href=\"http://vedadri.com/index.php?option=com_blog&amp;view=comments&amp;pid=95102&amp;Itemid=0\" rel=\"nofollow\">automotive parts</a>", "0", "spam", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A405 Safari/600.1.4", "", "0", "0");
INSERT INTO `wp_comments` VALUES("68", "724", "Latashia", "murraymackersey@emailuser.net", "http://minniedriverskincarereviews.weebly.com/", "188.210.213.243", "2015-06-07 13:29:45", "2015-06-07 13:29:45", "I’m not tɦat much of a internet reader to be \r\nhonest but your sites really niсe, keep it up! I\'ll go ahead and boߋkmark your site to come back later on. Cheers\r\n\r\nmy site: minnie driver skincare review [<a href=\"http://minniedriverskincarereviews.weebly.com/\" rel=\"nofollow\">Latashia</a>]", "0", "spam", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4", "", "0", "0");
INSERT INTO `wp_comments` VALUES("69", "315", "sydney removals", "valeria.driver@hotmail.de", "http://www.dreamcon.ch/index.php/component/k2/itemlist/user/95224", "84.224.38.68", "2015-06-08 20:45:07", "2015-06-08 20:45:07", "Amazing! Its in fact remarkable piece of writing, I have got much clear idea on the topic of from this post.", "0", "spam", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("70", "724", "Taxa Auto", "roscoe_fadden@yahoo.com", "https://plus.google.com/114763702751783349969/posts", "46.165.196.25", "2015-06-11 08:04:24", "2015-06-11 08:04:24", "<a HREF=\"https://plus.google.com/114763702751783349969/posts\" rel=\"nofollow\">Taxa Auto</A> \r\nIt\'s really very complex in this full of activity life to listen news on Television, so I only \r\nuse internet for that reason, and take the most recent information.", "0", "0", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:34.0) Gecko/20100101 Firefox/34.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("71", "635", "AC Repair Thousand Oaks - Heater Repair Westlake Village", "ronny_freeh@yahoo.de", "https://www.youtube.com/watch?v=wUjTqF9KNxY", "64.110.134.117", "2015-06-12 19:30:27", "2015-06-12 19:30:27", "Very nice article. I definitely love this site. Thanks!\r\n\r\n\r\n\r\nAlso visit my webpage; <a href=\"https://www.youtube.com/watch?v=wUjTqF9KNxY\" rel=\"nofollow\">AC Repair Thousand Oaks - Heater Repair Westlake Village</a>", "0", "0", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:34.0) Gecko/20100101 Firefox/34.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("72", "941", "LakeshaeuLoj", "miles.purves@vegemail.com", "http://Kandy.sk", "177.17.98.35", "2015-06-13 22:09:24", "2015-06-13 22:09:24", "Hello admin, i see your page needs fresh content.\r\n\r\nDaily updates will rank your site in google higher, content is king nowadays.\r\nIf you are to lazy to write unique content everyday you should search in google for:\r\nIghtsero\'s Essential Tool", "0", "0", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:35.0) Gecko/20100101 Firefox/35.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("73", "724", "minnie driver skincare reviews", "claribeleaster@yahoo.de", "http://minniedriverskincarereviews.weebly.com/", "23.254.43.91", "2015-06-18 08:58:21", "2015-06-18 08:58:21", "Ӏ like the valuable info you provide in your articles. I\'ll bookmark yoսr blog and cɦeck again here frequently.\r\n\r\nI am գuіte certain I\'ll learn many neԝ ѕtuff right here!\r\nBest of luck for the next!\r\n\r\nmy weЬ blog - <a href=\"http://minniedriverskincarereviews.weebly.com/\" rel=\"nofollow\">minnie driver skincare reviews</a>", "0", "0", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("74", "844", "weight-loss techniques Immediately", "tonithacker@yahoo.de", "http://www.buzzfeed.com/petradimovski/the-alkaline-diet-a-diet-which-makes-sense-18len", "89.44.25.73", "2015-06-18 12:39:17", "2015-06-18 12:39:17", "EverуtҺing iis very open with a precise explanation оf tҺe challenges.\r\nIt waas Ԁefinitely informative. Ƴour site іs extremely helpful.\r\nМany thɑnks for sharing!\r\n\r\nMy blog <a href=\"http://www.buzzfeed.com/petradimovski/the-alkaline-diet-a-diet-which-makes-sense-18len\" rel=\"nofollow\">weight-loss techniques Immediately</a>", "0", "0", "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A405 Safari/600.1.4", "", "0", "0");
INSERT INTO `wp_comments` VALUES("75", "919", "book search", "kermithayes@inbox.com", "http://www.bookscool.com/book/details/0tposv33q5qql4sfcbi", "98.126.26.210", "2015-06-20 09:09:24", "2015-06-20 09:09:24", "You\'ve made some really good points there. I checked \r\non the net for more info about the issue and \r\nfound most people will go along with your \r\nviews on this site.", "0", "0", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36 OPR/26.0.1656.60", "", "0", "0");
INSERT INTO `wp_comments` VALUES("76", "724", "tour academy home edition review", "maricela.cordell@zoho.com", "http://touracademyhomeeditionreview.weebly.com", "23.89.150.96", "2015-06-20 09:55:06", "2015-06-20 09:55:06", "This is гeally interеsting, Yߋu\'re ɑ vеry skillеd blogger.\r\nӀ have joined your rss feed and look forward tօ seeking \r\nmore of your wonderful post. Аlѕo, I have shared your website in my social networks!", "0", "0", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36 OPR/26.0.1656.60", "", "0", "0");
INSERT INTO `wp_comments` VALUES("77", "724", "tour academy home edition review", "jeannine_tancred@yahoo.com", "http://touracademyhomeeditionreview.weebly.com", "23.89.150.81", "2015-06-20 10:03:03", "2015-06-20 10:03:03", "Hі therе! This blog poѕt could not be wгitten much better!\r\nGoing through thiѕ ɑrticle remіnds me of my pгevious roommate!\r\n\r\nHe continually kept preaching about this. I most certainly will forwaгd this post to him.\r\nFɑirly certain he will have a greɑt read. Many thanks for sharing!", "0", "0", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36 OPR/26.0.1656.60", "", "0", "0");
INSERT INTO `wp_comments` VALUES("78", "724", "temp2", "edith.cosby@freenet.de", "https://sites.google.com/site/bistromdfreeshippingdiscount/", "23.89.150.96", "2015-06-20 20:12:51", "2015-06-20 20:12:51", "Gгeat article! That is the type of info that are meant to be shаred acrߋss the net.\r\nShame on the seek engines for now not positioning thiѕ submit upper!\r\nCome on over and talk over with my website .\r\n\r\nThanks =)", "0", "0", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36 OPR/26.0.1656.60", "", "0", "0");
INSERT INTO `wp_comments` VALUES("79", "315", "JacklynKeogh", "leopoldo.shiels@bigstring.com", "http://Doreen.hu", "180.248.75.48", "2015-06-24 06:44:58", "2015-06-24 06:44:58", "Hi admin, i see your blog needs fresh posts. Daily \r\nupdates will rank your page in google higher, content is king nowadays.\r\nIf you are to lazy to write unique articles everyday you should search in google for:\r\n\r\nIghtsero\'s Essential Tool", "0", "0", "Mozilla/5.0 (Windows NT 5.1; rv:35.0) Gecko/20100101 Firefox/35.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("80", "635", "heating simi Valley", "zulmachatterton@gmail.com", "https://www.youtube.com/watch?v=0vzaRGqlckU", "64.110.134.120", "2015-06-28 19:49:10", "2015-06-28 19:49:10", "Hello there! I know this is kinda off topic but I was wondering which blog \r\nplatform are you using for this site? I\'m getting sick and tired of Wordpress because I\'ve had problems with hackers and I\'m looking at alternatives for another platform.\r\nI would be awesome if you could point me in the direction of a good platform.\r\n\r\n\r\nAlso visit my web-site ... <a href=\"https://www.youtube.com/watch?v=0vzaRGqlckU\" rel=\"nofollow\">heating simi Valley</a>", "0", "0", "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("81", "998", "Jaime", "synonymousrat90@gmail.com", "http://9nl.it/RouletteTycoon2", "94.39.245.30", "2015-06-28 21:28:27", "2015-06-28 21:28:27", "NEW ROULETTE SYSTEMAL (Roulette TYCOON) Roulette TYCOON is currently on offer at a special price of $ 47 instead of $ 197 just for a short time, if you want to really start earning with Toulette you get immediately (Roulette TYCOON) Read More--&gt; http://9nl.it/RouletteTycoon2", "0", "0", "Mozilla/5.0 (Windows NT 6.1; rv:18.0) Gecko/20100101 Firefox/18.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("82", "941", "website design", "BlivenKlick66@gnumail.com", "http://www.swiftnetsolutions.co.za/services.html#websitedesign", "196.210.109.102", "2015-07-06 23:32:30", "2015-07-06 23:32:30", "Cheers pertaining to sharing this particular wonderful all of us you understand what you will be chatting roughly! Book-marked  website design. Be sure to likewise talk to my own website Means). You can easliy possess a web page link commerce contract amongst united states", "0", "0", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("83", "724", "inkgrabber discount code", "harriettflanery@aol.com", "http://inkgrabbercouponcodes25review.weebly.com", "46.102.97.150", "2015-07-18 18:21:56", "2015-07-18 18:21:56", "Helрful information. Fortunate me I found youг web site accidentally, and I am surprised \r\nwɦy this twist of fate did not came about in advɑnce!\r\nI bookmarked it.", "0", "0", "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("84", "635", "auto head gasket repair", "chandafurnell@yahoo.de", "http://www.youtube.com/watch?v=TwJ7z0od57g", "68.71.148.23", "2015-07-18 19:33:50", "2015-07-18 19:33:50", "I am really impressed with your writing skills \r\nas well as with the layout on your blog. Is this a paid theme or did you modify it yourself?\r\n\r\nAnyway keep up the nice quality writing, it\'s rare to see \r\na great blog like this one nowadays.\r\n\r\nFeel free to surf to my weblog; <a href=\"http://www.youtube.com/watch?v=TwJ7z0od57g\" rel=\"nofollow\">auto head gasket repair</a>", "0", "0", "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("85", "978", "CliffGimcs", "jeseniacosh@yahoo.com", "http://Sherman.livejournal.com", "39.158.129.119", "2015-07-20 17:29:07", "2015-07-20 17:29:07", "Hi, i really enjoy your posts and i have just \r\nanalyzed your backlinks. You need more authority links in order to rank.\r\nBest backlinking strategies in 2015 are backlinks \r\npyramids and PBNs. You can hit google\'s top ten easily.\r\nIf you aren\'t SEO pro you can outsource this task, just search in google:\r\nBurol\'s Tips Outsource The Work", "0", "0", "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("86", "724", "dermexclusiveantiageingreviews.weebly.com", "danemetzger@yahoo.com", "http://dermexclusiveantiageingreviews.weebly.com/", "191.101.91.189", "2015-07-24 10:43:16", "2015-07-24 10:43:16", "What\'s uρ еvery one, here every perѕon is sharing these κinds οf famіliarity, \r\nso it\'s pleasant to rеad this weblog, and I used to pay a quick visit this \r\nwebpage evеry day.\r\n\r\nFeеl free to surf tο my homepage ... Derm Εxclusive Anti Ageing Reviews \r\n- With Fill &amp; Freeze (<a href=\"http://dermexclusiveantiageingreviews.weebly.com/\" rel=\"nofollow\">dermexclusiveantiageingreviews.weebly.com</a>)", "0", "0", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("87", "724", "temp2", "maxiemackennal@gmail.com", "http://genemeskincarereview.weebly.com/", "178.175.184.230", "2015-07-25 05:03:35", "2015-07-25 05:03:35", "Howdy tҺis is kinda of off topic but I was wonderіng \r\nif blogs use WYSIWYG editorѕ or if you have to manually code with HTML.\r\nI\'m starting a bloǥ soon but Һave no coding knowledge so I ѡanted to get guidance from someone \r\nwith experience. Any help woulԁ ƅe greatly apprеciated!", "0", "0", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("88", "516", "small business marketing", "Marke79240@aol.com", "http://BusinessFirstFamily.com/", "192.3.13.65", "2015-07-25 15:11:00", "2015-07-25 15:11:00", "I love your ideas that everyone can relate to.", "0", "0", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.50", "", "0", "0");
INSERT INTO `wp_comments` VALUES("89", "516", "baby", "Sollars315605@hotmail.com", "http://wellbabysite.com/", "192.3.13.65", "2015-07-26 02:27:48", "2015-07-26 02:27:48", "Not many people can say they are impacting so many lives like you are.", "0", "0", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.50", "", "0", "0");
INSERT INTO `wp_comments` VALUES("90", "635", "HVAC Simi Valley", "jedgolding@googlemail.com", "https://www.youtube.com/watch?v=wBJZMUwh2p4", "68.71.148.93", "2015-07-30 05:11:20", "2015-07-30 05:11:20", "A fascinating discussion is definitely worth comment. I do believe that you ought to write \r\nmore about this subject matter, it may not be a taboo subject but typically people \r\ndon\'t discuss these issues. To the next! Kind regards!!\r\n\r\n\r\nAlso visit my site :: <a href=\"https://www.youtube.com/watch?v=wBJZMUwh2p4\" rel=\"nofollow\">HVAC Simi Valley</a>", "0", "0", "Mozilla/5.0 (X11; CrOS x86_64 6310.68.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.96 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("91", "724", "Chet", "christel.checchi@arcor.de", "http://minniedriverskincarereviews.weebly.com/", "191.101.91.185", "2015-08-01 17:41:53", "2015-08-01 17:41:53", "Տaved as a favorite, I like yоur blog!\r\n\r\n\r\nmy homеpage ... minnie driver skincare review (<a href=\"http://minniedriverskincarereviews.weebly.com/\" rel=\"nofollow\">Chet</a>)", "0", "0", "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:34.0) Gecko/20100101 Firefox/34.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("92", "941", "Vilma", "caitlin_gibbs@snail-mail.net", "http://Errol6001.blogspot.com", "201.211.24.115", "2015-08-03 15:32:16", "2015-08-03 15:32:16", "chequerbox.co.za has potential, you can make your page go viral easily \r\nusing one tricky method. Just search in google: \r\nIrsrod\'s Method To Go Viral", "0", "0", "Mozilla/5.0 (Android; Mobile; rv:34.0) Gecko/34.0 Firefox/34.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("93", "468", "agar.io hack", "harrymathias@zoho.com", "https://agariohackonline.wordpress.com/", "5.101.217.57", "2015-08-10 05:03:50", "2015-08-10 05:03:50", "So Glad The Premiered The Music!", "0", "0", "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 5 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.105 Mobile Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("94", "515", "Joanie Lehrian", "Thiessen@gmail.com", "http://www.alfa-consulting.pl/forum/profile.php?mode=viewprofile&amp;u=1332", "83.5.52.200", "2015-08-20 07:57:33", "2015-08-20 07:57:33", "I was  looking through  some of your  articles  on this website  and I  conceive this  internet site  is very   instructive! Keep  posting .", "0", "0", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.50", "", "0", "0");
INSERT INTO `wp_comments` VALUES("95", "724", "auravie anti aging serum", "britneycable@gawab.com", "http://doesauravieskincareworkreviews.weebly.com", "23.94.179.156", "2015-09-08 03:21:06", "2015-09-08 03:21:06", "Paragraph writing is also a fun, if you be familiar with then you \r\ncan write or else it is complicated to write.", "0", "0", "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("96", "468", "Skincare ABCs", "kristyaraujo@gmail.com", "http://oha-d.com/w3a/redirect.php?redirect=http://eyeserumreview.net/the-abcs-of-skincare/", "104.156.208.214", "2015-09-10 19:53:05", "2015-09-10 19:53:05", "Great post! We are linking to this particularly great post on our site.\r\nKeep up the good writing.", "0", "0", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Maxthon/4.4.3.4000 Chrome/30.0.1599.101 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("97", "835", "Skincare A to Z", "jefferson_walston@gmail.com", "http://tfb.seiryuu.org/index.php?PHPSESSID=mfg4a8204to8q7a73l2e0cfjq6&amp;action=profile;u=9459", "198.52.211.181", "2015-09-10 19:53:32", "2015-09-10 19:53:32", "What i don\'t realize is if truth be told how you \r\nare now not really much more smartly-favored than you might be \r\nnow. You are so intelligent. You recognize thus considerably in relation to \r\nthis topic, produced me in my view consider it from so many various angles.\r\nIts like men and women aren\'t fascinated until it is \r\nsomething to do with Girl gaga! Your own stuffs nice. At all times handle it \r\nup!", "0", "0", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Maxthon/4.4.3.4000 Chrome/30.0.1599.101 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("98", "724", "temp", "jaclynlaflamme@gmail.com", "https://sites.google.com/site/bistromdfreeshippingdiscount/", "172.245.211.239", "2015-09-12 07:55:26", "2015-09-12 07:55:26", "Woա! After all I gоt a websіte from ԝherе I know how to truly take \r\nhelpful data concerning my study and knowledge.", "0", "0", "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("99", "724", "derm exclusive versus arbonne", "bill_stage@gmail.com", "http://dermexclusivevsarbonne.jimdo.com", "88.150.210.70", "2015-09-19 11:10:31", "2015-09-19 11:10:31", "I really lіkе youг blog.. vегy nice colors &amp; theme.\r\nDid you create this websіte yourself or did you hire someone to do it for yօu?\r\n\r\nPlz гespond as I\'m looking to dеsign my own blog and \r\nwoսld like to fіnd out where u got this fгom. thɑnk you", "0", "0", "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.99 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("100", "524", "Palestok.tumblr.com", "marcelabbott@arcor.de", "http://palestok.tumblr.com/post/126017087618/speaking-in-bones-online", "104.168.86.118", "2015-09-20 16:02:57", "2015-09-20 16:02:57", "Great site you\'ve ggot here.. It\'s hard too find quality writing like \r\nyours these days. I honestly appreciate individuals like \r\nyou! Take care!!", "0", "0", "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:34.0) Gecko/20100101 Firefox/34.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("101", "941", "TerenceSulm", "margieeverett@animail.net", "http://www.dailymotion.com/sportwetten-mit-paypal", "183.227.145.237", "2015-09-22 12:03:37", "2015-09-22 12:03:37", "It was hard to find this article in google, but i\'m glad i \r\nfound your interesting page. You deserve for much more traffic.\r\nYour niche is not so hard to rank in google, there is one working \r\nmethod to rank, search in google for: Rotia knows how to rank", "0", "0", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:34.0) Gecko/20100101 Firefox/34.0", "", "0", "0");
INSERT INTO `wp_comments` VALUES("102", "724", "halloween lights", "selenabegay@gmail.com", "http://bestsexiesthalloweencostumeideas.weebly.com", "198.23.240.83", "2015-09-29 07:04:27", "2015-09-29 07:04:27", "I love readіng througɦ an article that can make ρeople think.\r\nAlso, thank ƴou for allowing for me to comment!", "0", "0", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("103", "468", "coc hack", "anitabogan@yahoo.de", "http://clashofclanshackdutch.blogspot.com", "93.179.89.124", "2015-09-29 08:23:42", "2015-09-29 08:23:42", "As quickly as they are linked, they need to just put in the \r\namount of gold, elixir, dark elixir and gems.", "0", "0", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("104", "724", "temp", "augustinaseppelt@yepmail.net", "http://genemeskincarereview.weebly.com/", "23.95.186.132", "2015-10-02 03:27:25", "2015-10-02 03:27:25", "Mаgnificent աebsite. A lot of useful informatіon here.\r\nI\'m sеnding it to a few pals ans additionally sharing in delicious.\r\nAnd certainly, thank you to your sweat!", "0", "0", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.99 Safari/537.36", "", "0", "0");
INSERT INTO `wp_comments` VALUES("105", "724", "Josie", "morgankirkcaldie@gmail.com", "http://minniedriverskincarereviews.weebly.com/", "188.215.230.27", "2015-10-02 16:51:12", "2015-10-02 16:51:12", "Hi there cоlleagսes, good post and pleasant uгgіng commented here, \r\nI am gеnuinely enjoying by these.", "0", "0", "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.99 Safari/537.36", "", "0", "0");

/* INSERT TABLE DATA: wp_duplicator_packages */
INSERT INTO `wp_duplicator_packages` VALUES("1", "20151006_chequerbox", "5613a5756b7ad2524151006104157", "40", "2015-10-06 10:42:43", "admin", "O:11:\"DUP_Package\":16:{s:2:\"ID\";i:1;s:4:\"Name\";s:19:\"20151006_chequerbox\";s:4:\"Hash\";s:29:\"5613a5756b7ad2524151006104157\";s:8:\"NameHash\";s:49:\"20151006_chequerbox_5613a5756b7ad2524151006104157\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/chequpkb/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://chequerbox.co.za/wp-snapshots/\";s:8:\"ScanFile\";s:59:\"20151006_chequerbox_5613a5756b7ad2524151006104157_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";s:61:\"20151006_chequerbox_5613a5756b7ad2524151006104157_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:26:\"/home/chequpkb/public_html\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";r:1;}s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";s:63:\"20151006_chequerbox_5613a5756b7ad2524151006104157_installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:19:\"20151006_chequerbox\";s:4:\"Hash\";s:29:\"5613a5756b7ad2524151006104157\";s:8:\"NameHash\";s:49:\"20151006_chequerbox_5613a5756b7ad2524151006104157\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/chequpkb/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://chequerbox.co.za/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";r:46;s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:1593046;s:4:\"File\";s:62:\"20151006_chequerbox_5613a5756b7ad2524151006104157_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";s:106:\"/home/chequpkb/public_html/wp-snapshots/tmp/20151006_chequerbox_5613a5756b7ad2524151006104157_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:8:\"Database\";r:74;}");
INSERT INTO `wp_duplicator_packages` VALUES("2", "20151006_chequerbox", "", "40", "2015-10-06 11:10:59", "admin", "O:11:\"DUP_Package\":16:{s:2:\"ID\";i:2;s:4:\"Name\";s:19:\"20151006_chequerbox\";s:4:\"Hash\";N;s:8:\"NameHash\";s:20:\"20151006_chequerbox_\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/chequpkb/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://chequerbox.co.za/wp-snapshots/\";s:8:\"ScanFile\";s:30:\"20151006_chequerbox__scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";s:32:\"20151006_chequerbox__archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:26:\"/home/chequpkb/public_html\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";r:1;}s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";s:34:\"20151006_chequerbox__installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:19:\"20151006_chequerbox\";s:4:\"Hash\";N;s:8:\"NameHash\";s:20:\"20151006_chequerbox_\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/chequpkb/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://chequerbox.co.za/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";r:46;s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:1596551;s:4:\"File\";s:33:\"20151006_chequerbox__database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";s:77:\"/home/chequpkb/public_html/wp-snapshots/tmp/20151006_chequerbox__database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:8:\"Database\";r:74;}");
INSERT INTO `wp_duplicator_packages` VALUES("3", "20151006_chequerbox", "5613ac5af34cc2410151006111122", "40", "2015-10-06 13:25:06", "admin", "O:11:\"DUP_Package\":16:{s:2:\"ID\";i:3;s:4:\"Name\";s:19:\"20151006_chequerbox\";s:4:\"Hash\";s:29:\"5613ac5af34cc2410151006111122\";s:8:\"NameHash\";s:49:\"20151006_chequerbox_5613ac5af34cc2410151006111122\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/chequpkb/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://chequerbox.co.za/wp-snapshots/\";s:8:\"ScanFile\";s:59:\"20151006_chequerbox_5613ac5af34cc2410151006111122_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";s:61:\"20151006_chequerbox_5613ac5af34cc2410151006111122_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:26:\"/home/chequpkb/public_html\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";r:1;}s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";s:63:\"20151006_chequerbox_5613ac5af34cc2410151006111122_installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:1;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:19:\"20151006_chequerbox\";s:4:\"Hash\";s:29:\"5613ac5af34cc2410151006111122\";s:8:\"NameHash\";s:49:\"20151006_chequerbox_5613ac5af34cc2410151006111122\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/chequpkb/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://chequerbox.co.za/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";r:46;s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:1599854;s:4:\"File\";s:62:\"20151006_chequerbox_5613ac5af34cc2410151006111122_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";s:106:\"/home/chequpkb/public_html/wp-snapshots/tmp/20151006_chequerbox_5613ac5af34cc2410151006111122_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:8:\"Database\";r:74;}");
INSERT INTO `wp_duplicator_packages` VALUES("4", "20151006_chequerbox", "", "40", "2015-10-06 13:27:00", "admin", "O:11:\"DUP_Package\":16:{s:2:\"ID\";i:4;s:4:\"Name\";s:19:\"20151006_chequerbox\";s:4:\"Hash\";N;s:8:\"NameHash\";s:20:\"20151006_chequerbox_\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/chequpkb/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://chequerbox.co.za/wp-snapshots/\";s:8:\"ScanFile\";s:30:\"20151006_chequerbox__scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";s:32:\"20151006_chequerbox__archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:26:\"/home/chequpkb/public_html\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";r:1;}s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";s:34:\"20151006_chequerbox__installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:19:\"20151006_chequerbox\";s:4:\"Hash\";N;s:8:\"NameHash\";s:20:\"20151006_chequerbox_\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/chequpkb/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://chequerbox.co.za/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";r:46;s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:1602586;s:4:\"File\";s:33:\"20151006_chequerbox__database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";s:77:\"/home/chequpkb/public_html/wp-snapshots/tmp/20151006_chequerbox__database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:8:\"Database\";r:74;}");
INSERT INTO `wp_duplicator_packages` VALUES("5", "20151006_chequerbox", "", "20", "2015-10-06 13:28:50", "admin", "O:11:\"DUP_Package\":16:{s:2:\"ID\";i:5;s:4:\"Name\";s:19:\"20151006_chequerbox\";s:4:\"Hash\";N;s:8:\"NameHash\";s:20:\"20151006_chequerbox_\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/chequpkb/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://chequerbox.co.za/wp-snapshots/\";s:8:\"ScanFile\";s:30:\"20151006_chequerbox__scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";s:32:\"20151006_chequerbox__archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:26:\"/home/chequpkb/public_html\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:19:\"20151006_chequerbox\";s:4:\"Hash\";N;s:8:\"NameHash\";s:20:\"20151006_chequerbox_\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/chequpkb/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://chequerbox.co.za/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";s:34:\"20151006_chequerbox__installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:45;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";s:33:\"20151006_chequerbox__database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:9:\"Installer\";r:60;s:8:\"Database\";r:73;}");

/* INSERT TABLE DATA: wp_mp_country */
INSERT INTO `wp_mp_country` VALUES("1", "AD", "ANDORRA", NULL);
INSERT INTO `wp_mp_country` VALUES("2", "AE", "UNITED ARAB EMIRATES", NULL);
INSERT INTO `wp_mp_country` VALUES("3", "AF", "AFGHANISTAN", NULL);
INSERT INTO `wp_mp_country` VALUES("4", "AG", "ANTIGUA AND BARBUDA", NULL);
INSERT INTO `wp_mp_country` VALUES("5", "AI", "ANGUILLA", NULL);
INSERT INTO `wp_mp_country` VALUES("6", "AL", "ALBANIA", NULL);
INSERT INTO `wp_mp_country` VALUES("7", "AM", "ARMENIA", NULL);
INSERT INTO `wp_mp_country` VALUES("8", "AN", "NETHERLANDS ANTILLES", NULL);
INSERT INTO `wp_mp_country` VALUES("9", "AO", "ANGOLA", NULL);
INSERT INTO `wp_mp_country` VALUES("10", "AQ", "ANTARCTICA", NULL);
INSERT INTO `wp_mp_country` VALUES("11", "AR", "ARGENTINA", NULL);
INSERT INTO `wp_mp_country` VALUES("12", "AS", "AMERICAN SAMOA", NULL);
INSERT INTO `wp_mp_country` VALUES("13", "AT", "AUSTRIA", NULL);
INSERT INTO `wp_mp_country` VALUES("14", "AU", "AUSTRALIA", NULL);
INSERT INTO `wp_mp_country` VALUES("15", "AW", "ARUBA", NULL);
INSERT INTO `wp_mp_country` VALUES("16", "AZ", "AZERBAIJAN", NULL);
INSERT INTO `wp_mp_country` VALUES("17", "BA", "BOSNIA AND HERZEGOVINA", NULL);
INSERT INTO `wp_mp_country` VALUES("18", "BB", "BARBADOS", NULL);
INSERT INTO `wp_mp_country` VALUES("19", "BD", "BANGLADESH", NULL);
INSERT INTO `wp_mp_country` VALUES("20", "BE", "BELGIUM", NULL);
INSERT INTO `wp_mp_country` VALUES("21", "BF", "BURKINA FASO", NULL);
INSERT INTO `wp_mp_country` VALUES("22", "BG", "BULGARIA", NULL);
INSERT INTO `wp_mp_country` VALUES("23", "BH", "BAHRAIN", NULL);
INSERT INTO `wp_mp_country` VALUES("24", "BI", "BURUNDI", NULL);
INSERT INTO `wp_mp_country` VALUES("25", "BJ", "BENIN", NULL);
INSERT INTO `wp_mp_country` VALUES("26", "BM", "BERMUDA", NULL);
INSERT INTO `wp_mp_country` VALUES("27", "BN", "BRUNEI DARUSSALAM", NULL);
INSERT INTO `wp_mp_country` VALUES("28", "BO", "BOLIVIA", NULL);
INSERT INTO `wp_mp_country` VALUES("29", "BR", "BRAZIL", NULL);
INSERT INTO `wp_mp_country` VALUES("30", "BS", "BAHAMAS", NULL);
INSERT INTO `wp_mp_country` VALUES("31", "BT", "BHUTAN", NULL);
INSERT INTO `wp_mp_country` VALUES("32", "BV", "BOUVET ISLAND", NULL);
INSERT INTO `wp_mp_country` VALUES("33", "BW", "BOTSWANA", NULL);
INSERT INTO `wp_mp_country` VALUES("34", "BY", "BELARUS", NULL);
INSERT INTO `wp_mp_country` VALUES("35", "BZ", "BELIZE", NULL);
INSERT INTO `wp_mp_country` VALUES("36", "CA", "CANADA", NULL);
INSERT INTO `wp_mp_country` VALUES("37", "CC", "COCOS (KEELING) ISLANDS", NULL);
INSERT INTO `wp_mp_country` VALUES("38", "CD", "CONGO, THE DEMOCRATIC REPUBLIC OF THE", NULL);
INSERT INTO `wp_mp_country` VALUES("39", "CF", "CENTRAL AFRICAN REPUBLIC", NULL);
INSERT INTO `wp_mp_country` VALUES("40", "CG", "CONGO", NULL);
INSERT INTO `wp_mp_country` VALUES("41", "CH", "SWITZERLAND", NULL);
INSERT INTO `wp_mp_country` VALUES("42", "CI", "COTE D\'IVOIRE", NULL);
INSERT INTO `wp_mp_country` VALUES("43", "CK", "COOK ISLANDS", NULL);
INSERT INTO `wp_mp_country` VALUES("44", "CL", "CHILE", NULL);
INSERT INTO `wp_mp_country` VALUES("45", "CM", "CAMEROON", NULL);
INSERT INTO `wp_mp_country` VALUES("46", "CN", "CHINA", NULL);
INSERT INTO `wp_mp_country` VALUES("47", "CO", "COLOMBIA", NULL);
INSERT INTO `wp_mp_country` VALUES("48", "CR", "COSTA RICA", NULL);
INSERT INTO `wp_mp_country` VALUES("49", "CS", "SERBIA AND MONTENEGRO", NULL);
INSERT INTO `wp_mp_country` VALUES("50", "CU", "CUBA", NULL);
INSERT INTO `wp_mp_country` VALUES("51", "CV", "CAPE VERDE", NULL);
INSERT INTO `wp_mp_country` VALUES("52", "CX", "CHRISTMAS ISLAND", NULL);
INSERT INTO `wp_mp_country` VALUES("53", "CY", "CYPRUS", NULL);
INSERT INTO `wp_mp_country` VALUES("54", "CZ", "CZECH REPUBLIC", NULL);
INSERT INTO `wp_mp_country` VALUES("55", "DE", "GERMANY", NULL);
INSERT INTO `wp_mp_country` VALUES("56", "DJ", "DJIBOUTI", NULL);
INSERT INTO `wp_mp_country` VALUES("57", "DK", "DENMARK", NULL);
INSERT INTO `wp_mp_country` VALUES("58", "DM", "DOMINICA", NULL);
INSERT INTO `wp_mp_country` VALUES("59", "DO", "DOMINICAN REPUBLIC", NULL);
INSERT INTO `wp_mp_country` VALUES("60", "DZ", "ALGERIA", NULL);
INSERT INTO `wp_mp_country` VALUES("61", "EC", "ECUADOR", NULL);
INSERT INTO `wp_mp_country` VALUES("62", "EE", "ESTONIA", NULL);
INSERT INTO `wp_mp_country` VALUES("63", "EG", "EGYPT", NULL);
INSERT INTO `wp_mp_country` VALUES("64", "EH", "WESTERN SAHARA", NULL);
INSERT INTO `wp_mp_country` VALUES("65", "ER", "ERITREA", NULL);
INSERT INTO `wp_mp_country` VALUES("66", "ES", "SPAIN", NULL);
INSERT INTO `wp_mp_country` VALUES("67", "ET", "ETHIOPIA", NULL);
INSERT INTO `wp_mp_country` VALUES("68", "FI", "FINLAND", NULL);
INSERT INTO `wp_mp_country` VALUES("69", "FJ", "FIJI", NULL);
INSERT INTO `wp_mp_country` VALUES("70", "FK", "FALKLAND ISLANDS (MALVINAS)", NULL);
INSERT INTO `wp_mp_country` VALUES("71", "FM", "MICRONESIA, FEDERATED STATES OF", NULL);
INSERT INTO `wp_mp_country` VALUES("72", "FO", "FAROE ISLANDS", NULL);
INSERT INTO `wp_mp_country` VALUES("73", "FR", "FRANCE", NULL);
INSERT INTO `wp_mp_country` VALUES("74", "GA", "GABON", NULL);
INSERT INTO `wp_mp_country` VALUES("75", "GB", "UNITED KINGDOM", NULL);
INSERT INTO `wp_mp_country` VALUES("76", "GD", "GRENADA", NULL);
INSERT INTO `wp_mp_country` VALUES("77", "GE", "GEORGIA", NULL);
INSERT INTO `wp_mp_country` VALUES("78", "GF", "FRENCH GUIANA", NULL);
INSERT INTO `wp_mp_country` VALUES("79", "GH", "GHANA", NULL);
INSERT INTO `wp_mp_country` VALUES("80", "GI", "GIBRALTAR", NULL);
INSERT INTO `wp_mp_country` VALUES("81", "GL", "GREENLAND", NULL);
INSERT INTO `wp_mp_country` VALUES("82", "GM", "GAMBIA", NULL);
INSERT INTO `wp_mp_country` VALUES("83", "GN", "GUINEA", NULL);
INSERT INTO `wp_mp_country` VALUES("84", "GP", "GUADELOUPE", NULL);
INSERT INTO `wp_mp_country` VALUES("85", "GQ", "EQUATORIAL GUINEA", NULL);
INSERT INTO `wp_mp_country` VALUES("86", "GR", "GREECE", NULL);
INSERT INTO `wp_mp_country` VALUES("87", "GS", "SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS", NULL);
INSERT INTO `wp_mp_country` VALUES("88", "GT", "GUATEMALA", NULL);
INSERT INTO `wp_mp_country` VALUES("89", "GU", "GUAM", NULL);
INSERT INTO `wp_mp_country` VALUES("90", "GW", "GUINEA-BISSAU", NULL);
INSERT INTO `wp_mp_country` VALUES("91", "GY", "GUYANA", NULL);
INSERT INTO `wp_mp_country` VALUES("92", "HK", "HONG KONG", NULL);
INSERT INTO `wp_mp_country` VALUES("93", "HM", "HEARD ISLAND AND MCDONALD ISLANDS", NULL);
INSERT INTO `wp_mp_country` VALUES("94", "HN", "HONDURAS", NULL);
INSERT INTO `wp_mp_country` VALUES("95", "HR", "CROATIA", NULL);
INSERT INTO `wp_mp_country` VALUES("96", "HT", "HAITI", NULL);
INSERT INTO `wp_mp_country` VALUES("97", "HU", "HUNGARY", NULL);
INSERT INTO `wp_mp_country` VALUES("98", "ID", "INDONESIA", NULL);
INSERT INTO `wp_mp_country` VALUES("99", "IE", "IRELAND", NULL);
INSERT INTO `wp_mp_country` VALUES("100", "IL", "ISRAEL", NULL);
INSERT INTO `wp_mp_country` VALUES("101", "IN", "INDIA", NULL);
INSERT INTO `wp_mp_country` VALUES("102", "IO", "BRITISH INDIAN OCEAN TERRITORY", NULL);
INSERT INTO `wp_mp_country` VALUES("103", "IQ", "IRAQ", NULL);
INSERT INTO `wp_mp_country` VALUES("104", "IR", "IRAN, ISLAMIC REPUBLIC OF", NULL);
INSERT INTO `wp_mp_country` VALUES("105", "IS", "ICELAND", NULL);
INSERT INTO `wp_mp_country` VALUES("106", "IT", "ITALY", NULL);
INSERT INTO `wp_mp_country` VALUES("107", "JM", "JAMAICA", NULL);
INSERT INTO `wp_mp_country` VALUES("108", "JO", "JORDAN", NULL);
INSERT INTO `wp_mp_country` VALUES("109", "JP", "JAPAN", NULL);
INSERT INTO `wp_mp_country` VALUES("110", "KE", "KENYA", NULL);
INSERT INTO `wp_mp_country` VALUES("111", "KG", "KYRGYZSTAN", NULL);
INSERT INTO `wp_mp_country` VALUES("112", "KH", "CAMBODIA", NULL);
INSERT INTO `wp_mp_country` VALUES("113", "KI", "KIRIBATI", NULL);
INSERT INTO `wp_mp_country` VALUES("114", "KM", "COMOROS", NULL);
INSERT INTO `wp_mp_country` VALUES("115", "KN", "SAINT KITTS AND NEVIS", NULL);
INSERT INTO `wp_mp_country` VALUES("116", "KP", "KOREA, DEMOCRATIC PEOPLE\'S REPUBLIC OF", NULL);
INSERT INTO `wp_mp_country` VALUES("117", "KR", "KOREA, REPUBLIC OF", NULL);
INSERT INTO `wp_mp_country` VALUES("118", "KW", "KUWAIT", NULL);
INSERT INTO `wp_mp_country` VALUES("119", "KY", "CAYMAN ISLANDS", NULL);
INSERT INTO `wp_mp_country` VALUES("120", "KZ", "KAZAKHSTAN", NULL);
INSERT INTO `wp_mp_country` VALUES("121", "LA", "LAO PEOPLE\'S DEMOCRATIC REPUBLIC", NULL);
INSERT INTO `wp_mp_country` VALUES("122", "LB", "LEBANON", NULL);
INSERT INTO `wp_mp_country` VALUES("123", "LC", "SAINT LUCIA", NULL);
INSERT INTO `wp_mp_country` VALUES("124", "LI", "LIECHTENSTEIN", NULL);
INSERT INTO `wp_mp_country` VALUES("125", "LK", "SRI LANKA", NULL);
INSERT INTO `wp_mp_country` VALUES("126", "LR", "LIBERIA", NULL);
INSERT INTO `wp_mp_country` VALUES("127", "LS", "LESOTHO", NULL);
INSERT INTO `wp_mp_country` VALUES("128", "LT", "LITHUANIA", NULL);
INSERT INTO `wp_mp_country` VALUES("129", "LU", "LUXEMBOURG", NULL);
INSERT INTO `wp_mp_country` VALUES("130", "LV", "LATVIA", NULL);
INSERT INTO `wp_mp_country` VALUES("131", "LY", "LIBYAN ARAB JAMAHIRIYA", NULL);
INSERT INTO `wp_mp_country` VALUES("132", "MA", "MOROCCO", NULL);
INSERT INTO `wp_mp_country` VALUES("133", "MC", "MONACO", NULL);
INSERT INTO `wp_mp_country` VALUES("134", "MD", "MOLDOVA, REPUBLIC OF", NULL);
INSERT INTO `wp_mp_country` VALUES("135", "MG", "MADAGASCAR", NULL);
INSERT INTO `wp_mp_country` VALUES("136", "MH", "MARSHALL ISLANDS", NULL);
INSERT INTO `wp_mp_country` VALUES("137", "MK", "MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF", NULL);
INSERT INTO `wp_mp_country` VALUES("138", "ML", "MALI", NULL);
INSERT INTO `wp_mp_country` VALUES("139", "MM", "MYANMAR", NULL);
INSERT INTO `wp_mp_country` VALUES("140", "MN", "MONGOLIA", NULL);
INSERT INTO `wp_mp_country` VALUES("141", "MO", "MACAO", NULL);
INSERT INTO `wp_mp_country` VALUES("142", "MP", "NORTHERN MARIANA ISLANDS", NULL);
INSERT INTO `wp_mp_country` VALUES("143", "MQ", "MARTINIQUE", NULL);
INSERT INTO `wp_mp_country` VALUES("144", "MR", "MAURITANIA", NULL);
INSERT INTO `wp_mp_country` VALUES("145", "MS", "MONTSERRAT", NULL);
INSERT INTO `wp_mp_country` VALUES("146", "MT", "MALTA", NULL);
INSERT INTO `wp_mp_country` VALUES("147", "MU", "MAURITIUS", NULL);
INSERT INTO `wp_mp_country` VALUES("148", "MV", "MALDIVES", NULL);
INSERT INTO `wp_mp_country` VALUES("149", "MW", "MALAWI", NULL);
INSERT INTO `wp_mp_country` VALUES("150", "MX", "MEXICO", NULL);
INSERT INTO `wp_mp_country` VALUES("151", "MY", "MALAYSIA", NULL);
INSERT INTO `wp_mp_country` VALUES("152", "MZ", "MOZAMBIQUE", NULL);
INSERT INTO `wp_mp_country` VALUES("153", "NA", "NAMIBIA", NULL);
INSERT INTO `wp_mp_country` VALUES("154", "NC", "NEW CALEDONIA", NULL);
INSERT INTO `wp_mp_country` VALUES("155", "NE", "NIGER", NULL);
INSERT INTO `wp_mp_country` VALUES("156", "NF", "NORFOLK ISLAND", NULL);
INSERT INTO `wp_mp_country` VALUES("157", "NG", "NIGERIA", NULL);
INSERT INTO `wp_mp_country` VALUES("158", "NI", "NICARAGUA", NULL);
INSERT INTO `wp_mp_country` VALUES("159", "NL", "NETHERLANDS", NULL);
INSERT INTO `wp_mp_country` VALUES("160", "NO", "NORWAY", NULL);
INSERT INTO `wp_mp_country` VALUES("161", "NP", "NEPAL", NULL);
INSERT INTO `wp_mp_country` VALUES("162", "NR", "NAURU", NULL);
INSERT INTO `wp_mp_country` VALUES("163", "NU", "NIUE", NULL);
INSERT INTO `wp_mp_country` VALUES("164", "NZ", "NEW ZEALAND", NULL);
INSERT INTO `wp_mp_country` VALUES("165", "OM", "OMAN", NULL);
INSERT INTO `wp_mp_country` VALUES("166", "PA", "PANAMA", NULL);
INSERT INTO `wp_mp_country` VALUES("167", "PE", "PERU", NULL);
INSERT INTO `wp_mp_country` VALUES("168", "PF", "FRENCH POLYNESIA", NULL);
INSERT INTO `wp_mp_country` VALUES("169", "PG", "PAPUA NEW GUINEA", NULL);
INSERT INTO `wp_mp_country` VALUES("170", "PH", "PHILIPPINES", NULL);
INSERT INTO `wp_mp_country` VALUES("171", "PK", "PAKISTAN", NULL);
INSERT INTO `wp_mp_country` VALUES("172", "PL", "POLAND", NULL);
INSERT INTO `wp_mp_country` VALUES("173", "PM", "SAINT PIERRE AND MIQUELON", NULL);
INSERT INTO `wp_mp_country` VALUES("174", "PN", "PITCAIRN", NULL);
INSERT INTO `wp_mp_country` VALUES("175", "PR", "PUERTO RICO", NULL);
INSERT INTO `wp_mp_country` VALUES("176", "PS", "PALESTINIAN TERRITORY, OCCUPIED", NULL);
INSERT INTO `wp_mp_country` VALUES("177", "PT", "PORTUGAL", NULL);
INSERT INTO `wp_mp_country` VALUES("178", "PW", "PALAU", NULL);
INSERT INTO `wp_mp_country` VALUES("179", "PY", "PARAGUAY", NULL);
INSERT INTO `wp_mp_country` VALUES("180", "QA", "QATAR", NULL);
INSERT INTO `wp_mp_country` VALUES("181", "RE", "REUNION", NULL);
INSERT INTO `wp_mp_country` VALUES("182", "RO", "ROMANIA", NULL);
INSERT INTO `wp_mp_country` VALUES("183", "RU", "RUSSIAN FEDERATION", NULL);
INSERT INTO `wp_mp_country` VALUES("184", "RW", "RWANDA", NULL);
INSERT INTO `wp_mp_country` VALUES("185", "SA", "SAUDI ARABIA", NULL);
INSERT INTO `wp_mp_country` VALUES("186", "SB", "SOLOMON ISLANDS", NULL);
INSERT INTO `wp_mp_country` VALUES("187", "SC", "SEYCHELLES", NULL);
INSERT INTO `wp_mp_country` VALUES("188", "SD", "SUDAN", NULL);
INSERT INTO `wp_mp_country` VALUES("189", "SE", "SWEDEN", NULL);
INSERT INTO `wp_mp_country` VALUES("190", "SG", "SINGAPORE", NULL);
INSERT INTO `wp_mp_country` VALUES("191", "SH", "SAINT HELENA", NULL);
INSERT INTO `wp_mp_country` VALUES("192", "SI", "SLOVENIA", NULL);
INSERT INTO `wp_mp_country` VALUES("193", "SJ", "SVALBARD AND JAN MAYEN", NULL);
INSERT INTO `wp_mp_country` VALUES("194", "SK", "SLOVAKIA", NULL);
INSERT INTO `wp_mp_country` VALUES("195", "SL", "SIERRA LEONE", NULL);
INSERT INTO `wp_mp_country` VALUES("196", "SM", "SAN MARINO", NULL);
INSERT INTO `wp_mp_country` VALUES("197", "SN", "SENEGAL", NULL);
INSERT INTO `wp_mp_country` VALUES("198", "SO", "SOMALIA", NULL);
INSERT INTO `wp_mp_country` VALUES("199", "SR", "SURINAME", NULL);
INSERT INTO `wp_mp_country` VALUES("200", "ST", "SAO TOME AND PRINCIPE", NULL);
INSERT INTO `wp_mp_country` VALUES("201", "SV", "EL SALVADOR", NULL);
INSERT INTO `wp_mp_country` VALUES("202", "SY", "SYRIAN ARAB REPUBLIC", NULL);
INSERT INTO `wp_mp_country` VALUES("203", "SZ", "SWAZILAND", NULL);
INSERT INTO `wp_mp_country` VALUES("204", "TC", "TURKS AND CAICOS ISLANDS", NULL);
INSERT INTO `wp_mp_country` VALUES("205", "TD", "CHAD", NULL);
INSERT INTO `wp_mp_country` VALUES("206", "TF", "FRENCH SOUTHERN TERRITORIES", NULL);
INSERT INTO `wp_mp_country` VALUES("207", "TG", "TOGO", NULL);
INSERT INTO `wp_mp_country` VALUES("208", "TH", "THAILAND", NULL);
INSERT INTO `wp_mp_country` VALUES("209", "TJ", "TAJIKISTAN", NULL);
INSERT INTO `wp_mp_country` VALUES("210", "TK", "TOKELAU", NULL);
INSERT INTO `wp_mp_country` VALUES("211", "TL", "TIMOR-LESTE", NULL);
INSERT INTO `wp_mp_country` VALUES("212", "TM", "TURKMENISTAN", NULL);
INSERT INTO `wp_mp_country` VALUES("213", "TN", "TUNISIA", NULL);
INSERT INTO `wp_mp_country` VALUES("214", "TO", "TONGA", NULL);
INSERT INTO `wp_mp_country` VALUES("215", "TR", "TURKEY", NULL);
INSERT INTO `wp_mp_country` VALUES("216", "TT", "TRINIDAD AND TOBAGO", NULL);
INSERT INTO `wp_mp_country` VALUES("217", "TV", "TUVALU", NULL);
INSERT INTO `wp_mp_country` VALUES("218", "TW", "TAIWAN, PROVINCE OF CHINA", NULL);
INSERT INTO `wp_mp_country` VALUES("219", "TZ", "TANZANIA, UNITED REPUBLIC OF", NULL);
INSERT INTO `wp_mp_country` VALUES("220", "UA", "UKRAINE", NULL);
INSERT INTO `wp_mp_country` VALUES("221", "UG", "UGANDA", NULL);
INSERT INTO `wp_mp_country` VALUES("222", "UM", "UNITED STATES MINOR OUTLYING ISLANDS", NULL);
INSERT INTO `wp_mp_country` VALUES("223", "US", "UNITED STATES", NULL);
INSERT INTO `wp_mp_country` VALUES("224", "UY", "URUGUAY", NULL);
INSERT INTO `wp_mp_country` VALUES("225", "UZ", "UZBEKISTAN", NULL);
INSERT INTO `wp_mp_country` VALUES("226", "VA", "HOLY SEE (VATICAN CITY STATE)", NULL);
INSERT INTO `wp_mp_country` VALUES("227", "VC", "SAINT VINCENT AND THE GRENADINES", NULL);
INSERT INTO `wp_mp_country` VALUES("228", "VE", "VENEZUELA", NULL);
INSERT INTO `wp_mp_country` VALUES("229", "VG", "VIRGIN ISLANDS, BRITISH", NULL);
INSERT INTO `wp_mp_country` VALUES("230", "VI", "VIRGIN ISLANDS, U.S.", NULL);
INSERT INTO `wp_mp_country` VALUES("231", "VN", "VIET NAM", NULL);
INSERT INTO `wp_mp_country` VALUES("232", "VU", "VANUATU", NULL);
INSERT INTO `wp_mp_country` VALUES("233", "WF", "WALLIS AND FUTUNA", NULL);
INSERT INTO `wp_mp_country` VALUES("234", "WS", "SAMOA", NULL);
INSERT INTO `wp_mp_country` VALUES("235", "YE", "YEMEN", NULL);
INSERT INTO `wp_mp_country` VALUES("236", "YT", "MAYOTTE", NULL);
INSERT INTO `wp_mp_country` VALUES("237", "ZA", "SOUTH AFRICA", NULL);
INSERT INTO `wp_mp_country` VALUES("238", "ZM", "ZAMBIA", NULL);
INSERT INTO `wp_mp_country` VALUES("239", "ZW", "ZIMBABWE", NULL);

/* INSERT TABLE DATA: wp_mp_payment_methods */
INSERT INTO `wp_mp_payment_methods` VALUES("1", "PayPal", "PayPal", "paypal", "1", "1");

/* INSERT TABLE DATA: wp_options */
INSERT INTO `wp_options` VALUES("1", "siteurl", "http://chequerbox.co.za/", "yes");
INSERT INTO `wp_options` VALUES("2", "home", "http://chequerbox.co.za/", "yes");
INSERT INTO `wp_options` VALUES("3", "blogname", "Chequerbox", "yes");
INSERT INTO `wp_options` VALUES("4", "blogdescription", "", "yes");
INSERT INTO `wp_options` VALUES("5", "users_can_register", "0", "yes");
INSERT INTO `wp_options` VALUES("6", "admin_email", "anneke.weber@yahoo.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", "1", "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", "1", "yes");
INSERT INTO `wp_options` VALUES("27", "moderation_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("28", "permalink_structure", "/%postname%/", "yes");
INSERT INTO `wp_options` VALUES("29", "gzipcompression", "0", "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:16:{i:0;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:1;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:45:\"custom-facebook-feed/custom-facebook-feed.php\";i:4;s:25:\"duplicator/duplicator.php\";i:5;s:19:\"jetpack/jetpack.php\";i:6;s:33:\"posts-for-page/posts-for-page.php\";i:7;s:39:\"siteorigin-panels/siteorigin-panels.php\";i:8;s:43:\"visual-form-builder/visual-form-builder.php\";i:9;s:47:\"woocommerce-gateway-payfast/gateway-payfast.php\";i:10;s:27:\"woocommerce/woocommerce.php\";i:11;s:27:\"woosidebars/woosidebars.php\";i:12;s:39:\"woothemes-updater/woothemes-updater.php\";i:13;s:24:\"wordpress-seo/wp-seo.php\";i:14;s:31:\"wp-lightbox-2/wp-lightbox-2.php\";i:15;s:29:\"wp-menu-cart/wp-menu-cart.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", "advanced_edit", "0", "yes");
INSERT INTO `wp_options` VALUES("37", "comment_max_links", "2", "yes");
INSERT INTO `wp_options` VALUES("38", "gmt_offset", "0", "yes");
INSERT INTO `wp_options` VALUES("39", "default_email_category", "1", "yes");
INSERT INTO `wp_options` VALUES("40", "recently_edited", "a:5:{i:0;s:70:\"/home/chequpkb/public_html/wp-content/themes/accesspress-ray/style.css\";i:2;s:71:\"/home/chequpkb/public_html/wp-content/themes/accesspress-ray/header.php\";i:3;s:77:\"/home/chequpkb/public_html/wp2015/wp-content/themes/accesspress-ray/style.css\";i:4;s:81:\"/home/chequpkb/public_html/wp2015/wp-content/themes/accesspress-ray/index-one.php\";i:5;s:78:\"/home/chequpkb/public_html/wp2015/wp-content/themes/accesspress-ray/header.php\";}", "no");
INSERT INTO `wp_options` VALUES("41", "template", "accesspress-ray", "yes");
INSERT INTO `wp_options` VALUES("42", "stylesheet", "accesspress-ray", "yes");
INSERT INTO `wp_options` VALUES("43", "comment_whitelist", "1", "yes");
INSERT INTO `wp_options` VALUES("44", "blacklist_keys", "", "no");
INSERT INTO `wp_options` VALUES("45", "comment_registration", "", "yes");
INSERT INTO `wp_options` VALUES("46", "html_type", "text/html", "yes");
INSERT INTO `wp_options` VALUES("47", "use_trackback", "0", "yes");
INSERT INTO `wp_options` VALUES("48", "default_role", "subscriber", "yes");
INSERT INTO `wp_options` VALUES("49", "db_version", "33056", "yes");
INSERT INTO `wp_options` VALUES("50", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `wp_options` VALUES("51", "upload_path", "", "yes");
INSERT INTO `wp_options` VALUES("52", "blog_public", "1", "yes");
INSERT INTO `wp_options` VALUES("53", "default_link_category", "2", "yes");
INSERT INTO `wp_options` VALUES("54", "show_on_front", "posts", "yes");
INSERT INTO `wp_options` VALUES("55", "tag_base", "", "yes");
INSERT INTO `wp_options` VALUES("56", "show_avatars", "1", "yes");
INSERT INTO `wp_options` VALUES("57", "avatar_rating", "G", "yes");
INSERT INTO `wp_options` VALUES("58", "upload_url_path", "", "yes");
INSERT INTO `wp_options` VALUES("59", "thumbnail_size_w", "150", "yes");
INSERT INTO `wp_options` VALUES("60", "thumbnail_size_h", "150", "yes");
INSERT INTO `wp_options` VALUES("61", "thumbnail_crop", "1", "yes");
INSERT INTO `wp_options` VALUES("62", "medium_size_w", "300", "yes");
INSERT INTO `wp_options` VALUES("63", "medium_size_h", "300", "yes");
INSERT INTO `wp_options` VALUES("64", "avatar_default", "mystery", "yes");
INSERT INTO `wp_options` VALUES("65", "large_size_w", "1024", "yes");
INSERT INTO `wp_options` VALUES("66", "large_size_h", "1024", "yes");
INSERT INTO `wp_options` VALUES("67", "image_default_link_type", "file", "yes");
INSERT INTO `wp_options` VALUES("68", "image_default_size", "", "yes");
INSERT INTO `wp_options` VALUES("69", "image_default_align", "", "yes");
INSERT INTO `wp_options` VALUES("70", "close_comments_for_old_posts", "", "yes");
INSERT INTO `wp_options` VALUES("71", "close_comments_days_old", "14", "yes");
INSERT INTO `wp_options` VALUES("72", "thread_comments", "1", "yes");
INSERT INTO `wp_options` VALUES("73", "thread_comments_depth", "5", "yes");
INSERT INTO `wp_options` VALUES("74", "page_comments", "", "yes");
INSERT INTO `wp_options` VALUES("75", "comments_per_page", "50", "yes");
INSERT INTO `wp_options` VALUES("76", "default_comments_page", "newest", "yes");
INSERT INTO `wp_options` VALUES("77", "comment_order", "asc", "yes");
INSERT INTO `wp_options` VALUES("78", "sticky_posts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("79", "widget_categories", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("80", "widget_text", "a:2:{i:2;a:3:{s:5:\"title\";s:19:\"Like us on Facebook\";s:4:\"text\";s:22:\"[custom-facebook-feed]\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("81", "widget_rss", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("82", "uninstall_plugins", "a:3:{s:64:\"stop-spammer-registrations-plugin/stop-spammer-registrations.php\";s:21:\"kpg_sfs_reg_uninstall\";s:57:\"wp-parallax-content-slider/wp-parallax-content-slider.php\";a:2:{i:0;s:23:\"WpParallaxContentSlider\";i:1;s:9:\"uninstall\";}s:45:\"custom-facebook-feed/custom-facebook-feed.php\";s:13:\"cff_uninstall\";}", "no");
INSERT INTO `wp_options` VALUES("83", "timezone_string", "", "yes");
INSERT INTO `wp_options` VALUES("84", "page_for_posts", "787", "yes");
INSERT INTO `wp_options` VALUES("85", "page_on_front", "765", "yes");
INSERT INTO `wp_options` VALUES("86", "default_post_format", "0", "yes");
INSERT INTO `wp_options` VALUES("87", "link_manager_enabled", "0", "yes");
INSERT INTO `wp_options` VALUES("88", "initial_db_version", "30133", "yes");
INSERT INTO `wp_options` VALUES("89", "wp_user_roles", "a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:133:{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:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{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:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:3:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop Manager\";s:12:\"capabilities\";a:110:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;}}s:9:\"wc_author\";a:2:{s:4:\"name\";s:45:\"編集者（マネジメント権限無し）\";s:12:\"capabilities\";a:31:{s:17:\"moderate_comments\";i:1;s:17:\"manage_categories\";i:1;s:12:\"manage_links\";i:1;s:12:\"upload_files\";i:1;s:15:\"unfiltered_html\";i:1;s:10:\"edit_posts\";i:1;s:17:\"edit_others_posts\";i:1;s:20:\"edit_published_posts\";i:1;s:13:\"publish_posts\";i:1;s:10:\"edit_pages\";i:1;s:4:\"read\";i:1;s:7:\"level_4\";i:1;s:7:\"level_3\";i:1;s:7:\"level_2\";i:1;s:7:\"level_1\";i:1;s:7:\"level_0\";i:1;s:17:\"edit_others_pages\";i:1;s:20:\"edit_published_pages\";i:1;s:13:\"publish_pages\";i:1;s:12:\"delete_pages\";i:1;s:19:\"delete_others_pages\";i:1;s:22:\"delete_published_pages\";i:1;s:12:\"delete_posts\";i:1;s:19:\"delete_others_posts\";i:1;s:22:\"delete_published_posts\";i:1;s:20:\"delete_private_posts\";i:1;s:18:\"edit_private_posts\";i:1;s:18:\"read_private_posts\";i:1;s:20:\"delete_private_pages\";i:1;s:18:\"edit_private_pages\";i:1;s:18:\"read_private_pages\";i:1;}}s:13:\"wc_management\";a:2:{s:4:\"name\";s:33:\"編集者（設定権限無し）\";s:12:\"capabilities\";a:32:{s:17:\"moderate_comments\";i:1;s:17:\"manage_categories\";i:1;s:12:\"manage_links\";i:1;s:12:\"upload_files\";i:1;s:15:\"unfiltered_html\";i:1;s:10:\"edit_posts\";i:1;s:17:\"edit_others_posts\";i:1;s:20:\"edit_published_posts\";i:1;s:13:\"publish_posts\";i:1;s:10:\"edit_pages\";i:1;s:4:\"read\";i:1;s:7:\"level_5\";i:1;s:7:\"level_4\";i:1;s:7:\"level_3\";i:1;s:7:\"level_2\";i:1;s:7:\"level_1\";i:1;s:7:\"level_0\";i:1;s:17:\"edit_others_pages\";i:1;s:20:\"edit_published_pages\";i:1;s:13:\"publish_pages\";i:1;s:12:\"delete_pages\";i:1;s:19:\"delete_others_pages\";i:1;s:22:\"delete_published_pages\";i:1;s:12:\"delete_posts\";i:1;s:19:\"delete_others_posts\";i:1;s:22:\"delete_published_posts\";i:1;s:20:\"delete_private_posts\";i:1;s:18:\"edit_private_posts\";i:1;s:18:\"read_private_posts\";i:1;s:20:\"delete_private_pages\";i:1;s:18:\"edit_private_pages\";i:1;s:18:\"read_private_pages\";i:1;}}}", "yes");
INSERT INTO `wp_options` VALUES("90", "widget_search", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("91", "widget_recent-posts", "a:2:{i:3;a:3:{s:5:\"title\";s:8:\"Our Blog\";s:6:\"number\";i:5;s:9:\"show_date\";b:1;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("92", "widget_recent-comments", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("93", "widget_archives", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("94", "widget_meta", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("95", "sidebars_widgets", "a:13:{s:18:\"orphaned_widgets_1\";a:1:{i:0;s:8:\"search-2\";}s:19:\"wp_inactive_widgets\";a:1:{i:0;s:14:\"recent-posts-3\";}s:12:\"left-sidebar\";a:0:{}s:13:\"right-sidebar\";a:3:{i:0;s:22:\"woocommerce_products-2\";i:1;s:6:\"text-2\";i:2;s:12:\"vfb_widget-2\";}s:12:\"shop-sidebar\";a:0:{}s:11:\"textblock-1\";a:0:{}s:11:\"textblock-2\";a:0:{}s:11:\"textblock-3\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:13:\"array_version\";i:3;}", "yes");
INSERT INTO `wp_options` VALUES("96", "spa_theme_options", "a:96:{s:24:\"slider_thumbnails_enable\";s:2:\"no\";s:25:\"slider_bannerstrip_enable\";s:3:\"yes\";s:22:\"spa_bannerstrip_enable\";s:3:\"yes\";s:18:\"color_scheme_style\";s:11:\"default.css\";s:19:\"slider_entries_main\";s:2:\"10\";s:17:\"slide_effect_main\";s:5:\"slide\";s:20:\"animation_speed_main\";s:4:\"1600\";s:24:\"auto_slide_interval_main\";s:4:\"4000\";s:14:\"footer_tagline\";s:5:\"2015.\";s:12:\"upload_image\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/02/WebLogo.jpg\";s:6:\"height\";s:2:\"60\";s:5:\"width\";s:3:\"239\";s:20:\"upload_image_favicon\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/03/FavIcon.png\";s:7:\"call_us\";s:15:\"+27 72 375 6254\";s:12:\"call_us_text\";s:0:\"\";s:21:\"contact_address_title\";s:10:\"Chequerbox\";s:15:\"adress_line_one\";s:11:\"Sunninghill\";s:15:\"adress_line_two\";s:7:\"Gauteng\";s:17:\"adress_line_three\";s:12:\"South Africa\";s:16:\"phone_number_one\";s:15:\"+27 72 375 6254\";s:16:\"phone_number_two\";s:0:\"\";s:10:\"fax_number\";s:0:\"\";s:13:\"email_address\";s:21:\"info@chequerbox.co.za\";s:16:\"open_hours_title\";s:0:\"\";s:13:\"tagline_title\";s:25:\"Solutions we are offering\";s:16:\"tagline_contents\";s:0:\"\";s:12:\"tagline_item\";s:1:\"4\";s:13:\"product_title\";s:17:\"Our Product Range\";s:16:\"product_contents\";s:289:\"In commodo pulvinar metus, id tristique massa ultrices at. Nulla auctor turpis ut mi pulvinar eu accumsan risus sagittis. Mauris nunc ligula, ullamcorper vitae accumsan eu,congue in nulla. Cras hendrerit mi quis nisi semper in sodales nisl faucibus. Sed quis quam eu ante ornare hendrerit.\";s:17:\"spa_product_Title\";a:3:{s:16:\"product_title_px\";s:2:\"42\";s:19:\"product_font_family\";s:15:\"MarketingScript\";s:18:\"product_font_style\";s:6:\"normal\";}s:19:\"spa_menu_typography\";a:4:{s:13:\"navigation_px\";s:2:\"13\";s:16:\"color_navigation\";s:7:\"#72797b\";s:22:\"font_family_navigation\";s:14:\"Raleway-Medium\";s:21:\"font_style_navigation\";s:6:\"Normal\";}s:25:\"spa_post_title_typography\";a:4:{s:13:\"post_title_px\";s:2:\"24\";s:16:\"color_post_title\";s:7:\"#353C3F\";s:22:\"font_family_post_title\";s:6:\"roboto\";s:21:\"font_style_post_title\";s:6:\"Normal\";}s:25:\"spa_post_entry_typography\";a:4:{s:13:\"post_entry_px\";s:2:\"13\";s:16:\"color_post_entry\";s:7:\"#989495\";s:22:\"font_family_post_entry\";s:6:\"roboto\";s:21:\"font_style_post_entry\";s:6:\"Normal\";}s:24:\"spa_post_meta_typography\";a:4:{s:12:\"post_meta_px\";s:2:\"13\";s:15:\"color_post_meta\";s:7:\"#9a9a9a\";s:21:\"font_family_post_meta\";s:6:\"roboto\";s:20:\"font_style_post_meta\";s:6:\"Normal\";}s:25:\"spa_sidebar_widget_titles\";a:4:{s:24:\"sidebar_widget_titles_px\";s:2:\"18\";s:27:\"color_sidebar_widget_titles\";s:7:\"#4A4849\";s:33:\"font_family_sidebar_widget_titles\";s:6:\"roboto\";s:32:\"font_style_sidebar_widget_titles\";s:6:\"Normal\";}s:14:\"spa_custom_css\";s:0:\"\";s:13:\"weekdays_time\";s:0:\"\";s:13:\"weekends_time\";s:0:\"\";s:3:\"map\";s:57:\"https://www.google.co.za/maps/@-26.0297845,28.0754159,15z\";s:15:\"spa_slider_slug\";s:6:\"slider\";s:17:\"spa_services_slug\";s:7:\"service\";s:25:\"spa_service_category_slug\";s:18:\"service-categories\";s:13:\"spa_team_slug\";s:4:\"team\";s:17:\"spa_products_slug\";s:8:\"products\";s:26:\"spa_products_category_slug\";s:18:\"product-categories\";s:15:\"front_page_data\";a:2:{i:0;s:6:\"slider\";i:1;s:15:\"product section\";}s:10:\"front_page\";s:3:\"yes\";s:8:\"line_one\";s:0:\"\";s:8:\"line_two\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"home_feature\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/02/Wedding.jpg\";s:17:\"first_thumb_image\";s:71:\"http://chequerbox.co.za/wp-content/uploads/2015/02/slider-1-366x146.jpg\";s:18:\"second_thumb_image\";s:71:\"http://chequerbox.co.za/wp-content/uploads/2015/02/slider-2-366x146.jpg\";s:17:\"third_thumb_image\";s:71:\"http://chequerbox.co.za/wp-content/uploads/2015/02/slider-3-366x146.jpg\";s:15:\"enable_services\";s:3:\"yes\";s:14:\"service1_title\";s:16:\"Wedding Gift Box\";s:14:\"service1_image\";s:72:\"http://chequerbox.co.za/wp-content/uploads/2015/02/Web_3-1024x207_01.jpg\";s:16:\"service1_content\";s:172:\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas In in massa urna, vitae vestibulum orci. yoursb Maecenas quis est sed mauris...\";s:14:\"service2_title\";s:13:\"Baby Medi-box\";s:14:\"service2_image\";s:73:\"http://chequerbox.co.za/wp-content/uploads/2015/02/Web_3-1024x207_021.jpg\";s:16:\"service2_content\";s:172:\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas In in massa urna, vitae vestibulum orci. yoursb Maecenas quis est sed mauris...\";s:14:\"service3_title\";s:28:\"Photo Booths & Green Screens\";s:14:\"service3_image\";s:72:\"http://chequerbox.co.za/wp-content/uploads/2015/02/Web_3-1024x207_03.jpg\";s:16:\"service3_content\";s:172:\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas In in massa urna, vitae vestibulum orci. yoursb Maecenas quis est sed mauris...\";s:14:\"service4_title\";s:15:\"The Vending Box\";s:14:\"service4_image\";s:72:\"http://chequerbox.co.za/wp-content/uploads/2015/02/Web_3-1024x207_04.jpg\";s:16:\"service4_content\";s:172:\"Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas In in massa urna, vitae vestibulum orci. yoursb Maecenas quis est sed mauris...\";s:14:\"product1_title\";s:10:\"Baby Chair\";s:14:\"product1_image\";s:65:\"http://chequerbox.co.za/wp-content/uploads/2015/02/85-250x250.jpg\";s:14:\"product2_title\";s:13:\"Baby Medi Aid\";s:14:\"product2_image\";s:80:\"http://chequerbox.co.za/wp-content/uploads/2015/02/Baby-Aid_Front_v2-250x250.jpg\";s:14:\"product3_title\";s:4:\"Bags\";s:14:\"product3_image\";s:90:\"http://chequerbox.co.za/wp-content/uploads/2015/02/Jenam-Shopper-Bag-Polka-Dot-250x250.jpg\";s:14:\"product4_title\";s:11:\"Wedding Box\";s:14:\"product4_image\";s:87:\"http://chequerbox.co.za/wp-content/uploads/2015/02/Wedding-Survival-Kit_Top-250x250.jpg\";s:14:\"product5_title\";s:16:\"Vending Machines\";s:14:\"product5_image\";s:73:\"http://chequerbox.co.za/wp-content/uploads/2015/02/Web_3-1024x207_041.jpg\";s:10:\"footer_url\";s:30:\"mailto: anneke.weber@yahoo.com\";s:17:\"footer_designedby\";s:12:\"Anneke Weber\";s:25:\"banner_title_one_category\";s:12:\"GET YOURSELF\";s:25:\"banner_title_two_category\";s:9:\"REFRESHED\";s:27:\"banner_description_category\";s:242:\" Banner Description Donec justo odio, lobortis eget congue sed, rutrum sit amet mauris. Curabitur sed lectus nulla. Curabitur sed lectus nulla.lobortis eget congue sed, rutrum sit amet mauris. Curabitur sed lectus nulla rutrum sit amet mauris\";s:23:\"banner_title_one_author\";s:12:\"GET YOURSELF\";s:23:\"banner_title_two_author\";s:9:\"REFRESHED\";s:25:\"banner_description_author\";s:242:\" Banner Description Donec justo odio, lobortis eget congue sed, rutrum sit amet mauris. Curabitur sed lectus nulla. Curabitur sed lectus nulla.lobortis eget congue sed, rutrum sit amet mauris. Curabitur sed lectus nulla rutrum sit amet mauris\";s:20:\"banner_number_author\";s:10:\"9998131659\";s:20:\"banner_title_one_404\";s:12:\"GET YOURSELF\";s:20:\"banner_title_two_404\";s:9:\"REFRESHED\";s:22:\"banner_description_404\";s:242:\" Banner Description Donec justo odio, lobortis eget congue sed, rutrum sit amet mauris. Curabitur sed lectus nulla. Curabitur sed lectus nulla.lobortis eget congue sed, rutrum sit amet mauris. Curabitur sed lectus nulla rutrum sit amet mauris\";s:20:\"banner_title_one_tag\";s:12:\"GET YOURSELF\";s:20:\"banner_title_two_tag\";s:9:\"REFRESHED\";s:22:\"banner_description_tag\";s:242:\" Banner Description Donec justo odio, lobortis eget congue sed, rutrum sit amet mauris. Curabitur sed lectus nulla. Curabitur sed lectus nulla.lobortis eget congue sed, rutrum sit amet mauris. Curabitur sed lectus nulla rutrum sit amet mauris\";s:23:\"banner_title_one_search\";s:12:\"GET YOURSELF\";s:23:\"banner_title_two_search\";s:9:\"REFRESHED\";s:25:\"banner_description_search\";s:242:\" Banner Description Donec justo odio, lobortis eget congue sed, rutrum sit amet mauris. Curabitur sed lectus nulla. Curabitur sed lectus nulla.lobortis eget congue sed, rutrum sit amet mauris. Curabitur sed lectus nulla rutrum sit amet mauris\";s:14:\"spa_home_Title\";a:3:{s:13:\"home_title_px\";s:2:\"42\";s:16:\"home_font_family\";s:15:\"MarketingScript\";s:15:\"home_font_style\";s:6:\"normal\";}}", "yes");
INSERT INTO `wp_options` VALUES("97", "cron", "a:12:{i:1444138391;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1444139723;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1444153485;a:2:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1444156932;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:1444159080;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1444163594;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1444163696;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1444176000;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1444204164;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:1444213568;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1446508800;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}s:7:\"version\";i:2;}", "yes");
INSERT INTO `wp_options` VALUES("106", "_transient_random_seed", "b9fcacc26a397287ff6d9322decc8205", "yes");
INSERT INTO `wp_options` VALUES("128", "recently_activated", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("188", "_transient_twentyfourteen_category_count", "1", "yes");
INSERT INTO `wp_options` VALUES("189", "current_theme", "AccessPress Ray", "yes");
INSERT INTO `wp_options` VALUES("190", "theme_mods_twentyfourteen", "a:3:{i:0;b:0;s:16:\"header_textcolor\";s:6:\"dd3333\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1423073454;s:4:\"data\";a:2:{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\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("191", "theme_switched", "", "yes");
INSERT INTO `wp_options` VALUES("192", "theme_switched_via_customizer", "", "yes");
INSERT INTO `wp_options` VALUES("197", "theme_mods_spasalon", "a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:11:\"header-menu\";i:15;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1425276461;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-primary\";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\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("247", "jetpack_activated", "1", "yes");
INSERT INTO `wp_options` VALUES("248", "jetpack_options", "a:8:{s:7:\"version\";s:16:\"3.7.2:1443980684\";s:11:\"old_version\";s:16:\"3.6.1:1437842728\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:84447697;s:6:\"public\";i:0;s:11:\"master_user\";i:1;s:14:\"last_heartbeat\";i:1444077514;}", "yes");
INSERT INTO `wp_options` VALUES("249", "kpg_stop_sp_reg_options", "a:229:{s:11:\"chkadminlog\";s:1:\"N\";s:6:\"chkaws\";s:1:\"N\";s:13:\"chkcloudflare\";s:1:\"Y\";s:9:\"chkgcache\";s:1:\"Y\";s:15:\"chkgenallowlist\";s:1:\"N\";s:9:\"chkgoogle\";s:1:\"Y\";s:16:\"chkmiscallowlist\";s:1:\"Y\";s:9:\"chkpaypal\";s:1:\"Y\";s:10:\"chkscripts\";s:1:\"Y\";s:10:\"chkvalidip\";s:1:\"Y\";s:7:\"chkwlem\";s:1:\"Y\";s:11:\"chkwluserid\";s:1:\"N\";s:8:\"chkwlist\";s:1:\"Y\";s:16:\"chkyahoomerchant\";s:1:\"Y\";s:8:\"chkemail\";s:1:\"Y\";s:5:\"chkip\";s:1:\"Y\";s:11:\"chkcomments\";s:1:\"Y\";s:9:\"chksignup\";s:1:\"Y\";s:9:\"chkxmlrpc\";s:1:\"Y\";s:9:\"chkwpmail\";s:1:\"Y\";s:14:\"addtoallowlist\";s:1:\"Y\";s:9:\"wlreqmail\";s:1:\"Y\";s:5:\"wlreq\";s:1:\"Y\";s:5:\"redir\";s:1:\"N\";s:10:\"chkcaptcha\";s:1:\"Y\";s:6:\"chkxff\";s:1:\"N\";s:6:\"notify\";s:1:\"Y\";s:8:\"chkspoof\";s:1:\"N\";s:6:\"chk404\";s:1:\"Y\";s:9:\"chkaccept\";s:1:\"Y\";s:8:\"chkadmin\";s:1:\"Y\";s:8:\"chkagent\";s:1:\"Y\";s:9:\"chkamazon\";s:1:\"N\";s:9:\"chkbcache\";s:1:\"Y\";s:7:\"chkblem\";s:1:\"Y\";s:11:\"chkbluserid\";s:1:\"N\";s:7:\"chkblip\";s:1:\"Y\";s:11:\"chkbotscout\";s:1:\"Y\";s:7:\"chkdisp\";s:1:\"Y\";s:8:\"chkdnsbl\";s:1:\"Y\";s:11:\"chkexploits\";s:1:\"Y\";s:13:\"chkgooglesafe\";s:1:\"N\";s:8:\"chkhoney\";s:1:\"Y\";s:10:\"chkhosting\";s:1:\"Y\";s:12:\"chkinvalidip\";s:1:\"Y\";s:7:\"chklong\";s:1:\"Y\";s:9:\"chkbbcode\";s:1:\"Y\";s:10:\"chkreferer\";s:1:\"Y\";s:10:\"chksession\";s:1:\"Y\";s:6:\"chksfs\";s:1:\"Y\";s:12:\"chkspamwords\";s:1:\"N\";s:6:\"chktld\";s:1:\"Y\";s:11:\"chkubiquity\";s:1:\"Y\";s:10:\"chkakismet\";s:1:\"N\";s:8:\"chkmulti\";s:1:\"Y\";s:9:\"badagents\";a:154:{i:0;s:6:\"Abonti\";i:1;s:10:\"aggregator\";i:2;s:9:\"AhrefsBot\";i:3;s:8:\"asterias\";i:4;s:6:\"BDCbot\";i:5;s:7:\"BLEXBot\";i:6;s:13:\"BuiltBotTough\";i:7;s:8:\"Bullseye\";i:8;s:13:\"BunnySlippers\";i:9;s:10:\"ca-crawler\";i:10;s:5:\"CCBot\";i:11;s:9:\"Cegbfeieh\";i:12;s:9:\"CheeseBot\";i:13;s:12:\"CherryPicker\";i:14;s:17:\"CherryPickerElite\";i:15;s:14:\"CherryPickerSE\";i:16;s:14:\"CopyRightCheck\";i:17;s:6:\"cosmos\";i:18;s:25:\"Crescent Internet ToolPak\";i:19;s:8:\"Crescent\";i:20;s:8:\"discobot\";i:21;s:11:\"DittoSpyder\";i:22;s:3:\"DOC\";i:23;s:6:\"DotBot\";i:24;s:14:\"Download Ninja\";i:25;s:11:\"EasouSpider\";i:26;s:14:\"EmailCollector\";i:27;s:11:\"EmailSiphon\";i:28;s:9:\"EmailWolf\";i:29;s:10:\"EroCrawler\";i:30;s:6:\"Exabot\";i:31;s:12:\"ExtractorPro\";i:32;s:9:\"Fasterfox\";i:33;s:11:\"FeedBooster\";i:34;s:6:\"Foobot\";i:35;s:6:\"Genieo\";i:36;s:11:\"grub-client\";i:37;s:7:\"Harvest\";i:38;s:7:\"hloader\";i:39;s:7:\"httplib\";i:40;s:7:\"HTTrack\";i:41;s:10:\"humanlinks\";i:42;s:15:\"ieautodiscovery\";i:43;s:13:\"InfoNaviRobot\";i:44;s:10:\"IstellaBot\";i:45;s:7:\"Java/1.\";i:46;s:8:\"JennyBot\";i:47;s:8:\"k2spider\";i:48;s:13:\"Kenjin Spider\";i:49;s:19:\"Keyword Density/0.9\";i:50;s:6:\"larbin\";i:51;s:7:\"LexiBot\";i:52;s:6:\"libWeb\";i:53;s:6:\"libwww\";i:54;s:16:\"LinkextractorPro\";i:55;s:5:\"linko\";i:56;s:18:\"LinkScan/8.1a Unix\";i:57;s:10:\"LinkWalker\";i:58;s:11:\"LNSpiderguy\";i:59;s:11:\"lwp-trivial\";i:60;s:11:\"lwp-trivial\";i:61;s:6:\"magpie\";i:62;s:9:\"Mata Hari\";i:63;s:15:\"MaxPointCrawler\";i:64;s:9:\"MegaIndex\";i:65;s:21:\"Microsoft URL Control\";i:66;s:6:\"MIIxpc\";i:67;s:6:\"Mippin\";i:68;s:16:\"Missigua Locator\";i:69;s:10:\"Mister PiX\";i:70;s:7:\"MJ12bot\";i:71;s:5:\"moget\";i:72;s:11:\"MSIECrawler\";i:73;s:7:\"NetAnts\";i:74;s:9:\"NICErsPRO\";i:75;s:8:\"Niki-Bot\";i:76;s:5:\"NPBot\";i:77;s:5:\"Nutch\";i:78;s:16:\"Offline Explorer\";i:79;s:21:\"Openfind data gathere\";i:80;s:8:\"Openfind\";i:81;s:13:\"panscient.com\";i:82;s:7:\"PHP/5.{\";i:83;s:16:\"ProPowerBot/2.14\";i:84;s:12:\"ProWebWalker\";i:85;s:13:\"Python-urllib\";i:86;s:17:\"QueryN Metasearch\";i:87;s:10:\"RepoMonkey\";i:88;s:10:\"RepoMonkey\";i:89;s:3:\"RMA\";i:90;s:10:\"SemrushBot\";i:91;s:10:\"SeznamBot \";i:92;s:7:\"SISTRIX\";i:93;s:26:\"sitecheck.Internetseer.com\";i:94;s:11:\"SiteSnagger\";i:95;s:14:\"SnapPreviewBot\";i:96;s:5:\"Sogou\";i:97;s:8:\"SpankBot\";i:98;s:7:\"spanner\";i:99;s:5:\"spbot\";i:100;s:7:\"Spinn3r\";i:101;s:7:\"suzuran\";i:102;s:11:\"Szukacz/1.4\";i:103;s:17:\"Teleport Pro/1.29\";i:104;s:8:\"Teleport\";i:105;s:11:\"TeleportPro\";i:106;s:8:\"Telesoft\";i:107;s:16:\"The Intraformant\";i:108;s:8:\"TheNomad\";i:109;s:12:\"TightTwatBot\";i:110;s:5:\"Titan\";i:111;s:21:\"toCrawl/UrlDispatcher\";i:112;s:10:\"True_Robot\";i:113;s:14:\"True_Robot/1.0\";i:114;s:8:\"turingos\";i:115;s:11:\"TurnitinBot\";i:116;s:10:\"UbiCrawler\";i:117;s:10:\"UnisterBot\";i:118;s:12:\"URLy Warning\";i:119;s:33:\"VCI WebViewer VCI WebViewer Win32\";i:120;s:3:\"VCI\";i:121;s:11:\"WBSearchBot\";i:122;s:18:\"Web Downloader/6.9\";i:123;s:19:\"Web Image Collector\";i:124;s:7:\"WebAuto\";i:125;s:9:\"WebBandit\";i:126;s:14:\"WebBandit/3.50\";i:127;s:14:\"WebCopier v4.0\";i:128;s:9:\"WebCopier\";i:129;s:11:\"WebEnhancer\";i:130;s:22:\"WebmasterWorldForumBot\";i:131;s:9:\"WebReaper\";i:132;s:9:\"WebSauger\";i:133;s:15:\"Website Quester\";i:134;s:11:\"Webster Pro\";i:135;s:11:\"WebStripper\";i:136;s:6:\"WebZip\";i:137;s:6:\"Wotbox\";i:138;s:9:\"wsr-agent\";i:139;s:15:\"WWW-Collector-E\";i:140;s:4:\"Xenu\";i:141;s:6:\"yandex\";i:142;s:3:\"Zao\";i:143;s:4:\"Zeus\";i:144;s:4:\"Zeus\";i:145;s:6:\"ZyBORG\";i:146;s:6:\"coccoc\";i:147;s:7:\"Incutio\";i:148;s:8:\"lmspider\";i:149;s:9:\"memoryBot\";i:150;s:10:\"SemrushBot\";i:151;s:4:\"serf\";i:152;s:7:\"Unknown\";i:153;s:12:\"uptime files\";}s:7:\"badTLDs\";a:0:{}s:5:\"blist\";a:0:{}s:10:\"payoptions\";a:0:{}s:5:\"wlist\";a:9:{i:0;s:14:\"197.76.148.248\";i:1;s:13:\"41.160.80.103\";i:2;s:13:\"197.76.189.18\";i:3;s:14:\"197.76.175.190\";i:4;s:14:\"197.76.160.179\";i:5;s:14:\"197.76.186.241\";i:6;s:14:\"197.76.135.250\";i:7;s:14:\"197.76.136.105\";i:8;s:14:\"197.76.143.103\";}s:9:\"spamwords\";a:94:{i:0;s:7:\"-online\";i:1;s:2:\"4u\";i:2;s:3:\"4-u\";i:3;s:6:\"adipex\";i:4;s:7:\"advicer\";i:5;s:9:\"baccarrat\";i:6;s:9:\"blackjack\";i:7;s:9:\"bllogspot\";i:8;s:6:\"booker\";i:9;s:4:\"byob\";i:10;s:17:\"car-rental-e-site\";i:11;s:18:\"car-rentals-e-site\";i:12;s:12:\"carisoprodol\";i:13;s:6:\"casino\";i:14;s:8:\"chatroom\";i:15;s:6:\"cialis\";i:16;s:6:\"coolhu\";i:17;s:16:\"credit-card-debt\";i:18;s:13:\"credit-report\";i:19;s:4:\"cwas\";i:20;s:6:\"cyclen\";i:21;s:15:\"cyclobenzaprine\";i:22;s:13:\"dating-e-site\";i:23;s:11:\"day-trading\";i:24;s:18:\"debt-consolidation\";i:25;s:18:\"debt-consolidation\";i:26;s:16:\"discreetordering\";i:27;s:9:\"duty-free\";i:28;s:8:\"dutyfree\";i:29;s:11:\"equityloans\";i:30;s:8:\"fioricet\";i:31;s:20:\"flowers-leading-site\";i:32;s:16:\"freenet-shopping\";i:33;s:7:\"freenet\";i:34;s:9:\"gambling-\";i:35;s:9:\"hair-loss\";i:36;s:21:\"health-insurancedeals\";i:37;s:15:\"homeequityloans\";i:38;s:11:\"homefinance\";i:39;s:6:\"holdem\";i:40;s:17:\"hotel-dealse-site\";i:41;s:11:\"hotele-site\";i:42;s:12:\"hotelse-site\";i:43;s:6:\"incest\";i:44;s:16:\"insurance-quotes\";i:45;s:14:\"insurancedeals\";i:46;s:11:\"jrcreations\";i:47;s:7:\"levitra\";i:48;s:11:\"macinstruct\";i:49;s:14:\"mortgagequotes\";i:50;s:15:\"online-gambling\";i:51;s:14:\"onlinegambling\";i:52;s:14:\"ottawavalleyag\";i:53;s:8:\"ownsthis\";i:54;s:5:\"paxil\";i:55;s:5:\"penis\";i:56;s:8:\"pharmacy\";i:57;s:11:\"phentermine\";i:58;s:10:\"poker-chip\";i:59;s:4:\"poze\";i:60;s:5:\"pussy\";i:61;s:17:\"rental-car-e-site\";i:62;s:9:\"ringtones\";i:63;s:9:\"roulette \";i:64;s:7:\"shemale\";i:65;s:12:\"slot-machine\";i:66;s:11:\"thorcarlson\";i:67;s:8:\"top-site\";i:68;s:10:\"top-e-site\";i:69;s:8:\"tramadol\";i:70;s:8:\"trim-spa\";i:71;s:6:\"ultram\";i:72;s:28:\"valeofglamorganconservatives\";i:73;s:6:\"viagra\";i:74;s:5:\"vioxx\";i:75;s:5:\"xanax\";i:76;s:5:\"zolus\";i:77;s:6:\"ambien\";i:78;s:5:\"poker\";i:79;s:5:\"bingo\";i:80;s:8:\"allstate\";i:81;s:8:\"insurnce\";i:82;s:12:\"work-at-home\";i:83;s:10:\"workathome\";i:84;s:10:\"home-based\";i:85;s:9:\"homebased\";i:86;s:11:\"weight-loss\";i:87;s:10:\"weightloss\";i:88;s:17:\"additional-income\";i:89;s:12:\"extra-income\";i:90;s:15:\"email-marketing\";i:91;s:11:\"sibutramine\";i:92;s:4:\"seo-\";i:93;s:9:\"fast-cash\";}s:6:\"apikey\";s:0:\"\";s:8:\"honeyapi\";s:0:\"\";s:11:\"botscoutapi\";s:0:\"\";s:9:\"googleapi\";s:0:\"\";s:18:\"recaptchaapisecret\";s:0:\"\";s:16:\"recaptchaapisite\";s:0:\"\";s:22:\"solvmediaapivchallenge\";s:0:\"\";s:18:\"solvmediaapiverify\";s:0:\"\";s:11:\"blogseyekey\";s:0:\"\";s:8:\"sesstime\";i:4;s:7:\"sfsfreq\";i:0;s:6:\"hnyage\";i:9999;s:7:\"botfreq\";i:0;s:6:\"sfsage\";i:9999;s:8:\"hnylevel\";i:5;s:6:\"botage\";i:9999;s:8:\"multicnt\";i:5;s:9:\"multitime\";i:3;s:9:\"chkafrica\";s:1:\"N\";s:5:\"chkAD\";s:1:\"N\";s:5:\"chkAE\";s:1:\"N\";s:5:\"chkAF\";s:1:\"N\";s:5:\"chkAL\";s:1:\"N\";s:5:\"chkAM\";s:1:\"N\";s:5:\"chkAR\";s:1:\"N\";s:5:\"chkAT\";s:1:\"N\";s:5:\"chkAU\";s:1:\"N\";s:5:\"chkAX\";s:1:\"N\";s:5:\"chkAZ\";s:1:\"N\";s:5:\"chkBA\";s:1:\"N\";s:5:\"chkBB\";s:1:\"N\";s:5:\"chkBD\";s:1:\"N\";s:5:\"chkBE\";s:1:\"N\";s:5:\"chkBG\";s:1:\"N\";s:5:\"chkBH\";s:1:\"N\";s:5:\"chkBN\";s:1:\"N\";s:5:\"chkBO\";s:1:\"N\";s:5:\"chkBR\";s:1:\"N\";s:5:\"chkBS\";s:1:\"N\";s:5:\"chkBY\";s:1:\"N\";s:5:\"chkBZ\";s:1:\"N\";s:5:\"chkCA\";s:1:\"N\";s:5:\"chkCD\";s:1:\"N\";s:5:\"chkCH\";s:1:\"N\";s:5:\"chkCL\";s:1:\"N\";s:5:\"chkCN\";s:1:\"N\";s:5:\"chkCO\";s:1:\"N\";s:5:\"chkCR\";s:1:\"N\";s:5:\"chkCU\";s:1:\"N\";s:5:\"chkCW\";s:1:\"N\";s:5:\"chkCY\";s:1:\"N\";s:5:\"chkCZ\";s:1:\"N\";s:5:\"chkDE\";s:1:\"N\";s:5:\"chkDK\";s:1:\"N\";s:5:\"chkDO\";s:1:\"N\";s:5:\"chkDZ\";s:1:\"N\";s:5:\"chkEC\";s:1:\"N\";s:5:\"chkEE\";s:1:\"N\";s:5:\"chkES\";s:1:\"N\";s:5:\"chkEU\";s:1:\"N\";s:5:\"chkFI\";s:1:\"N\";s:5:\"chkFJ\";s:1:\"N\";s:5:\"chkFR\";s:1:\"N\";s:5:\"chkGB\";s:1:\"N\";s:5:\"chkGE\";s:1:\"N\";s:5:\"chkGF\";s:1:\"N\";s:5:\"chkGI\";s:1:\"N\";s:5:\"chkGP\";s:1:\"N\";s:5:\"chkGR\";s:1:\"N\";s:5:\"chkGT\";s:1:\"N\";s:5:\"chkGU\";s:1:\"N\";s:5:\"chkGY\";s:1:\"N\";s:5:\"chkHK\";s:1:\"N\";s:5:\"chkHN\";s:1:\"N\";s:5:\"chkHR\";s:1:\"N\";s:5:\"chkHT\";s:1:\"N\";s:5:\"chkHU\";s:1:\"N\";s:5:\"chkID\";s:1:\"N\";s:5:\"chkIE\";s:1:\"N\";s:5:\"chkIL\";s:1:\"N\";s:5:\"chkIN\";s:1:\"N\";s:5:\"chkIQ\";s:1:\"N\";s:5:\"chkIR\";s:1:\"N\";s:5:\"chkIS\";s:1:\"N\";s:5:\"chkIT\";s:1:\"N\";s:5:\"chkJM\";s:1:\"N\";s:5:\"chkJO\";s:1:\"N\";s:5:\"chkJP\";s:1:\"N\";s:5:\"chkKG\";s:1:\"N\";s:5:\"chkKH\";s:1:\"N\";s:5:\"chkKR\";s:1:\"N\";s:5:\"chkKW\";s:1:\"N\";s:5:\"chkKY\";s:1:\"N\";s:5:\"chkKZ\";s:1:\"N\";s:5:\"chkLA\";s:1:\"N\";s:5:\"chkLB\";s:1:\"N\";s:5:\"chkLK\";s:1:\"N\";s:5:\"chkLT\";s:1:\"N\";s:5:\"chkLU\";s:1:\"N\";s:5:\"chkLV\";s:1:\"N\";s:5:\"chkMD\";s:1:\"N\";s:5:\"chkMK\";s:1:\"N\";s:5:\"chkMM\";s:1:\"N\";s:5:\"chkMN\";s:1:\"N\";s:5:\"chkMO\";s:1:\"N\";s:5:\"chkMP\";s:1:\"N\";s:5:\"chkMQ\";s:1:\"N\";s:5:\"chkMT\";s:1:\"N\";s:5:\"chkMV\";s:1:\"N\";s:5:\"chkMX\";s:1:\"N\";s:5:\"chkMY\";s:1:\"N\";s:5:\"chkNC\";s:1:\"N\";s:5:\"chkNI\";s:1:\"N\";s:5:\"chkNL\";s:1:\"N\";s:5:\"chkNO\";s:1:\"N\";s:5:\"chkNP\";s:1:\"N\";s:5:\"chkNZ\";s:1:\"N\";s:5:\"chkOM\";s:1:\"N\";s:5:\"chkPA\";s:1:\"N\";s:5:\"chkPE\";s:1:\"N\";s:5:\"chkPG\";s:1:\"N\";s:5:\"chkPH\";s:1:\"N\";s:5:\"chkPK\";s:1:\"N\";s:5:\"chkPL\";s:1:\"N\";s:5:\"chkPR\";s:1:\"N\";s:5:\"chkPS\";s:1:\"N\";s:5:\"chkPT\";s:1:\"N\";s:5:\"chkPW\";s:1:\"N\";s:5:\"chkPY\";s:1:\"N\";s:5:\"chkQA\";s:1:\"N\";s:5:\"chkRO\";s:1:\"N\";s:5:\"chkRS\";s:1:\"N\";s:5:\"chkRU\";s:1:\"N\";s:5:\"chkSA\";s:1:\"N\";s:5:\"chkSE\";s:1:\"N\";s:5:\"chkSG\";s:1:\"N\";s:5:\"chkSI\";s:1:\"N\";s:5:\"chkSK\";s:1:\"N\";s:5:\"chkSV\";s:1:\"N\";s:5:\"chkSX\";s:1:\"N\";s:5:\"chkSY\";s:1:\"N\";s:5:\"chkTH\";s:1:\"N\";s:5:\"chkTJ\";s:1:\"N\";s:5:\"chkTM\";s:1:\"N\";s:5:\"chkTR\";s:1:\"N\";s:5:\"chkTT\";s:1:\"N\";s:5:\"chkTW\";s:1:\"N\";s:5:\"chkUA\";s:1:\"N\";s:5:\"chkUK\";s:1:\"N\";s:5:\"chkUS\";s:1:\"N\";s:5:\"chkUY\";s:1:\"N\";s:5:\"chkUZ\";s:1:\"N\";s:5:\"chkVC\";s:1:\"N\";s:5:\"chkVE\";s:1:\"N\";s:5:\"chkVN\";s:1:\"N\";s:5:\"chkYE\";s:1:\"N\";s:5:\"chkBF\";s:1:\"N\";s:5:\"chkMA\";s:1:\"N\";s:5:\"chkME\";s:1:\"N\";s:5:\"chkZA\";s:1:\"N\";s:7:\"version\";s:4:\"6.09\";s:12:\"kpg_sp_cache\";i:25;s:11:\"kpg_sp_hist\";i:25;s:11:\"kpg_sp_good\";i:2;s:15:\"kpg_sp_cache_em\";i:10;s:8:\"redirurl\";s:0:\"\";s:11:\"logfilesize\";i:0;s:13:\"rejectmessage\";s:89:\"Access Denied<br/>\r\nThis site is protected by the Stop Spammer Registrations Plugin.<br/>\";}", "no");
INSERT INTO `wp_options` VALUES("250", "woocommerce_default_country", "ZA:GP", "yes");
INSERT INTO `wp_options` VALUES("251", "woocommerce_allowed_countries", "specific", "yes");
INSERT INTO `wp_options` VALUES("252", "woocommerce_specific_allowed_countries", "a:1:{i:0;s:2:\"ZA\";}", "yes");
INSERT INTO `wp_options` VALUES("253", "woocommerce_demo_store", "no", "yes");
INSERT INTO `wp_options` VALUES("254", "woocommerce_demo_store_notice", "This is a demo store for testing purposes — no orders shall be fulfilled.", "no");
INSERT INTO `wp_options` VALUES("255", "woocommerce_api_enabled", "yes", "yes");
INSERT INTO `wp_options` VALUES("256", "woocommerce_currency", "ZAR", "yes");
INSERT INTO `wp_options` VALUES("257", "woocommerce_currency_pos", "left", "yes");
INSERT INTO `wp_options` VALUES("258", "woocommerce_price_thousand_sep", ",", "yes");
INSERT INTO `wp_options` VALUES("259", "woocommerce_price_decimal_sep", ".", "yes");
INSERT INTO `wp_options` VALUES("260", "woocommerce_price_num_decimals", "2", "yes");
INSERT INTO `wp_options` VALUES("261", "woocommerce_enable_lightbox", "yes", "yes");
INSERT INTO `wp_options` VALUES("262", "woocommerce_enable_chosen", "yes", "no");
INSERT INTO `wp_options` VALUES("263", "woocommerce_shop_page_id", "765", "yes");
INSERT INTO `wp_options` VALUES("264", "woocommerce_shop_page_display", "", "yes");
INSERT INTO `wp_options` VALUES("265", "woocommerce_category_archive_display", "", "yes");
INSERT INTO `wp_options` VALUES("266", "woocommerce_default_catalog_orderby", "menu_order", "yes");
INSERT INTO `wp_options` VALUES("267", "woocommerce_cart_redirect_after_add", "no", "yes");
INSERT INTO `wp_options` VALUES("268", "woocommerce_enable_ajax_add_to_cart", "yes", "yes");
INSERT INTO `wp_options` VALUES("269", "woocommerce_weight_unit", "kg", "yes");
INSERT INTO `wp_options` VALUES("270", "woocommerce_dimension_unit", "cm", "yes");
INSERT INTO `wp_options` VALUES("271", "woocommerce_enable_review_rating", "no", "no");
INSERT INTO `wp_options` VALUES("272", "woocommerce_review_rating_required", "yes", "no");
INSERT INTO `wp_options` VALUES("273", "woocommerce_review_rating_verification_label", "yes", "no");
INSERT INTO `wp_options` VALUES("274", "woocommerce_review_rating_verification_required", "no", "no");
INSERT INTO `wp_options` VALUES("275", "shop_catalog_image_size", "a:3:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:4:\"crop\";s:1:\"1\";}", "yes");
INSERT INTO `wp_options` VALUES("276", "shop_single_image_size", "a:3:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:4:\"crop\";s:1:\"1\";}", "yes");
INSERT INTO `wp_options` VALUES("277", "shop_thumbnail_image_size", "a:3:{s:5:\"width\";s:3:\"257\";s:6:\"height\";s:3:\"257\";s:4:\"crop\";s:1:\"1\";}", "yes");
INSERT INTO `wp_options` VALUES("278", "woocommerce_file_download_method", "force", "no");
INSERT INTO `wp_options` VALUES("279", "woocommerce_downloads_require_login", "no", "no");
INSERT INTO `wp_options` VALUES("280", "woocommerce_downloads_grant_access_after_payment", "yes", "no");
INSERT INTO `wp_options` VALUES("281", "woocommerce_manage_stock", "yes", "yes");
INSERT INTO `wp_options` VALUES("282", "woocommerce_hold_stock_minutes", "60", "no");
INSERT INTO `wp_options` VALUES("283", "woocommerce_notify_low_stock", "yes", "no");
INSERT INTO `wp_options` VALUES("284", "woocommerce_notify_no_stock", "yes", "no");
INSERT INTO `wp_options` VALUES("285", "woocommerce_stock_email_recipient", "anneke.weber@yahoo.com", "no");
INSERT INTO `wp_options` VALUES("286", "woocommerce_notify_low_stock_amount", "2", "no");
INSERT INTO `wp_options` VALUES("287", "woocommerce_notify_no_stock_amount", "0", "no");
INSERT INTO `wp_options` VALUES("288", "woocommerce_hide_out_of_stock_items", "no", "yes");
INSERT INTO `wp_options` VALUES("289", "woocommerce_stock_format", "", "yes");
INSERT INTO `wp_options` VALUES("290", "woocommerce_calc_taxes", "no", "yes");
INSERT INTO `wp_options` VALUES("291", "woocommerce_prices_include_tax", "no", "yes");
INSERT INTO `wp_options` VALUES("292", "woocommerce_tax_based_on", "shipping", "yes");
INSERT INTO `wp_options` VALUES("293", "woocommerce_default_customer_address", "base", "yes");
INSERT INTO `wp_options` VALUES("294", "woocommerce_shipping_tax_class", "title", "yes");
INSERT INTO `wp_options` VALUES("295", "woocommerce_tax_round_at_subtotal", "no", "yes");
INSERT INTO `wp_options` VALUES("296", "woocommerce_tax_classes", "Reduced Rate\nZero Rate", "yes");
INSERT INTO `wp_options` VALUES("297", "woocommerce_tax_display_shop", "excl", "yes");
INSERT INTO `wp_options` VALUES("298", "woocommerce_price_display_suffix", "", "yes");
INSERT INTO `wp_options` VALUES("299", "woocommerce_tax_display_cart", "excl", "no");
INSERT INTO `wp_options` VALUES("300", "woocommerce_tax_total_display", "itemized", "no");
INSERT INTO `wp_options` VALUES("301", "woocommerce_enable_coupons", "yes", "no");
INSERT INTO `wp_options` VALUES("302", "woocommerce_enable_guest_checkout", "yes", "no");
INSERT INTO `wp_options` VALUES("303", "woocommerce_force_ssl_checkout", "no", "yes");
INSERT INTO `wp_options` VALUES("304", "woocommerce_unforce_ssl_checkout", "no", "yes");
INSERT INTO `wp_options` VALUES("305", "woocommerce_cart_page_id", "766", "yes");
INSERT INTO `wp_options` VALUES("306", "woocommerce_checkout_page_id", "1082", "yes");
INSERT INTO `wp_options` VALUES("307", "woocommerce_terms_page_id", "", "no");
INSERT INTO `wp_options` VALUES("308", "woocommerce_checkout_pay_endpoint", "order-pay", "yes");
INSERT INTO `wp_options` VALUES("309", "woocommerce_checkout_order_received_endpoint", "order-received", "yes");
INSERT INTO `wp_options` VALUES("310", "woocommerce_myaccount_add_payment_method_endpoint", "add-payment-method", "yes");
INSERT INTO `wp_options` VALUES("311", "woocommerce_calc_shipping", "yes", "yes");
INSERT INTO `wp_options` VALUES("312", "woocommerce_enable_shipping_calc", "yes", "no");
INSERT INTO `wp_options` VALUES("313", "woocommerce_shipping_cost_requires_address", "no", "no");
INSERT INTO `wp_options` VALUES("314", "woocommerce_shipping_method_format", "", "no");
INSERT INTO `wp_options` VALUES("315", "woocommerce_ship_to_destination", "shipping", "no");
INSERT INTO `wp_options` VALUES("316", "woocommerce_ship_to_countries", "", "yes");
INSERT INTO `wp_options` VALUES("317", "woocommerce_specific_ship_to_countries", "", "yes");
INSERT INTO `wp_options` VALUES("318", "woocommerce_myaccount_page_id", "768", "yes");
INSERT INTO `wp_options` VALUES("319", "woocommerce_myaccount_view_order_endpoint", "view-order", "yes");
INSERT INTO `wp_options` VALUES("320", "woocommerce_myaccount_edit_account_endpoint", "edit-account", "yes");
INSERT INTO `wp_options` VALUES("321", "woocommerce_myaccount_edit_address_endpoint", "edit-address", "yes");
INSERT INTO `wp_options` VALUES("322", "woocommerce_myaccount_lost_password_endpoint", "lost-password", "yes");
INSERT INTO `wp_options` VALUES("323", "woocommerce_logout_endpoint", "customer-logout", "yes");
INSERT INTO `wp_options` VALUES("324", "woocommerce_enable_signup_and_login_from_checkout", "yes", "no");
INSERT INTO `wp_options` VALUES("325", "woocommerce_enable_myaccount_registration", "no", "no");
INSERT INTO `wp_options` VALUES("326", "woocommerce_enable_checkout_login_reminder", "yes", "no");
INSERT INTO `wp_options` VALUES("327", "woocommerce_registration_generate_username", "yes", "no");
INSERT INTO `wp_options` VALUES("328", "woocommerce_registration_generate_password", "no", "no");
INSERT INTO `wp_options` VALUES("329", "woocommerce_email_from_name", "Chequerbox", "no");
INSERT INTO `wp_options` VALUES("330", "woocommerce_email_from_address", "info@chequerbox.co.za", "no");
INSERT INTO `wp_options` VALUES("331", "woocommerce_email_header_image", "", "no");
INSERT INTO `wp_options` VALUES("332", "woocommerce_email_footer_text", "Chequerbox - Powered by WooCommerce", "no");
INSERT INTO `wp_options` VALUES("333", "woocommerce_email_base_color", "#f2cbe0", "no");
INSERT INTO `wp_options` VALUES("334", "woocommerce_email_background_color", "#f5f5f5", "no");
INSERT INTO `wp_options` VALUES("335", "woocommerce_email_body_background_color", "#fdfdfd", "no");
INSERT INTO `wp_options` VALUES("336", "woocommerce_email_text_color", "#505050", "no");
INSERT INTO `wp_options` VALUES("343", "woodojo-version", "1.5.4", "yes");
INSERT INTO `wp_options` VALUES("344", "woosidebars-version", "1.3.1", "yes");
INSERT INTO `wp_options` VALUES("345", "woothemes-updater-version", "1.1.1", "yes");
INSERT INTO `wp_options` VALUES("348", "woocommerce_meta_box_errors", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("349", "jetpack_log", "a:3:{i:0;a:4:{s:4:\"time\";i:1423168354;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:1;a:4:{s:4:\"time\";i:1423168387;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:84447697;s:4:\"code\";s:9:\"authorize\";}i:2;a:5:{s:4:\"time\";i:1427134451;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:84447697;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:13:\"tiled-gallery\";}}", "no");
INSERT INTO `wp_options` VALUES("353", "jetpack_file_data", "a:1:{s:5:\"3.7.2\";a:48:{s:32:\"897a2742e7839607c0023b456ed14758\";a:13:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:89:\"Check your spelling, style, and grammar with the After the Deadline proofreading service.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"c870c79f222cdc3114d210d3a3502a79\";a:13:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:63:\"Transform standard image galleries into full-screen slideshows.\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:9:\"Jumpstart\";}s:32:\"5626c5d4355e483f5d4356630646d742\";a:13:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:79:\"Let readers comment with WordPress.com, Twitter, Facebook, or Google+ accounts.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";}s:32:\"24c526e6c78dd2c097eee51c33d627ee\";a:13:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:44:\"Insert a contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:9:\"Jumpstart\";}s:32:\"be64897c0a578ee6cadb1a459021fbbe\";a:13:{s:4:\"name\";s:20:\"Custom Content Types\";s:11:\"description\";s:92:\"Organize and display different types of content on your site, separate from posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"6735e720fe2e3f6f2c48fcaf0fe0a157\";a:13:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:57:\"Customize your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"3abad4b5ddebf37a03f03331b17c1e1b\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"e30ae0161f5ef7955a2e22021602969b\";a:13:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Traffic\";}s:32:\"e4e461477edd64344126af366b33ae7c\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"1e285572509707836075afa0b7a0d17a\";a:13:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:9:\"Jumpstart\";}s:32:\"2a62f28abd5ac11bea3ce7a8e9c4d893\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"fd2cbe6ae10ff814cc269d51b32baad9\";a:13:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:46:\"Add support for infinite scroll to your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"931a7a94c663547c5cb6cc430e98dd30\";a:13:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:69:\"Allow applications to securely access your content through the cloud.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:0:\"\";}s:32:\"dd442dc05f950526d584e15e54628bfb\";a:13:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:85:\"Use LaTeX markup language in posts and pages for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"96f2d1988c22688e9e3d8a8cc5ee1b5b\";a:13:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:70:\"Give visitors an easy way to show their appreciation for your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";}s:32:\"f79ea51a248d9f624e0936ef023cffe1\";a:13:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:76:\"Manage all your sites from a centralized place, https://wordpress.com/sites.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:22:\"Recommended, Jumpstart\";}s:32:\"46da83c7358c834dcb193789272f7858\";a:13:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:51:\"Write posts or pages in plain-text Markdown syntax.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"c189740a3e69c5f42f12a191a15c3dbf\";a:13:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:64:\"Optimize your site with a mobile-friendly theme for smartphones.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:11:\"Recommended\";}s:32:\"0f9fdc374b00a8d5ca816aac44e6d3f6\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"6f1872535dd77713441708214388213c\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"65f2f0936d11bffe8cd447696054f38e\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"a8ff13dae8129c451116dea8803b23da\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"0a38341a9df2d2cb6f90e4faf65b4d64\";a:13:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:25:\"Reports on site downtime.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:33:\"Recommended, Performance-Security\";}s:32:\"1c8f61fb80e0f6dd697e6d995431161a\";a:13:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:84:\"Receive notification of site activity via the admin toolbar and your Mobile devices.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:0:\"\";}s:32:\"4ca0a2f31843f3b2a4522fa8b9fb18d3\";a:13:{s:4:\"name\";s:10:\"Omnisearch\";s:11:\"description\";s:66:\"Search your entire database from a single field in your Dashboard.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"16\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:0:\"\";}s:32:\"1f1289f469fe089a9ea32024df083f74\";a:13:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:27:\"Speed up images and photos.\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:44:\"Recommended, Jumpstart, Performance-Security\";}s:32:\"53eb2f9dfe4e9d9b7203d47ab3a0c58e\";a:13:{s:4:\"name\";s:13:\"Post by Email\";s:11:\"description\";s:58:\"Publish posts by email, using any device and email client.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";}s:32:\"df74d4db35fc795c9bf4b7b2e769116d\";a:13:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:28:\"Prevent brute force attacks.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:33:\"Recommended, Performance-Security\";}s:32:\"e8b7c9d9b0be70888c41e139c34eb448\";a:13:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:30:\"Automatically promote content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:20:\"Recommended, Traffic\";}s:32:\"04c7eedf95290d03db05e2fc8682a8da\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"f36c13c725ee67f8fbb85d85b4fa8bdb\";a:13:{s:4:\"name\";s:13:\"Related Posts\";s:11:\"description\";s:24:\"Display similar content.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:31:\"Recommended, Jumpstart, Traffic\";}s:32:\"4034d694a22b9864b7d9dbcc291a01f5\";a:13:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:32:\"Visitors can share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:31:\"Recommended, Jumpstart, Traffic\";}s:32:\"a260ebaa113e875bbbe59b54cd2475b1\";a:13:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:77:\"Embed content from YouTube, Vimeo, SlideShare, and more, no coding necessary.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"48e6f4cc58711b5d627931f72a4f55a2\";a:13:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:56:\"Enable WP.me-powered shortlinks for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";}s:32:\"0361b51d6b8957ba15a90c8893085e51\";a:13:{s:4:\"name\";s:9:\"Site Icon\";s:11:\"description\";s:29:\"Add a site icon to your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:0:\"\";}s:32:\"03045ecc30a51f072431bd2f6ccffc37\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"2e89d8cf494aa4cc028023de2662b571\";a:13:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:27:\"Secure user authentication.\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:31:\"Jumpstart, Performance-Security\";}s:32:\"caf240bf1da3b6f8ec449d7477ac383e\";a:13:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:35:\"Collect traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:20:\"Recommended, Traffic\";}s:32:\"b6ef488128505d6cf819d8a6508a081f\";a:13:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:88:\"Allow users to subscribe to your posts and comments and receive notifications via email.\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:9:\"Jumpstart\";}s:32:\"6c0c9cebc91c7aee0de35562fcb8d0b0\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"f354e2a9f6f0823a628e741e7aa88906\";a:13:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:73:\"Display your image galleries in a variety of sleek, graphic arrangements.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:0:\"\";}s:32:\"fb806f9c3f633a466076615f99329d22\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"c6908213746b1364a541c3fde961936f\";a:13:{s:4:\"name\";s:10:\"VaultPress\";s:11:\"description\";s:27:\"Backups and security scans.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:20:\"Performance-Security\";}s:32:\"df97f3fe6750f6490164e710152d5946\";a:13:{s:4:\"name\";s:17:\"Site Verification\";s:11:\"description\";s:78:\"Verify your site or domain with Google Webmaster Tools, Pinterest, and others.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}s:32:\"5e000fbc427cecaed6e1b8dbf2732462\";a:13:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:68:\"Upload and embed videos right on your site. (Subscription required.)\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:0:\"\";}s:32:\"86f746acdf5d11f8fe753092aec6f619\";a:13:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:57:\"Specify which widgets appear on which pages of your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"b91d486b68701c78e5f2776144c546f4\";a:13:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:79:\"Add images, Twitter streams, your site’s RSS links, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:0:\"\";}s:32:\"98a767d5a9377cc7b8d08fda01d960c0\";a:13:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";}}}", "yes");
INSERT INTO `wp_options` VALUES("354", "jetpack_available_modules", "a:1:{s:5:\"3.7.2\";a:36:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"omnisearch\";s:3:\"2.3\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:9:\"site-icon\";s:3:\"3.2\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";}}", "yes");
INSERT INTO `wp_options` VALUES("355", "jetpack_active_modules", "a:23:{i:0;s:18:\"after-the-deadline\";i:1;s:12:\"contact-form\";i:2;s:20:\"custom-content-types\";i:3;s:10:\"custom-css\";i:4;s:21:\"enhanced-distribution\";i:5;s:19:\"gravatar-hovercards\";i:6;s:8:\"json-api\";i:7;s:5:\"latex\";i:8;s:5:\"notes\";i:9;s:10:\"omnisearch\";i:10;s:13:\"post-by-email\";i:11;s:9:\"publicize\";i:12;s:10:\"sharedaddy\";i:13;s:10:\"shortcodes\";i:14;s:10:\"shortlinks\";i:15;s:5:\"stats\";i:16;s:13:\"subscriptions\";i:18;s:18:\"verification-tools\";i:19;s:17:\"widget-visibility\";i:20;s:7:\"widgets\";i:21;s:13:\"tiled-gallery\";i:22;s:7:\"protect\";i:23;s:6:\"manage\";}", "yes");
INSERT INTO `wp_options` VALUES("357", "stats_options", "a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";i:84447697;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}", "yes");
INSERT INTO `wp_options` VALUES("360", "woocommerce_frontend_css_colors", "a:5:{s:7:\"primary\";s:7:\"#ad74a2\";s:9:\"secondary\";s:7:\"#f7f6f7\";s:9:\"highlight\";s:7:\"#85ad74\";s:10:\"content_bg\";s:7:\"#ffffff\";s:7:\"subtext\";s:7:\"#777777\";}", "yes");
INSERT INTO `wp_options` VALUES("362", "sharing-options", "a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:0:{}s:6:\"custom\";a:0:{}}}", "yes");
INSERT INTO `wp_options` VALUES("366", "_transient_product_query-transient-version", "1436967642", "yes");
INSERT INTO `wp_options` VALUES("374", "_transient_timeout_wc_rating_count_769", "1454705042", "no");
INSERT INTO `wp_options` VALUES("375", "_transient_wc_rating_count_769", "0", "no");
INSERT INTO `wp_options` VALUES("376", "_transient_timeout_wc_average_rating_769", "1454705042", "no");
INSERT INTO `wp_options` VALUES("377", "_transient_wc_average_rating_769", "", "no");
INSERT INTO `wp_options` VALUES("387", "nav_menu_options", "a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("389", "woocommerce_permalinks", "a:4:{s:13:\"category_base\";s:0:\"\";s:8:\"tag_base\";s:0:\"\";s:14:\"attribute_base\";s:0:\"\";s:12:\"product_base\";s:19:\"/shop/%product_cat%\";}", "yes");
INSERT INTO `wp_options` VALUES("443", "kpg_stop_sp_reg_stats", "a:197:{s:6:\"badips\";a:3:{s:12:\"93.61.40.136\";s:19:\"2015/04/15 17:19:29\";s:11:\"93.54.90.35\";s:19:\"2015/04/15 17:19:32\";s:11:\"78.5.29.182\";s:19:\"2015/04/15 17:19:36\";}s:7:\"goodips\";a:1:{s:14:\"197.76.186.241\";s:19:\"2015/02/23 18:18:39\";}s:4:\"hist\";a:26:{s:19:\"2015/04/14 10:43:12\";a:6:{i:0;s:11:\"95.5.197.75\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:21:\"Bad Cache:95.5.197.75\";i:5;s:0:\"\";}s:19:\"2015/04/14 10:43:13\";a:6:{i:0;s:11:\"95.5.197.75\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:21:\"Bad Cache:95.5.197.75\";i:5;s:0:\"\";}s:19:\"2015/04/14 10:43:14\";a:6:{i:0;s:11:\"95.5.197.75\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:21:\"Bad Cache:95.5.197.75\";i:5;s:0:\"\";}s:19:\"2015/04/14 10:43:15\";a:6:{i:0;s:11:\"95.5.197.75\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:21:\"Bad Cache:95.5.197.75\";i:5;s:0:\"\";}s:19:\"2015/04/14 10:43:16\";a:6:{i:0;s:11:\"95.5.197.75\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:21:\"Bad Cache:95.5.197.75\";i:5;s:0:\"\";}s:19:\"2015/04/14 10:43:17\";a:6:{i:0;s:11:\"95.5.197.75\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:21:\"Bad Cache:95.5.197.75\";i:5;s:0:\"\";}s:19:\"2015/04/14 10:43:18\";a:6:{i:0;s:11:\"95.5.197.75\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:21:\"Bad Cache:95.5.197.75\";i:5;s:0:\"\";}s:19:\"2015/04/14 10:43:19\";a:6:{i:0;s:11:\"95.5.197.75\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:21:\"Bad Cache:95.5.197.75\";i:5;s:0:\"\";}s:19:\"2015/04/14 10:43:20\";a:6:{i:0;s:11:\"95.5.197.75\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:21:\"Bad Cache:95.5.197.75\";i:5;s:0:\"\";}s:19:\"2015/04/14 15:38:45\";a:6:{i:0;s:12:\"78.5.173.154\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2015-02-04, frequency=1\";i:5;s:0:\"\";}s:19:\"2015/04/14 15:38:46\";a:6:{i:0;s:11:\"78.4.196.98\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2015-02-04, frequency=1\";i:5;s:0:\"\";}s:19:\"2015/04/14 20:20:55\";a:6:{i:0;s:13:\"23.95.201.219\";i:1;s:24:\"arron.crockett@gawab.com\";i:2;s:18:\"chiapascurioso.com\";i:3;s:21:\"/wp-comments-post.php\";i:4;s:37:\"IPv4 Multicast Address Space Registry\";i:5;s:0:\"\";}s:19:\"2015/04/14 20:56:30\";a:6:{i:0;s:11:\"78.7.191.38\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2014-04-24, frequency=9\";i:5;s:0:\"\";}s:19:\"2015/04/14 20:56:31\";a:6:{i:0;s:11:\"93.54.93.17\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2015-02-28, frequency=3\";i:5;s:0:\"\";}s:19:\"2015/04/14 20:56:33\";a:6:{i:0;s:12:\"78.6.201.202\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2014-04-17, frequency=1\";i:5;s:0:\"\";}s:19:\"2015/04/14 20:56:35\";a:6:{i:0;s:11:\"78.6.144.90\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2015-04-01, frequency=2\";i:5;s:0:\"\";}s:19:\"2015/04/14 22:48:50\";a:6:{i:0;s:12:\"23.94.172.84\";i:1;s:17:\"mvisqrp@gmail.com\";i:2;s:10:\"seo plugin\";i:3;s:21:\"/wp-comments-post.php\";i:4;s:37:\"IPv4 Multicast Address Space Registry\";i:5;s:0:\"\";}s:19:\"2015/04/15 02:09:16\";a:6:{i:0;s:12:\"93.54.97.161\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2015-01-15, frequency=2\";i:5;s:0:\"\";}s:19:\"2015/04/15 07:11:40\";a:6:{i:0;s:12:\"78.7.222.222\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2015-02-04, frequency=1\";i:5;s:0:\"\";}s:19:\"2015/04/15 07:11:44\";a:6:{i:0;s:11:\"78.5.216.26\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2014-10-03, frequency=1\";i:5;s:0:\"\";}s:19:\"2015/04/15 12:15:24\";a:6:{i:0;s:11:\"78.7.123.70\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2015-02-04, frequency=1\";i:5;s:0:\"\";}s:19:\"2015/04/15 12:15:33\";a:6:{i:0;s:12:\"93.61.51.123\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2015-03-16, frequency=4\";i:5;s:0:\"\";}s:19:\"2015/04/15 12:15:42\";a:6:{i:0;s:12:\"78.5.141.166\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2015-02-27, frequency=3\";i:5;s:0:\"\";}s:19:\"2015/04/15 17:19:29\";a:6:{i:0;s:12:\"93.61.40.136\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2015-01-12, frequency=4\";i:5;s:0:\"\";}s:19:\"2015/04/15 17:19:32\";a:6:{i:0;s:11:\"93.54.90.35\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2015-02-14, frequency=1\";i:5;s:0:\"\";}s:19:\"2015/04/15 17:19:36\";a:6:{i:0;s:11:\"78.5.29.182\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:38:\"SFS  last seen=2015-02-04, frequency=1\";i:5;s:0:\"\";}}s:10:\"wlrequests\";a:0:{}s:10:\"addonstats\";a:0:{}s:5:\"multi\";a:1:{s:14:\"197.76.143.103\";a:2:{i:0;s:19:\"2015/04/15 21:04:29\";i:1;i:3;}}s:9:\"cntchkaws\";i:0;s:16:\"cntchkcloudflare\";i:0;s:12:\"cntchkgcache\";i:0;s:18:\"cntchkgenallowlist\";i:0;s:12:\"cntchkgoogle\";i:0;s:19:\"cntchkmiscallowlist\";i:0;s:12:\"cntchkpaypal\";i:0;s:13:\"cntchkscripts\";i:0;s:13:\"cntchkvalidip\";i:0;s:10:\"cntchkwlem\";i:0;s:14:\"cntchkwluserid\";i:0;s:11:\"cntchkwlist\";i:0;s:19:\"cntchkyahoomerchant\";i:0;s:7:\"spcount\";i:407;s:8:\"spmcount\";i:407;s:6:\"cntcap\";i:0;s:7:\"cntncap\";i:0;s:7:\"cntpass\";i:0;s:7:\"spmdate\";s:10:\"2015/03/28\";s:6:\"spdate\";s:10:\"2015/03/28\";s:9:\"cntchk404\";i:1;s:12:\"cntchkaccept\";i:13;s:11:\"cntchkadmin\";i:0;s:14:\"cntchkadminlog\";i:0;s:11:\"cntchkagent\";i:0;s:12:\"cntchkamazon\";i:0;s:13:\"cntchkakismet\";i:0;s:12:\"cntchkbcache\";i:41;s:10:\"cntchkblem\";i:0;s:12:\"cntchkuserid\";i:0;s:10:\"cntchkblip\";i:0;s:14:\"cntchkbotscout\";i:0;s:10:\"cntchkdisp\";i:0;s:11:\"cntchkdnsbl\";i:0;s:14:\"cntchkexploits\";i:0;s:16:\"cntchkgooglesafe\";i:0;s:11:\"cntchkhoney\";i:0;s:13:\"cntchkhosting\";i:0;s:15:\"cntchkinvalidip\";i:2;s:10:\"cntchklong\";i:0;s:12:\"cntchkbbcode\";i:0;s:13:\"cntchkreferer\";i:0;s:13:\"cntchksession\";i:0;s:9:\"cntchksfs\";i:348;s:15:\"cntchkspamwords\";i:0;s:9:\"cntchktld\";i:0;s:14:\"cntchkubiquity\";i:0;s:11:\"cntchkmulti\";i:2;s:12:\"cntchkafrica\";i:0;s:8:\"cntchkAD\";i:0;s:8:\"cntchkAE\";i:0;s:8:\"cntchkAF\";i:0;s:8:\"cntchkAL\";i:0;s:8:\"cntchkAM\";i:0;s:8:\"cntchkAR\";i:0;s:8:\"cntchkAT\";i:0;s:8:\"cntchkAU\";i:0;s:8:\"cntchkAX\";i:0;s:8:\"cntchkAZ\";i:0;s:8:\"cntchkBA\";i:0;s:8:\"cntchkBB\";i:0;s:8:\"cntchkBD\";i:0;s:8:\"cntchkBE\";i:0;s:8:\"cntchkBG\";i:0;s:8:\"cntchkBH\";i:0;s:8:\"cntchkBN\";i:0;s:8:\"cntchkBO\";i:0;s:8:\"cntchkBR\";i:0;s:8:\"cntchkBS\";i:0;s:8:\"cntchkBY\";i:0;s:8:\"cntchkBZ\";i:0;s:8:\"cntchkCA\";i:0;s:8:\"cntchkCD\";i:0;s:8:\"cntchkCH\";i:0;s:8:\"cntchkCL\";i:0;s:8:\"cntchkCN\";i:0;s:8:\"cntchkCO\";i:0;s:8:\"cntchkCR\";i:0;s:8:\"cntchkCU\";i:0;s:8:\"cntchkCW\";i:0;s:8:\"cntchkCY\";i:0;s:8:\"cntchkCZ\";i:0;s:8:\"cntchkDE\";i:0;s:8:\"cntchkDK\";i:0;s:8:\"cntchkDO\";i:0;s:8:\"cntchkDZ\";i:0;s:8:\"cntchkEC\";i:0;s:8:\"cntchkEE\";i:0;s:8:\"cntchkES\";i:0;s:8:\"cntchkEU\";i:0;s:8:\"cntchkFI\";i:0;s:8:\"cntchkFJ\";i:0;s:8:\"cntchkFR\";i:0;s:8:\"cntchkGB\";i:0;s:8:\"cntchkGE\";i:0;s:8:\"cntchkGF\";i:0;s:8:\"cntchkGI\";i:0;s:8:\"cntchkGP\";i:0;s:8:\"cntchkGR\";i:0;s:8:\"cntchkGT\";i:0;s:8:\"cntchkGU\";i:0;s:8:\"cntchkGY\";i:0;s:8:\"cntchkHK\";i:0;s:8:\"cntchkHN\";i:0;s:8:\"cntchkHR\";i:0;s:8:\"cntchkHT\";i:0;s:8:\"cntchkHU\";i:0;s:8:\"cntchkID\";i:0;s:8:\"cntchkIE\";i:0;s:8:\"cntchkIL\";i:0;s:8:\"cntchkIN\";i:0;s:8:\"cntchkIQ\";i:0;s:8:\"cntchkIR\";i:0;s:8:\"cntchkIS\";i:0;s:8:\"cntchkIT\";i:0;s:8:\"cntchkJM\";i:0;s:8:\"cntchkJO\";i:0;s:8:\"cntchkJP\";i:0;s:8:\"cntchkKG\";i:0;s:8:\"cntchkKH\";i:0;s:8:\"cntchkKR\";i:0;s:8:\"cntchkKW\";i:0;s:8:\"cntchkKY\";i:0;s:8:\"cntchkKZ\";i:0;s:8:\"cntchkLA\";i:0;s:8:\"cntchkLB\";i:0;s:8:\"cntchkLK\";i:0;s:8:\"cntchkLT\";i:0;s:8:\"cntchkLU\";i:0;s:8:\"cntchkLV\";i:0;s:8:\"cntchkMD\";i:0;s:8:\"cntchkMK\";i:0;s:8:\"cntchkMM\";i:0;s:8:\"cntchkMN\";i:0;s:8:\"cntchkMO\";i:0;s:8:\"cntchkMP\";i:0;s:8:\"cntchkMQ\";i:0;s:8:\"cntchkMT\";i:0;s:8:\"cntchkMV\";i:0;s:8:\"cntchkMX\";i:0;s:8:\"cntchkMY\";i:0;s:8:\"cntchkNC\";i:0;s:8:\"cntchkNI\";i:0;s:8:\"cntchkNL\";i:0;s:8:\"cntchkNO\";i:0;s:8:\"cntchkNP\";i:0;s:8:\"cntchkNZ\";i:0;s:8:\"cntchkOM\";i:0;s:8:\"cntchkPA\";i:0;s:8:\"cntchkPE\";i:0;s:8:\"cntchkPG\";i:0;s:8:\"cntchkPH\";i:0;s:8:\"cntchkPK\";i:0;s:8:\"cntchkPL\";i:0;s:8:\"cntchkPR\";i:0;s:8:\"cntchkPS\";i:0;s:8:\"cntchkPT\";i:0;s:8:\"cntchkPW\";i:0;s:8:\"cntchkPY\";i:0;s:8:\"cntchkQA\";i:0;s:8:\"cntchkRO\";i:0;s:8:\"cntchkRS\";i:0;s:8:\"cntchkRU\";i:0;s:8:\"cntchkSA\";i:0;s:8:\"cntchkSE\";i:0;s:8:\"cntchkSG\";i:0;s:8:\"cntchkSI\";i:0;s:8:\"cntchkSK\";i:0;s:8:\"cntchkSV\";i:0;s:8:\"cntchkSX\";i:0;s:8:\"cntchkSY\";i:0;s:8:\"cntchkTH\";i:0;s:8:\"cntchkTJ\";i:0;s:8:\"cntchkTM\";i:0;s:8:\"cntchkTR\";i:0;s:8:\"cntchkTT\";i:0;s:8:\"cntchkTW\";i:0;s:8:\"cntchkUA\";i:0;s:8:\"cntchkUK\";i:0;s:8:\"cntchkUS\";i:0;s:8:\"cntchkUY\";i:0;s:8:\"cntchkUZ\";i:0;s:8:\"cntchkVC\";i:0;s:8:\"cntchkVE\";i:0;s:8:\"cntchkVN\";i:0;s:8:\"cntchkYE\";i:0;s:8:\"cntchkBF\";i:0;s:8:\"cntchkMA\";i:0;s:8:\"cntchkME\";i:0;s:8:\"cntchkZA\";i:0;s:7:\"version\";s:4:\"6.09\";}", "no");
INSERT INTO `wp_options` VALUES("452", "stats_cache", "a:2:{s:32:\"f04dcd47f4f02d98f892b0592f237a7d\";a:1:{i:1444123387;a:3:{i:0;a:4:{s:7:\"post_id\";s:1:\"0\";s:10:\"post_title\";s:9:\"Home page\";s:14:\"post_permalink\";s:31:\"http://chequerbox.co.za/wp2015/\";s:5:\"views\";s:1:\"5\";}i:1;a:4:{s:7:\"post_id\";s:3:\"769\";s:10:\"post_title\";s:19:\"Snappi® Baby Chair\";s:14:\"post_permalink\";s:65:\"http://chequerbox.co.za/wp2015/shop/baby-chair/snappi-baby-chair/\";s:5:\"views\";s:1:\"2\";}i:2;a:4:{s:7:\"post_id\";s:4:\"1060\";s:10:\"post_title\";s:25:\"SocialBox Hashtag Printer\";s:14:\"post_permalink\";s:83:\"http://chequerbox.co.za/photo-booth-green-screen-photo-booth-rentals/social-booths/\";s:5:\"views\";s:1:\"1\";}}}s:32:\"0cb0e878abe739048a66c38ab194e4c4\";a:1:{i:1444123388;a:2:{i:0;a:2:{s:10:\"searchterm\";s:26:\"green screen  johannesburg\";s:5:\"views\";s:1:\"1\";}i:1;a:2:{s:10:\"searchterm\";s:12:\"green screen\";s:5:\"views\";s:1:\"1\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("468", "wpns_category", "1", "yes");
INSERT INTO `wp_options` VALUES("469", "wpns_effect", "random", "yes");
INSERT INTO `wp_options` VALUES("470", "wpns_slices", "5", "yes");
INSERT INTO `wp_options` VALUES("471", "wpns_theme", "default", "yes");
INSERT INTO `wp_options` VALUES("533", "prlx_slider_settings", "a:15:{s:4:\"mode\";s:6:\"static\";s:5:\"theme\";s:6:\"silver\";s:11:\"bgincrement\";s:2:\"50\";s:8:\"autoplay\";N;s:8:\"interval\";s:4:\"4000\";s:11:\"first_slide\";s:1:\"1\";s:11:\"nb_articles\";s:1:\"5\";s:15:\"title_max_chars\";s:2:\"30\";s:7:\"sort_by\";s:4:\"date\";s:8:\"order_by\";s:4:\"desc\";s:13:\"default_image\";s:11:\"default.png\";s:15:\"category_filter\";N;s:10:\"categories\";N;s:12:\"text_content\";s:7:\"excerpt\";s:12:\"content_type\";s:4:\"post\";}", "yes");
INSERT INTO `wp_options` VALUES("536", "metaslider_systemcheck", "a:2:{s:16:\"wordPressVersion\";b:0;s:12:\"imageLibrary\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("537", "ml-slider_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("556", "_transient_product-transient-version", "1436967645", "yes");
INSERT INTO `wp_options` VALUES("557", "_transient_timeout_wc_product_children_ids_8121424113555", "1455649876", "no");
INSERT INTO `wp_options` VALUES("558", "_transient_wc_product_children_ids_8121424113555", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("559", "_transient_timeout_wc_product_children_ids_8121424113877", "1455649927", "no");
INSERT INTO `wp_options` VALUES("560", "_transient_wc_product_children_ids_8121424113877", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("561", "_transient_timeout_wc_product_total_stock_8121424113877", "1455649927", "no");
INSERT INTO `wp_options` VALUES("562", "_transient_wc_product_total_stock_8121424113877", "3", "no");
INSERT INTO `wp_options` VALUES("563", "_transient_timeout_wc_rating_count_8121424113877", "1455649927", "no");
INSERT INTO `wp_options` VALUES("564", "_transient_wc_rating_count_8121424113877", "0", "no");
INSERT INTO `wp_options` VALUES("565", "_transient_timeout_wc_review_count_8121424113877", "1455649927", "no");
INSERT INTO `wp_options` VALUES("566", "_transient_wc_review_count_8121424113877", "0", "no");
INSERT INTO `wp_options` VALUES("567", "_transient_timeout_wc_average_rating_8121424113877", "1455649927", "no");
INSERT INTO `wp_options` VALUES("568", "_transient_wc_average_rating_8121424113877", "", "no");
INSERT INTO `wp_options` VALUES("573", "_transient_timeout_wc_rating_count_8101424113877", "1455650087", "no");
INSERT INTO `wp_options` VALUES("574", "_transient_wc_rating_count_8101424113877", "0", "no");
INSERT INTO `wp_options` VALUES("575", "_transient_timeout_wc_average_rating_8101424113877", "1455650087", "no");
INSERT INTO `wp_options` VALUES("576", "_transient_wc_average_rating_8101424113877", "", "no");
INSERT INTO `wp_options` VALUES("581", "_transient_timeout_wc_product_children_ids_7691424113877", "1455650269", "no");
INSERT INTO `wp_options` VALUES("582", "_transient_wc_product_children_ids_7691424113877", "a:4:{i:0;i:770;i:1;i:771;i:2;i:772;i:3;i:773;}", "no");
INSERT INTO `wp_options` VALUES("583", "_transient_timeout_wc_rating_count_7691424113877", "1455650269", "no");
INSERT INTO `wp_options` VALUES("584", "_transient_wc_rating_count_7691424113877", "0", "no");
INSERT INTO `wp_options` VALUES("585", "_transient_timeout_wc_average_rating_7691424113877", "1455650269", "no");
INSERT INTO `wp_options` VALUES("586", "_transient_wc_average_rating_7691424113877", "", "no");
INSERT INTO `wp_options` VALUES("592", "_transient_timeout_wc_product_children_ids_8121424115070", "1455651083", "no");
INSERT INTO `wp_options` VALUES("593", "_transient_wc_product_children_ids_8121424115070", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("594", "_transient_timeout_wc_product_total_stock_8121424115070", "1455651083", "no");
INSERT INTO `wp_options` VALUES("595", "_transient_wc_product_total_stock_8121424115070", "3", "no");
INSERT INTO `wp_options` VALUES("599", "_transient_timeout_wc_rating_count_8101424115070", "1455651530", "no");
INSERT INTO `wp_options` VALUES("600", "_transient_wc_rating_count_8101424115070", "0", "no");
INSERT INTO `wp_options` VALUES("601", "_transient_timeout_wc_average_rating_8101424115070", "1455651530", "no");
INSERT INTO `wp_options` VALUES("602", "_transient_wc_average_rating_8101424115070", "", "no");
INSERT INTO `wp_options` VALUES("607", "_transient_timeout_wc_rating_count_8121424115070", "1455651539", "no");
INSERT INTO `wp_options` VALUES("608", "_transient_wc_rating_count_8121424115070", "0", "no");
INSERT INTO `wp_options` VALUES("609", "_transient_timeout_wc_average_rating_8121424115070", "1455651539", "no");
INSERT INTO `wp_options` VALUES("610", "_transient_wc_average_rating_8121424115070", "", "no");
INSERT INTO `wp_options` VALUES("611", "_transient_timeout_wc_product_children_ids_8221424115070", "1455651539", "no");
INSERT INTO `wp_options` VALUES("612", "_transient_wc_product_children_ids_8221424115070", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("613", "_transient_timeout_wc_rating_count_8221424115070", "1455651539", "no");
INSERT INTO `wp_options` VALUES("614", "_transient_wc_rating_count_8221424115070", "0", "no");
INSERT INTO `wp_options` VALUES("615", "_transient_timeout_wc_average_rating_8221424115070", "1455651539", "no");
INSERT INTO `wp_options` VALUES("616", "_transient_wc_average_rating_8221424115070", "", "no");
INSERT INTO `wp_options` VALUES("617", "_transient_timeout_wc_rating_count_8201424115070", "1455651539", "no");
INSERT INTO `wp_options` VALUES("618", "_transient_wc_rating_count_8201424115070", "0", "no");
INSERT INTO `wp_options` VALUES("619", "_transient_timeout_wc_average_rating_8201424115070", "1455651539", "no");
INSERT INTO `wp_options` VALUES("620", "_transient_wc_average_rating_8201424115070", "", "no");
INSERT INTO `wp_options` VALUES("621", "_transient_timeout_wc_product_children_ids_7691424115070", "1455651539", "no");
INSERT INTO `wp_options` VALUES("622", "_transient_wc_product_children_ids_7691424115070", "a:4:{i:0;i:770;i:1;i:771;i:2;i:772;i:3;i:773;}", "no");
INSERT INTO `wp_options` VALUES("623", "_transient_timeout_wc_rating_count_7691424115070", "1455651539", "no");
INSERT INTO `wp_options` VALUES("624", "_transient_wc_rating_count_7691424115070", "0", "no");
INSERT INTO `wp_options` VALUES("625", "_transient_timeout_wc_average_rating_7691424115070", "1455651539", "no");
INSERT INTO `wp_options` VALUES("626", "_transient_wc_average_rating_7691424115070", "", "no");
INSERT INTO `wp_options` VALUES("627", "_transient_timeout_wc_rating_count_8211424115070", "1455651539", "no");
INSERT INTO `wp_options` VALUES("628", "_transient_wc_rating_count_8211424115070", "0", "no");
INSERT INTO `wp_options` VALUES("629", "_transient_timeout_wc_average_rating_8211424115070", "1455651539", "no");
INSERT INTO `wp_options` VALUES("630", "_transient_wc_average_rating_8211424115070", "", "no");
INSERT INTO `wp_options` VALUES("767", "auto_core_update_notified", "a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:22:\"anneke.weber@yahoo.com\";s:7:\"version\";s:5:\"4.3.1\";s:9:\"timestamp\";i:1442332501;}", "yes");
INSERT INTO `wp_options` VALUES("898", "theme_mods_nirvana", "a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:15;}}", "yes");
INSERT INTO `wp_options` VALUES("899", "safecss_rev", "21", "yes");
INSERT INTO `wp_options` VALUES("944", "nirvana_settings", "a:231:{s:12:\"nirvana_side\";s:4:\"2cSr\";s:17:\"nirvana_sidewidth\";i:900;s:15:\"nirvana_sidebar\";i:300;s:24:\"nirvana_contentmargintop\";i:5;s:22:\"nirvana_contentpadding\";i:0;s:15:\"nirvana_duality\";s:4:\"Wide\";s:14:\"nirvana_mobile\";s:6:\"Enable\";s:12:\"nirvana_zoom\";i:0;s:15:\"nirvana_hheight\";i:150;s:15:\"nirvana_hcenter\";i:0;s:14:\"nirvana_hratio\";i:0;s:18:\"nirvana_siteheader\";s:26:\"Site Title and Description\";s:18:\"nirvana_logoupload\";s:0:\"\";s:23:\"nirvana_headermargintop\";i:35;s:24:\"nirvana_headermarginleft\";i:0;s:15:\"nirvana_favicon\";s:0:\"\";s:25:\"nirvana_headerwidgetwidth\";s:3:\"33%\";s:17:\"nirvana_frontpage\";s:6:\"Enable\";s:18:\"nirvana_frontposts\";s:6:\"Enable\";s:23:\"nirvana_frontpostscount\";i:10;s:24:\"nirvana_frontpostsperrow\";i:2;s:21:\"nirvana_fpsliderwidth\";i:1920;s:22:\"nirvana_fpsliderheight\";i:280;s:20:\"nirvana_fpslideranim\";s:11:\"slideInLeft\";s:20:\"nirvana_fpslidertime\";i:250;s:21:\"nirvana_fpsliderpause\";i:5000;s:19:\"nirvana_fpslidernav\";s:7:\"Bullets\";s:22:\"nirvana_fpsliderarrows\";s:16:\"Visible on Hover\";s:25:\"nirvana_fpslidertitlesize\";s:4:\"66px\";s:26:\"nirvana_fpslider_titlecaps\";i:1;s:24:\"nirvana_fpslidertextsize\";s:4:\"24px\";s:25:\"nirvana_fpslider_textcaps\";i:0;s:27:\"nirvana_fpslider_bordersize\";i:0;s:26:\"nirvana_fpslider_topmargin\";i:0;s:17:\"nirvana_slideType\";s:13:\"Custom Slides\";s:21:\"nirvana_slideSpecific\";s:0:\"\";s:18:\"nirvana_slideCateg\";s:0:\"\";s:19:\"nirvana_slideNumber\";i:5;s:27:\"nirvana_fpsliderexcerptsize\";i:50;s:18:\"nirvana_sliderimg1\";s:82:\"http://chequerbox.co.za/wp-content/themes/nirvana/images/slider/nirvana-slide1.jpg\";s:20:\"nirvana_slidertitle1\";s:26:\"Nirvana makes things easy!\";s:19:\"nirvana_slidertext1\";s:344:\"Nirvana makes things easier than ever before. No coding and no extra CSS styling needed. With a simple user interface of over 200 settings you can change anything:\r\n							every color, every line of text and every design element is editable with a simple mouse click from the <a href=\"/wp-admin/themes.php?page=nirvana-page\">Theme Settings</a>.\";s:19:\"nirvana_sliderlink1\";s:1:\"#\";s:18:\"nirvana_sliderimg2\";s:82:\"http://chequerbox.co.za/wp-content/themes/nirvana/images/slider/nirvana-slide2.jpg\";s:20:\"nirvana_slidertitle2\";s:26:\"Nirvana gives you choices!\";s:19:\"nirvana_slidertext2\";s:281:\"This slider alone has over 20 options for you to customize it with: size, borders, animations, navigation types and individual slides are all editable via the Theme Settings.\r\n							<br>The columns, as well as everything else on this Presentation page are also fully customizable.\";s:19:\"nirvana_sliderlink2\";s:1:\"#\";s:18:\"nirvana_sliderimg3\";s:82:\"http://chequerbox.co.za/wp-content/themes/nirvana/images/slider/nirvana-slide3.jpg\";s:20:\"nirvana_slidertitle3\";s:22:\"Nirvana in full color!\";s:19:\"nirvana_slidertext3\";s:279:\"With over 50 color settings you can change the color of virtually anything in your site without writing a single line of code. Enable, configure or disable important site elements\r\n							like pagination, breadcrumbs, top bar, menus, post metas, back to top button and much more.\";s:19:\"nirvana_sliderlink3\";s:1:\"#\";s:18:\"nirvana_sliderimg4\";s:82:\"http://chequerbox.co.za/wp-content/themes/nirvana/images/slider/nirvana-slide4.jpg\";s:20:\"nirvana_slidertitle4\";s:23:\"Nirvana is neverending!\";s:19:\"nirvana_slidertext4\";s:227:\"Advanced typography settings, great control over post excerpts and featured images, magazine and blog layouts, social media settings and custom CSS and JS fields complete\r\n							the Nirvana line-up. But there\'s much much more!\";s:19:\"nirvana_sliderlink4\";s:1:\"#\";s:18:\"nirvana_sliderimg5\";s:0:\"\";s:20:\"nirvana_slidertitle5\";s:0:\"\";s:19:\"nirvana_slidertext5\";s:0:\"\";s:19:\"nirvana_sliderlink5\";s:0:\"\";s:21:\"nirvana_slidereadmore\";s:9:\"Read more\";s:18:\"nirvana_columnType\";s:14:\"Widget Columns\";s:22:\"nirvana_columnSpecific\";s:0:\"\";s:19:\"nirvana_columnCateg\";s:0:\"\";s:20:\"nirvana_columnNumber\";i:3;s:18:\"nirvana_coldisplay\";i:0;s:17:\"nirvana_nrcolumns\";i:3;s:22:\"nirvana_colimageheight\";i:311;s:21:\"nirvana_colimagewidth\";i:400;s:16:\"nirvana_colspace\";d:0.299999999999999988897769753748434595763683319091796875;s:20:\"nirvana_columnstitle\";s:0:\"\";s:21:\"nirvana_column_frames\";i:0;s:18:\"nirvana_fronttext1\";s:0:\"\";s:18:\"nirvana_fronttext3\";s:0:\"\";s:18:\"nirvana_fronttext2\";s:0:\"\";s:18:\"nirvana_fronttext4\";s:0:\"\";s:18:\"nirvana_fronttext5\";s:0:\"\";s:18:\"nirvana_fronttext6\";s:0:\"\";s:23:\"nirvana_fronthidetopbar\";i:1;s:16:\"nirvana_fontsize\";s:4:\"18px\";s:18:\"nirvana_fontfamily\";s:15:\"Source Sans Pro\";s:18:\"nirvana_googlefont\";s:0:\"\";s:20:\"nirvana_headfontsize\";s:4:\"34px\";s:17:\"nirvana_fonttitle\";s:12:\"General Font\";s:23:\"nirvana_googlefonttitle\";s:0:\"\";s:20:\"nirvana_sidefontsize\";s:4:\"18px\";s:16:\"nirvana_fontside\";s:12:\"General Font\";s:22:\"nirvana_googlefontside\";s:0:\"\";s:22:\"nirvana_widgetfontsize\";s:4:\"18px\";s:18:\"nirvana_fontwidget\";s:12:\"General Font\";s:24:\"nirvana_googlefontwidget\";s:0:\"\";s:21:\"nirvana_sitetitlesize\";s:4:\"38px\";s:21:\"nirvana_sitetitlefont\";s:12:\"General Font\";s:27:\"nirvana_sitetitlegooglefont\";s:0:\"\";s:20:\"nirvana_menufontsize\";s:4:\"14px\";s:16:\"nirvana_menufont\";s:12:\"General Font\";s:22:\"nirvana_menugooglefont\";s:0:\"\";s:24:\"nirvana_headingsfontsize\";s:4:\"120%\";s:20:\"nirvana_headingsfont\";s:23:\"Yanone Kaffeesatz Light\";s:26:\"nirvana_headingsgooglefont\";s:0:\"\";s:17:\"nirvana_textalign\";s:7:\"Default\";s:22:\"nirvana_paragraphspace\";s:5:\"1.0em\";s:17:\"nirvana_parindent\";s:3:\"0px\";s:22:\"nirvana_headingsindent\";s:7:\"Disable\";s:18:\"nirvana_lineheight\";s:5:\"1.7em\";s:17:\"nirvana_wordspace\";s:7:\"Default\";s:21:\"nirvana_uppercasetext\";i:0;s:23:\"nirvana_backcolorheader\";s:0:\"\";s:21:\"nirvana_backcolormain\";s:4:\"#fff\";s:24:\"nirvana_backcolorfooterw\";s:7:\"#e1854b\";s:23:\"nirvana_backcolorfooter\";s:7:\"#d34d3f\";s:23:\"nirvana_contentcolortxt\";s:4:\"#555\";s:28:\"nirvana_contentcolortxtlight\";s:4:\"#999\";s:22:\"nirvana_footercolortxt\";s:4:\"#FFF\";s:20:\"nirvana_accentcolora\";s:7:\"#e1854b\";s:20:\"nirvana_accentcolorb\";s:7:\"#d34d3f\";s:20:\"nirvana_accentcolorc\";s:7:\"#EEEEEE\";s:20:\"nirvana_accentcolord\";s:7:\"#CCCCCC\";s:20:\"nirvana_accentcolore\";s:7:\"#F7F7F7\";s:21:\"nirvana_descriptionbg\";s:4:\"#FFF\";s:18:\"nirvana_titlecolor\";s:4:\"#777\";s:24:\"nirvana_descriptioncolor\";s:4:\"#777\";s:26:\"nirvana_menucolorbgdefault\";s:7:\"#e1854b\";s:27:\"nirvana_menucolortxtdefault\";s:4:\"#FFF\";s:29:\"nirvana_submenucolorbgdefault\";s:7:\"#d34d3f\";s:30:\"nirvana_submenucolortxtdefault\";s:4:\"#EEE\";s:26:\"nirvana_submenucolorshadow\";s:0:\"\";s:21:\"nirvana_topbarcolorbg\";s:4:\"#fff\";s:23:\"nirvana_topmenucolortxt\";s:7:\"#d34d3f\";s:28:\"nirvana_topmenucolortxthover\";s:4:\"#fff\";s:22:\"nirvana_contentcolorbg\";s:7:\"#FFFFFF\";s:28:\"nirvana_contentcolortxttitle\";s:7:\"#e1854b\";s:33:\"nirvana_contentcolortxttitlehover\";s:7:\"#d34d3f\";s:31:\"nirvana_contentcolortxtheadings\";s:7:\"#e1854b\";s:23:\"nirvana_fpsliderbgcolor\";s:7:\"#eeeeee\";s:27:\"nirvana_fpsliderbordercolor\";s:4:\"#fff\";s:28:\"nirvana_fpslidercaptioncolor\";s:4:\"#fff\";s:25:\"nirvana_fpslidercaptionbg\";s:4:\"#fff\";s:27:\"nirvana_fronttextbgcolortop\";s:7:\"#FFFAF7\";s:30:\"nirvana_fronttextbgcolormiddle\";s:7:\"#FEFAEE\";s:30:\"nirvana_fronttextbgcolorbottom\";s:7:\"#fef9f9\";s:27:\"nirvana_frontcolumnsbgcolor\";s:7:\"#FFFFFF\";s:23:\"nirvana_fronttitlecolor\";s:4:\"#666\";s:14:\"nirvana_sidebg\";s:0:\"\";s:19:\"nirvana_sidetitlebg\";s:0:\"\";s:15:\"nirvana_sidetxt\";s:4:\"#555\";s:20:\"nirvana_sidetitletxt\";s:7:\"#e1854b\";s:16:\"nirvana_widgetbg\";s:0:\"\";s:21:\"nirvana_widgettitlebg\";s:0:\"\";s:17:\"nirvana_widgettxt\";s:4:\"#eee\";s:22:\"nirvana_widgettitletxt\";s:4:\"#fff\";s:21:\"nirvana_linkcolortext\";s:7:\"#e1854b\";s:22:\"nirvana_linkcolorhover\";s:7:\"#d34d3f\";s:21:\"nirvana_linkcolorside\";s:0:\"\";s:26:\"nirvana_linkcolorsidehover\";s:0:\"\";s:23:\"nirvana_linkcolorwooter\";s:4:\"#FFF\";s:28:\"nirvana_linkcolorwooterhover\";s:0:\"\";s:23:\"nirvana_linkcolorfooter\";s:0:\"\";s:28:\"nirvana_linkcolorfooterhover\";s:0:\"\";s:22:\"nirvana_metacoloricons\";s:4:\"#666\";s:22:\"nirvana_metacolorlinks\";s:4:\"#666\";s:27:\"nirvana_metacolorlinkshover\";s:0:\"\";s:21:\"nirvana_socialcolorbg\";s:7:\"#d34d3f\";s:26:\"nirvana_socialcolorbghover\";s:7:\"#e1854b\";s:15:\"nirvana_caption\";s:14:\"caption-simple\";s:14:\"nirvana_topbar\";s:6:\"Normal\";s:19:\"nirvana_topbarwidth\";s:10:\"Site width\";s:19:\"nirvana_breadcrumbs\";s:6:\"Enable\";s:18:\"nirvana_pagination\";s:6:\"Enable\";s:17:\"nirvana_menualign\";s:4:\"left\";s:17:\"nirvana_searchbar\";a:3:{s:3:\"top\";s:1:\"1\";s:4:\"main\";i:0;s:6:\"footer\";i:0;}s:19:\"nirvana_image_style\";s:17:\"nirvana-image-one\";s:17:\"nirvana_pagetitle\";s:4:\"Show\";s:18:\"nirvana_categtitle\";s:4:\"Show\";s:14:\"nirvana_tables\";s:7:\"Disable\";s:15:\"nirvana_backtop\";s:6:\"Enable\";s:15:\"nirvana_metapos\";s:3:\"Top\";s:17:\"nirvana_blog_show\";a:6:{s:6:\"author\";s:1:\"1\";s:4:\"date\";s:1:\"1\";s:8:\"category\";s:1:\"1\";s:3:\"tag\";s:1:\"1\";s:8:\"comments\";s:1:\"1\";s:4:\"time\";i:0;}s:19:\"nirvana_single_show\";a:6:{s:6:\"author\";s:1:\"1\";s:4:\"date\";s:1:\"1\";s:8:\"category\";s:1:\"1\";s:3:\"tag\";s:1:\"1\";s:8:\"bookmark\";s:1:\"1\";s:4:\"time\";i:0;}s:15:\"nirvana_comtext\";s:4:\"Show\";s:17:\"nirvana_comclosed\";s:15:\"Hide everywhere\";s:14:\"nirvana_comoff\";s:4:\"Show\";s:19:\"nirvana_excerpthome\";s:7:\"Excerpt\";s:21:\"nirvana_excerptsticky\";s:9:\"Full Post\";s:22:\"nirvana_excerptarchive\";s:7:\"Excerpt\";s:21:\"nirvana_excerptlength\";i:50;s:19:\"nirvana_excerpttype\";s:5:\"Words\";s:22:\"nirvana_magazinelayout\";s:7:\"Disable\";s:19:\"nirvana_excerptdots\";s:3:\"…\";s:19:\"nirvana_excerptcont\";s:16:\"Continue reading\";s:19:\"nirvana_excerpttags\";s:7:\"Disable\";s:13:\"nirvana_fpost\";s:6:\"Enable\";s:17:\"nirvana_fpostlink\";i:1;s:13:\"nirvana_fauto\";s:6:\"Enable\";s:14:\"nirvana_falign\";s:4:\"Left\";s:14:\"nirvana_fwidth\";i:250;s:15:\"nirvana_fheight\";i:150;s:15:\"nirvana_fheader\";s:7:\"Disable\";s:15:\"nirvana_social1\";s:7:\"YouTube\";s:15:\"nirvana_social2\";s:1:\"#\";s:22:\"nirvana_social_target1\";i:1;s:21:\"nirvana_social_title1\";s:0:\"\";s:15:\"nirvana_social3\";s:7:\"Twitter\";s:15:\"nirvana_social4\";s:1:\"#\";s:22:\"nirvana_social_target3\";i:1;s:21:\"nirvana_social_title3\";s:0:\"\";s:15:\"nirvana_social5\";s:3:\"RSS\";s:15:\"nirvana_social6\";s:1:\"#\";s:22:\"nirvana_social_target5\";i:1;s:21:\"nirvana_social_title5\";s:0:\"\";s:15:\"nirvana_social7\";s:7:\"AboutMe\";s:15:\"nirvana_social8\";s:0:\"\";s:22:\"nirvana_social_target7\";i:1;s:21:\"nirvana_social_title7\";s:0:\"\";s:15:\"nirvana_social9\";s:7:\"AboutMe\";s:16:\"nirvana_social10\";s:0:\"\";s:22:\"nirvana_social_target9\";i:1;s:21:\"nirvana_social_title9\";s:0:\"\";s:23:\"nirvana_socialsdisplay0\";i:1;s:23:\"nirvana_socialsdisplay3\";i:1;s:23:\"nirvana_socialsdisplay5\";i:1;s:23:\"nirvana_socialsdisplay2\";i:1;s:24:\"nirvana_protectionoutput\";i:0;s:16:\"nirvana_iecompat\";i:0;s:17:\"nirvana_postboxes\";s:0:\"\";s:26:\"nirvana_current_admin_menu\";i:5;s:17:\"nirvana_copyright\";s:190:\"This text can be changed from the Miscellaneous section of the settings page. <br />\r\n<b>Lorem ipsum</b> dolor sit amet, <a href=\"#\">consectetur adipiscing</a> elit, cras ut imperdiet augue.\";s:17:\"nirvana_customcss\";s:24:\"/* Nirvana Custom CSS */\";s:16:\"nirvana_customjs\";s:0:\"\";s:14:\"nirvana_submit\";s:12:\"Save Changes\";s:23:\"nirvana_socialsdisplay1\";s:1:\"0\";s:23:\"nirvana_socialsdisplay4\";s:1:\"0\";}", "yes");
INSERT INTO `wp_options` VALUES("951", "theme_mods_multishop", "a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:15;}s:12:\"header_image\";s:70:\"http://chequerbox.co.za/wp-content/uploads/2015/02/cropped-Wedding.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:829;s:3:\"url\";s:70:\"http://chequerbox.co.za/wp-content/uploads/2015/02/cropped-Wedding.jpg\";s:13:\"thumbnail_url\";s:70:\"http://chequerbox.co.za/wp-content/uploads/2015/02/cropped-Wedding.jpg\";s:6:\"height\";i:440;s:5:\"width\";i:1349;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1424768312;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-primary\";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\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("954", "multishop_theme_options", "a:15:{s:4:\"logo\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/02/WebLogo.jpg\";s:7:\"favicon\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/02/WebLogo.jpg\";s:10:\"footertext\";s:0:\"\";s:5:\"fburl\";s:0:\"\";s:7:\"twitter\";s:0:\"\";s:10:\"googleplus\";s:0:\"\";s:13:\"img-section-1\";s:81:\"http://chequerbox.co.za/wp-content/uploads/2015/02/Baby-Aid_Front_v2-250x2501.jpg\";s:14:\"text-section-1\";s:0:\"\";s:18:\"discount-section-1\";s:0:\"\";s:13:\"img-section-2\";s:87:\"http://chequerbox.co.za/wp-content/uploads/2015/02/Wedding-Survival-Kit_Top-250x250.jpg\";s:14:\"text-section-2\";s:0:\"\";s:18:\"discount-section-2\";s:0:\"\";s:13:\"img-section-3\";s:90:\"http://chequerbox.co.za/wp-content/uploads/2015/02/Jenam-Shopper-Bag-Polka-Dot-250x250.jpg\";s:14:\"text-section-3\";s:0:\"\";s:18:\"discount-section-3\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("956", "theme_mods_accesspress-parallax", "a:6:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:15;}s:12:\"header_image\";s:67:\"http://chequerbox.co.za/wp-content/uploads/2015/02/copy-WebLogo.jpg\";s:17:\"header_image_data\";a:5:{s:13:\"attachment_id\";i:830;s:3:\"url\";s:67:\"http://chequerbox.co.za/wp-content/uploads/2015/02/copy-WebLogo.jpg\";s:13:\"thumbnail_url\";s:67:\"http://chequerbox.co.za/wp-content/uploads/2015/02/copy-WebLogo.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:117;}s:16:\"header_textcolor\";s:5:\"blank\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1425924758;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:14:\"recent-posts-3\";}s:9:\"sidebar-1\";a:1:{i:0;s:8:\"search-2\";}s:8:\"footer-1\";N;s:8:\"footer-2\";N;s:8:\"footer-3\";N;s:8:\"footer-4\";N;}}}", "yes");
INSERT INTO `wp_options` VALUES("957", "optionsframework", "a:1:{s:2:\"id\";s:20:\"accesspress_parallax\";}", "yes");
INSERT INTO `wp_options` VALUES("959", "accesspress_parallax_count", "a:1:{i:0;i:17;}", "yes");
INSERT INTO `wp_options` VALUES("1123", "theme_mods_spasalon-pro", "a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:11:\"header-menu\";i:15;s:11:\"footer-menu\";i:9;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1425889768;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-primary\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-3\";i:2;s:16:\"example-widget-2\";}s:18:\"footer-widget-area\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("1125", "custom_texo_service_id", "24", "yes");
INSERT INTO `wp_options` VALUES("1190", "widget_example-widget", "a:2:{i:2;a:4:{s:5:\"title\";s:10:\"Contact Us\";s:9:\"contactno\";s:15:\"+27 72 375 6254\";s:5:\"email\";s:21:\"info@chequerbox.co.za\";s:4:\"city\";s:20:\"Sunninghill, Gauteng\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("1264", "_transient_woocommerce_webhook_ids", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("1271", "vfb_db_version", "2.8", "yes");
INSERT INTO `wp_options` VALUES("1272", "vfb_dashboard_widget_options", "a:1:{s:28:\"vfb_dashboard_recent_entries\";a:1:{s:5:\"items\";i:5;}}", "yes");
INSERT INTO `wp_options` VALUES("1277", "jqlb_help_text", "", "yes");
INSERT INTO `wp_options` VALUES("1278", "jqlb_automate", "0", "yes");
INSERT INTO `wp_options` VALUES("1279", "jqlb_comments", "1", "yes");
INSERT INTO `wp_options` VALUES("1280", "jqlb_resize_on_demand", "1", "yes");
INSERT INTO `wp_options` VALUES("1281", "jqlb_show_download", "0", "yes");
INSERT INTO `wp_options` VALUES("1282", "jqlb_navbarOnTop", "0", "yes");
INSERT INTO `wp_options` VALUES("1283", "jqlb_resize_speed", "400", "yes");
INSERT INTO `wp_options` VALUES("1284", "jqlb_margin_size", "10", "yes");
INSERT INTO `wp_options` VALUES("1287", "_transient_timeout_wc_product_children_ids_8121425580701", "1457116715", "no");
INSERT INTO `wp_options` VALUES("1288", "_transient_wc_product_children_ids_8121425580701", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("1289", "_transient_timeout_wc_product_total_stock_8121425580701", "1457116715", "no");
INSERT INTO `wp_options` VALUES("1290", "_transient_wc_product_total_stock_8121425580701", "3", "no");
INSERT INTO `wp_options` VALUES("1291", "_transient_timeout_wc_product_children_ids_8121425580746", "1457116753", "no");
INSERT INTO `wp_options` VALUES("1292", "_transient_wc_product_children_ids_8121425580746", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("1293", "_transient_timeout_wc_product_total_stock_8121425580746", "1457116753", "no");
INSERT INTO `wp_options` VALUES("1294", "_transient_wc_product_total_stock_8121425580746", "3", "no");
INSERT INTO `wp_options` VALUES("1297", "_transient_timeout_wc_product_children_ids_8121425580817", "1457116825", "no");
INSERT INTO `wp_options` VALUES("1298", "_transient_wc_product_children_ids_8121425580817", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("1299", "_transient_timeout_wc_product_total_stock_8121425580817", "1457116825", "no");
INSERT INTO `wp_options` VALUES("1300", "_transient_wc_product_total_stock_8121425580817", "3", "no");
INSERT INTO `wp_options` VALUES("1303", "_transient_timeout_wc_product_children_ids_8121425580941", "1457116947", "no");
INSERT INTO `wp_options` VALUES("1304", "_transient_wc_product_children_ids_8121425580941", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("1305", "_transient_timeout_wc_product_total_stock_8121425580941", "1457116947", "no");
INSERT INTO `wp_options` VALUES("1306", "_transient_wc_product_total_stock_8121425580941", "3", "no");
INSERT INTO `wp_options` VALUES("1307", "_transient_timeout_wc_product_children_ids_8121425581135", "1457117141", "no");
INSERT INTO `wp_options` VALUES("1308", "_transient_wc_product_children_ids_8121425581135", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("1309", "_transient_timeout_wc_product_total_stock_8121425581135", "1457117141", "no");
INSERT INTO `wp_options` VALUES("1310", "_transient_wc_product_total_stock_8121425581135", "3", "no");
INSERT INTO `wp_options` VALUES("1311", "_transient_timeout_wc_product_children_ids_8721425581809", "1457117816", "no");
INSERT INTO `wp_options` VALUES("1312", "_transient_wc_product_children_ids_8721425581809", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("1313", "_transient_timeout_wc_product_total_stock_8721425581809", "1457117816", "no");
INSERT INTO `wp_options` VALUES("1314", "_transient_wc_product_total_stock_8721425581809", "10", "no");
INSERT INTO `wp_options` VALUES("1315", "_transient_timeout_wc_product_children_ids_8121425581809", "1457117816", "no");
INSERT INTO `wp_options` VALUES("1316", "_transient_wc_product_children_ids_8121425581809", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("1317", "_transient_timeout_wc_product_total_stock_8121425581809", "1457117816", "no");
INSERT INTO `wp_options` VALUES("1318", "_transient_wc_product_total_stock_8121425581809", "3", "no");
INSERT INTO `wp_options` VALUES("1319", "_transient_timeout_wc_product_children_ids_8721425581864", "1457117878", "no");
INSERT INTO `wp_options` VALUES("1320", "_transient_wc_product_children_ids_8721425581864", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("1321", "_transient_timeout_wc_product_total_stock_8721425581864", "1457117878", "no");
INSERT INTO `wp_options` VALUES("1322", "_transient_wc_product_total_stock_8721425581864", "10", "no");
INSERT INTO `wp_options` VALUES("1323", "_transient_timeout_wc_product_children_ids_8121425581864", "1457117878", "no");
INSERT INTO `wp_options` VALUES("1324", "_transient_wc_product_children_ids_8121425581864", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("1325", "_transient_timeout_wc_product_total_stock_8121425581864", "1457117878", "no");
INSERT INTO `wp_options` VALUES("1326", "_transient_wc_product_total_stock_8121425581864", "3", "no");
INSERT INTO `wp_options` VALUES("1327", "_transient_timeout_wc_product_children_ids_8721425582049", "1457118060", "no");
INSERT INTO `wp_options` VALUES("1328", "_transient_wc_product_children_ids_8721425582049", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("1329", "_transient_timeout_wc_product_total_stock_8721425582049", "1457118060", "no");
INSERT INTO `wp_options` VALUES("1330", "_transient_wc_product_total_stock_8721425582049", "10", "no");
INSERT INTO `wp_options` VALUES("1331", "_transient_timeout_wc_product_children_ids_8121425582049", "1457118060", "no");
INSERT INTO `wp_options` VALUES("1332", "_transient_wc_product_children_ids_8121425582049", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("1333", "_transient_timeout_wc_product_total_stock_8121425582049", "1457118060", "no");
INSERT INTO `wp_options` VALUES("1334", "_transient_wc_product_total_stock_8121425582049", "3", "no");
INSERT INTO `wp_options` VALUES("1339", "_transient_timeout_wc_rating_count_8101425582049", "1457118195", "no");
INSERT INTO `wp_options` VALUES("1340", "_transient_wc_rating_count_8101425582049", "0", "no");
INSERT INTO `wp_options` VALUES("1341", "_transient_timeout_wc_average_rating_8101425582049", "1457118195", "no");
INSERT INTO `wp_options` VALUES("1342", "_transient_wc_average_rating_8101425582049", "", "no");
INSERT INTO `wp_options` VALUES("1348", "custom_texo_product_id", "28", "yes");
INSERT INTO `wp_options` VALUES("1351", "_transient_timeout_wc_rating_count_8121425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1352", "_transient_wc_rating_count_8121425582049", "0", "no");
INSERT INTO `wp_options` VALUES("1353", "_transient_timeout_wc_average_rating_8121425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1354", "_transient_wc_average_rating_8121425582049", "", "no");
INSERT INTO `wp_options` VALUES("1355", "_transient_timeout_wc_product_children_ids_8221425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1356", "_transient_wc_product_children_ids_8221425582049", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("1357", "_transient_timeout_wc_rating_count_8221425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1358", "_transient_wc_rating_count_8221425582049", "0", "no");
INSERT INTO `wp_options` VALUES("1359", "_transient_timeout_wc_average_rating_8221425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1360", "_transient_wc_average_rating_8221425582049", "", "no");
INSERT INTO `wp_options` VALUES("1361", "_transient_timeout_wc_rating_count_8201425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1362", "_transient_wc_rating_count_8201425582049", "0", "no");
INSERT INTO `wp_options` VALUES("1363", "_transient_timeout_wc_average_rating_8201425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1364", "_transient_wc_average_rating_8201425582049", "", "no");
INSERT INTO `wp_options` VALUES("1365", "_transient_timeout_wc_product_children_ids_7691425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1366", "_transient_wc_product_children_ids_7691425582049", "a:4:{i:0;i:770;i:1;i:771;i:2;i:772;i:3;i:773;}", "no");
INSERT INTO `wp_options` VALUES("1367", "_transient_timeout_wc_rating_count_7691425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1368", "_transient_wc_rating_count_7691425582049", "0", "no");
INSERT INTO `wp_options` VALUES("1369", "_transient_timeout_wc_average_rating_7691425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1370", "_transient_wc_average_rating_7691425582049", "", "no");
INSERT INTO `wp_options` VALUES("1371", "_transient_timeout_wc_rating_count_8721425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1372", "_transient_wc_rating_count_8721425582049", "0", "no");
INSERT INTO `wp_options` VALUES("1373", "_transient_timeout_wc_average_rating_8721425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1374", "_transient_wc_average_rating_8721425582049", "", "no");
INSERT INTO `wp_options` VALUES("1375", "_transient_timeout_wc_rating_count_8801425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1376", "_transient_wc_rating_count_8801425582049", "0", "no");
INSERT INTO `wp_options` VALUES("1377", "_transient_timeout_wc_average_rating_8801425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1378", "_transient_wc_average_rating_8801425582049", "", "no");
INSERT INTO `wp_options` VALUES("1379", "_transient_timeout_wc_rating_count_8211425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1380", "_transient_wc_rating_count_8211425582049", "0", "no");
INSERT INTO `wp_options` VALUES("1381", "_transient_timeout_wc_average_rating_8211425582049", "1457118397", "no");
INSERT INTO `wp_options` VALUES("1382", "_transient_wc_average_rating_8211425582049", "", "no");
INSERT INTO `wp_options` VALUES("1383", "_transient_timeout_wc_review_count_8201425582049", "1457118405", "no");
INSERT INTO `wp_options` VALUES("1384", "_transient_wc_review_count_8201425582049", "0", "no");
INSERT INTO `wp_options` VALUES("1385", "_transient_timeout_wc_max_related_8201425582049", "1457118405", "no");
INSERT INTO `wp_options` VALUES("1386", "_transient_wc_max_related_8201425582049", "3", "no");
INSERT INTO `wp_options` VALUES("1389", "_transient_timeout_wc_rating_count_8101425582423", "1457118449", "no");
INSERT INTO `wp_options` VALUES("1390", "_transient_wc_rating_count_8101425582423", "0", "no");
INSERT INTO `wp_options` VALUES("1391", "_transient_timeout_wc_average_rating_8101425582423", "1457118449", "no");
INSERT INTO `wp_options` VALUES("1392", "_transient_wc_average_rating_8101425582423", "", "no");
INSERT INTO `wp_options` VALUES("1393", "_transient_timeout_wc_product_children_ids_8121425582423", "1457118449", "no");
INSERT INTO `wp_options` VALUES("1394", "_transient_wc_product_children_ids_8121425582423", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("1395", "_transient_timeout_wc_product_total_stock_8121425582423", "1457118449", "no");
INSERT INTO `wp_options` VALUES("1396", "_transient_wc_product_total_stock_8121425582423", "3", "no");
INSERT INTO `wp_options` VALUES("1397", "_transient_timeout_wc_rating_count_8121425582423", "1457118449", "no");
INSERT INTO `wp_options` VALUES("1398", "_transient_wc_rating_count_8121425582423", "0", "no");
INSERT INTO `wp_options` VALUES("1399", "_transient_timeout_wc_average_rating_8121425582423", "1457118449", "no");
INSERT INTO `wp_options` VALUES("1400", "_transient_wc_average_rating_8121425582423", "", "no");
INSERT INTO `wp_options` VALUES("1401", "_transient_timeout_wc_product_children_ids_8221425582423", "1457118449", "no");
INSERT INTO `wp_options` VALUES("1402", "_transient_wc_product_children_ids_8221425582423", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("1403", "_transient_timeout_wc_rating_count_8221425582423", "1457118449", "no");
INSERT INTO `wp_options` VALUES("1404", "_transient_wc_rating_count_8221425582423", "0", "no");
INSERT INTO `wp_options` VALUES("1405", "_transient_timeout_wc_average_rating_8221425582423", "1457118449", "no");
INSERT INTO `wp_options` VALUES("1406", "_transient_wc_average_rating_8221425582423", "", "no");
INSERT INTO `wp_options` VALUES("1407", "_transient_timeout_wc_rating_count_8201425582423", "1457118449", "no");
INSERT INTO `wp_options` VALUES("1408", "_transient_wc_rating_count_8201425582423", "0", "no");
INSERT INTO `wp_options` VALUES("1409", "_transient_timeout_wc_average_rating_8201425582423", "1457118450", "no");
INSERT INTO `wp_options` VALUES("1410", "_transient_wc_average_rating_8201425582423", "", "no");
INSERT INTO `wp_options` VALUES("1411", "_transient_timeout_wc_product_children_ids_7691425582423", "1457118450", "no");
INSERT INTO `wp_options` VALUES("1412", "_transient_wc_product_children_ids_7691425582423", "a:4:{i:0;i:770;i:1;i:771;i:2;i:772;i:3;i:773;}", "no");
INSERT INTO `wp_options` VALUES("1413", "_transient_timeout_wc_rating_count_7691425582423", "1457118450", "no");
INSERT INTO `wp_options` VALUES("1414", "_transient_wc_rating_count_7691425582423", "0", "no");
INSERT INTO `wp_options` VALUES("1415", "_transient_timeout_wc_average_rating_7691425582423", "1457118450", "no");
INSERT INTO `wp_options` VALUES("1416", "_transient_wc_average_rating_7691425582423", "", "no");
INSERT INTO `wp_options` VALUES("1417", "_transient_timeout_wc_product_children_ids_8721425582423", "1457118450", "no");
INSERT INTO `wp_options` VALUES("1418", "_transient_wc_product_children_ids_8721425582423", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("1419", "_transient_timeout_wc_product_total_stock_8721425582423", "1457118450", "no");
INSERT INTO `wp_options` VALUES("1420", "_transient_wc_product_total_stock_8721425582423", "10", "no");
INSERT INTO `wp_options` VALUES("1421", "_transient_timeout_wc_rating_count_8721425582423", "1457118450", "no");
INSERT INTO `wp_options` VALUES("1422", "_transient_wc_rating_count_8721425582423", "0", "no");
INSERT INTO `wp_options` VALUES("1423", "_transient_timeout_wc_average_rating_8721425582423", "1457118450", "no");
INSERT INTO `wp_options` VALUES("1424", "_transient_wc_average_rating_8721425582423", "", "no");
INSERT INTO `wp_options` VALUES("1425", "_transient_timeout_wc_rating_count_8801425582423", "1457118450", "no");
INSERT INTO `wp_options` VALUES("1426", "_transient_wc_rating_count_8801425582423", "0", "no");
INSERT INTO `wp_options` VALUES("1427", "_transient_timeout_wc_average_rating_8801425582423", "1457118450", "no");
INSERT INTO `wp_options` VALUES("1428", "_transient_wc_average_rating_8801425582423", "", "no");
INSERT INTO `wp_options` VALUES("1429", "_transient_timeout_wc_rating_count_8211425582423", "1457118450", "no");
INSERT INTO `wp_options` VALUES("1430", "_transient_wc_rating_count_8211425582423", "0", "no");
INSERT INTO `wp_options` VALUES("1431", "_transient_timeout_wc_average_rating_8211425582423", "1457118450", "no");
INSERT INTO `wp_options` VALUES("1432", "_transient_wc_average_rating_8211425582423", "", "no");
INSERT INTO `wp_options` VALUES("1435", "_transient_timeout_wc_review_count_7691425582423", "1457118492", "no");
INSERT INTO `wp_options` VALUES("1436", "_transient_wc_review_count_7691425582423", "0", "no");
INSERT INTO `wp_options` VALUES("1437", "_transient_timeout_wc_max_related_7691425582423", "1457118492", "no");
INSERT INTO `wp_options` VALUES("1438", "_transient_wc_max_related_7691425582423", "0", "no");
INSERT INTO `wp_options` VALUES("1464", "_transient_timeout_wc_product_children_ids_8721425583169", "1457119227", "no");
INSERT INTO `wp_options` VALUES("1465", "_transient_wc_product_children_ids_8721425583169", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("1466", "_transient_timeout_wc_product_total_stock_8721425583169", "1457119228", "no");
INSERT INTO `wp_options` VALUES("1467", "_transient_wc_product_total_stock_8721425583169", "10", "no");
INSERT INTO `wp_options` VALUES("1502", "product_shipping_class_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("1503", "services_categories_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("1504", "product_categories_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("1505", "jetpack-portfolio-type_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("1510", "subscription_options", "a:2:{s:10:\"invitation\";s:226:\"Howdy.\r\n\r\nYou recently followed this blog\'s posts. This means you will receive each new post by email.\r\n\r\nTo activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.\";s:14:\"comment_follow\";s:239:\"Howdy.\r\n\r\nYou recently followed one of my posts. This means you will receive an email when new comments are posted.\r\n\r\nTo activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.\";}", "yes");
INSERT INTO `wp_options` VALUES("1511", "jetpack_portfolio_posts_per_page", "0", "yes");
INSERT INTO `wp_options` VALUES("1522", "_transient_timeout_wc_product_children_ids_8121425583169", "1457181712", "no");
INSERT INTO `wp_options` VALUES("1523", "_transient_wc_product_children_ids_8121425583169", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("1524", "_transient_timeout_wc_product_total_stock_8121425583169", "1457181712", "no");
INSERT INTO `wp_options` VALUES("1525", "_transient_wc_product_total_stock_8121425583169", "3", "no");
INSERT INTO `wp_options` VALUES("1526", "_transient_timeout_wc_product_children_ids_8221425583169", "1457181712", "no");
INSERT INTO `wp_options` VALUES("1527", "_transient_wc_product_children_ids_8221425583169", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("1528", "_transient_timeout_wc_review_count_8201425583169", "1457181749", "no");
INSERT INTO `wp_options` VALUES("1529", "_transient_wc_review_count_8201425583169", "0", "no");
INSERT INTO `wp_options` VALUES("1530", "_transient_timeout_wc_max_related_8201425583169", "1457181749", "no");
INSERT INTO `wp_options` VALUES("1531", "_transient_wc_max_related_8201425583169", "3", "no");
INSERT INTO `wp_options` VALUES("1603", "theme_mods_blanc", "a:5:{i:0;b:0;s:12:\"header_image\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:845;s:3:\"url\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding.jpg\";s:13:\"thumbnail_url\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding.jpg\";s:6:\"height\";i:780;s:5:\"width\";i:1583;}s:18:\"nav_menu_locations\";a:1:{s:10:\"navigation\";i:15;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1425907833;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"orphaned_widgets_1\";a:2:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-3\";}s:18:\"orphaned_widgets_2\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("1605", "usces_management_status", "a:8:{s:8:\"estimate\";s:11:\"An estimate\";s:10:\"adminorder\";s:18:\"Management of Note\";s:9:\"noreceipt\";s:6:\"unpaid\";s:9:\"receipted\";s:17:\"payment confirmed\";s:11:\"duringorder\";s:22:\"temporaly out of stock\";s:6:\"cancel\";s:6:\"Cancel\";s:10:\"completion\";s:19:\"It has sent it out.\";s:7:\"pending\";s:7:\"Pending\";}", "yes");
INSERT INTO `wp_options` VALUES("1606", "usces_zaiko_status", "a:5:{i:0;s:8:\"In Stock\";i:1;s:11:\"A Few Stock\";i:2;s:8:\"Sold Out\";i:3;s:12:\"Out Of Stock\";i:4;s:12:\"Out of print\";}", "yes");
INSERT INTO `wp_options` VALUES("1607", "usces_customer_status", "a:4:{i:0;s:13:\"notmal member\";i:1;s:11:\"good member\";i:2;s:10:\"VIP member\";i:99;s:10:\"bad member\";}", "yes");
INSERT INTO `wp_options` VALUES("1608", "usces_payment_structure", "a:5:{s:6:\"acting\";s:38:\"The representation supplier settlement\";s:15:\"transferAdvance\";s:21:\"Transfer (prepayment)\";s:16:\"transferDeferred\";s:18:\"Transfer (postpay)\";s:3:\"COD\";s:3:\"COD\";s:11:\"installment\";s:23:\"Payment in installments\";}", "yes");
INSERT INTO `wp_options` VALUES("1609", "usces_display_mode", "a:3:{s:9:\"Usualsale\";s:15:\"Normal business\";s:13:\"Promotionsale\";s:19:\"During the campaign\";s:15:\"Maintenancemode\";s:17:\"Under Maintenance\";}", "yes");
INSERT INTO `wp_options` VALUES("1610", "usces_shipping_rule", "a:10:{i:0;s:12:\"-- Select --\";i:1;s:11:\"immediately\";i:2;s:8:\"1-2 days\";i:3;s:7:\"2-3days\";i:4;s:7:\"3-5days\";i:5;s:7:\"4-6days\";i:6;s:18:\"about 1 week later\";i:7;s:19:\"about 2 weeks later\";i:8;s:19:\"about 3 weeks later\";i:9;s:22:\"after we get new items\";}", "yes");
INSERT INTO `wp_options` VALUES("1611", "usces_item_option_select", "a:6:{i:0;s:13:\"Single-select\";i:1;s:12:\"Multi-select\";i:2;s:4:\"Text\";i:3;s:12:\"Radio-button\";i:4;s:9:\"Check-box\";i:5;s:9:\"Text-area\";}", "yes");
INSERT INTO `wp_options` VALUES("1612", "usces_custom_order_select", "a:4:{i:0;s:13:\"Single-select\";i:2;s:4:\"Text\";i:3;s:12:\"Radio-button\";i:4;s:9:\"Check-box\";}", "yes");
INSERT INTO `wp_options` VALUES("1613", "usces_custom_customer_select", "a:4:{i:0;s:13:\"Single-select\";i:2;s:4:\"Text\";i:3;s:12:\"Radio-button\";i:4;s:9:\"Check-box\";}", "yes");
INSERT INTO `wp_options` VALUES("1614", "usces_custom_delivery_select", "a:4:{i:0;s:13:\"Single-select\";i:2;s:4:\"Text\";i:3;s:12:\"Radio-button\";i:4;s:9:\"Check-box\";}", "yes");
INSERT INTO `wp_options` VALUES("1615", "usces_custom_member_select", "a:4:{i:0;s:13:\"Single-select\";i:2;s:4:\"Text\";i:3;s:12:\"Radio-button\";i:4;s:9:\"Check-box\";}", "yes");
INSERT INTO `wp_options` VALUES("1616", "usces_custom_field_position_select", "a:3:{s:8:\"name_pre\";s:17:\"Previous the name\";s:10:\"name_after\";s:14:\"After the name\";s:9:\"fax_after\";s:13:\"After the fax\";}", "yes");
INSERT INTO `wp_options` VALUES("1617", "usces_currency_symbol", "$", "yes");
INSERT INTO `wp_options` VALUES("1618", "usces_secure_link", "a:1:{i:0;s:4:\"zeus\";}", "yes");
INSERT INTO `wp_options` VALUES("1619", "usces_wcid", "e4b3aa2fcf096be83851140733565cf3", "yes");
INSERT INTO `wp_options` VALUES("1620", "usces", "a:65:{s:12:\"mail_default\";a:3:{s:5:\"title\";a:12:{s:8:\"thankyou\";s:29:\"Confirmation of order details\";s:5:\"order\";s:15:\"An order report\";s:7:\"inquiry\";s:21:\"Your question is sent\";s:9:\"returninq\";s:19:\"About your question\";s:10:\"membercomp\";s:48:\"Comfirmation of your registration for membership\";s:14:\"completionmail\";s:46:\"Information for shipping of your ordered items\";s:9:\"ordermail\";s:29:\"Confirmation of order details\";s:10:\"changemail\";s:45:\"Confirmation of change for your order details\";s:11:\"receiptmail\";s:35:\"Confirmation mail for your transfer\";s:12:\"mitumorimail\";s:8:\"Estimate\";s:10:\"cancelmail\";s:32:\"Confirmatin of your cancellation\";s:9:\"othermail\";s:2:\"[]\";}s:6:\"header\";a:12:{s:8:\"thankyou\";s:184:\"Thank you for choosing Chequerbox.\r\nWe have received your order. Please check following information.\r\n\r\nWe will inform you by e-mail when we are ready to ship ordered items to you.\r\n\r\n\";s:5:\"order\";s:35:\"There is new order by Chequerbox.\r\n\";s:7:\"inquiry\";s:113:\"Thank you for choosing Chequerbox.\r\nWe have received following e-mail.\r\n\r\nWe will contact you by e-mail soon.\r\n\r\n\";s:9:\"returninq\";s:0:\"\";s:10:\"membercomp\";s:129:\"Than you for registrating as Chequerbox membership.\r\n\r\nYou can chek your purchase status at section \'membership information\'.\r\n\r\n\";s:14:\"completionmail\";s:180:\"Your ordered items have been sent today.\r\n\r\nIt will be delivered by company xxx in couple of days.\r\n\r\nPlease contact us in case you have any problems with receiving your items.\r\n\r\n\";s:9:\"ordermail\";s:184:\"Thank you for choosing Chequerbox.\r\nWe have received your order. Please check following information.\r\n\r\nWe will inform you by e-mail when we are ready to ship ordered items to you.\r\n\r\n\";s:10:\"changemail\";s:151:\"Thank you for choosing Chequerbox.\r\nYou have changed your order as following.\r\n\r\nWe will inform you by e-mail when we are ready to send your items.\r\n\r\n\";s:11:\"receiptmail\";s:152:\"Thank you for choosing Chequerbox.\r\nYour transfer have been made successfully.\r\n\r\nWe will inform you by e-mail when we are ready to send your items.\r\n\r\n\";s:12:\"mitumorimail\";s:131:\"Thank you for choosing Chequerbox.\r\nWe will send you following estimate for your items.\r\n\r\nThis estimate is valid for one week.\r\n\r\n\";s:10:\"cancelmail\";s:89:\"Thank you for choosing Chequerbox.\r\nWe have received your cancellationfor your order.\r\n\r\n\";s:9:\"othermail\";s:38:\"Thank you for choosing Chequerbox.\r\n\r\n\";}s:6:\"footer\";a:12:{s:8:\"thankyou\";s:177:\"=============================================\r\nChequerbox\r\n\r\nzip code \r\n\r\n\r\nTEL \r\nFAX \r\ncontact \r\nhttp://chequerbox.co.za/wp2015\r\n=============================================\r\n\";s:5:\"order\";s:177:\"=============================================\r\nChequerbox\r\n\r\nzip code \r\n\r\n\r\nTEL \r\nFAX \r\ncontact \r\nhttp://chequerbox.co.za/wp2015\r\n=============================================\r\n\";s:7:\"inquiry\";s:177:\"=============================================\r\nChequerbox\r\n\r\nzip code \r\n\r\n\r\nTEL \r\nFAX \r\ncontact \r\nhttp://chequerbox.co.za/wp2015\r\n=============================================\r\n\";s:9:\"returninq\";s:177:\"=============================================\r\nChequerbox\r\n\r\nzip code \r\n\r\n\r\nTEL \r\nFAX \r\ncontact \r\nhttp://chequerbox.co.za/wp2015\r\n=============================================\r\n\";s:10:\"membercomp\";s:177:\"=============================================\r\nChequerbox\r\n\r\nzip code \r\n\r\n\r\nTEL \r\nFAX \r\ncontact \r\nhttp://chequerbox.co.za/wp2015\r\n=============================================\r\n\";s:14:\"completionmail\";s:177:\"=============================================\r\nChequerbox\r\n\r\nzip code \r\n\r\n\r\nTEL \r\nFAX \r\ncontact \r\nhttp://chequerbox.co.za/wp2015\r\n=============================================\r\n\";s:9:\"ordermail\";s:177:\"=============================================\r\nChequerbox\r\n\r\nzip code \r\n\r\n\r\nTEL \r\nFAX \r\ncontact \r\nhttp://chequerbox.co.za/wp2015\r\n=============================================\r\n\";s:10:\"changemail\";s:177:\"=============================================\r\nChequerbox\r\n\r\nzip code \r\n\r\n\r\nTEL \r\nFAX \r\ncontact \r\nhttp://chequerbox.co.za/wp2015\r\n=============================================\r\n\";s:11:\"receiptmail\";s:177:\"=============================================\r\nChequerbox\r\n\r\nzip code \r\n\r\n\r\nTEL \r\nFAX \r\ncontact \r\nhttp://chequerbox.co.za/wp2015\r\n=============================================\r\n\";s:12:\"mitumorimail\";s:177:\"=============================================\r\nChequerbox\r\n\r\nzip code \r\n\r\n\r\nTEL \r\nFAX \r\ncontact \r\nhttp://chequerbox.co.za/wp2015\r\n=============================================\r\n\";s:10:\"cancelmail\";s:177:\"=============================================\r\nChequerbox\r\n\r\nzip code \r\n\r\n\r\nTEL \r\nFAX \r\ncontact \r\nhttp://chequerbox.co.za/wp2015\r\n=============================================\r\n\";s:9:\"othermail\";s:177:\"=============================================\r\nChequerbox\r\n\r\nzip code \r\n\r\n\r\nTEL \r\nFAX \r\ncontact \r\nhttp://chequerbox.co.za/wp2015\r\n=============================================\r\n\";}}s:25:\"usces_shipping_indication\";a:10:{i:0;i:0;i:1;i:0;i:2;i:2;i:3;i:3;i:4;i:5;i:5;i:6;i:6;i:7;i:7;i:14;i:8;i:21;i:9;i:0;}s:13:\"smtp_hostname\";s:9:\"localhost\";s:15:\"delivery_method\";a:0:{}s:15:\"shipping_charge\";a:0:{}s:18:\"membersystem_state\";s:8:\"activate\";s:18:\"membersystem_point\";s:8:\"activate\";s:7:\"use_ssl\";i:0;s:14:\"point_coverage\";i:0;s:14:\"use_javascript\";i:1;s:18:\"privilege_discount\";s:0:\"\";s:15:\"privilege_point\";s:0:\"\";s:18:\"campaign_privilege\";s:0:\"\";s:17:\"campaign_category\";i:0;s:17:\"campaign_schedule\";a:2:{s:5:\"start\";a:0:{}s:3:\"end\";a:0:{}}s:14:\"purchase_limit\";s:0:\"\";s:10:\"point_rate\";s:0:\"\";s:13:\"shipping_rule\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:8:\"address1\";s:0:\"\";s:8:\"address2\";s:0:\"\";s:8:\"zip_code\";s:0:\"\";s:10:\"tel_number\";s:0:\"\";s:10:\"fax_number\";s:0:\"\";s:10:\"order_mail\";s:0:\"\";s:12:\"inquiry_mail\";s:0:\"\";s:11:\"sender_mail\";s:0:\"\";s:10:\"error_mail\";s:0:\"\";s:9:\"copyright\";s:0:\"\";s:17:\"postage_privilege\";s:0:\"\";s:8:\"tax_rate\";s:0:\"\";s:10:\"tax_method\";s:7:\"cutting\";s:8:\"tax_mode\";s:7:\"include\";s:10:\"tax_target\";s:3:\"all\";s:10:\"transferee\";s:0:\"\";s:11:\"start_point\";s:0:\"\";s:12:\"point_assign\";i:1;s:8:\"cod_type\";s:3:\"fix\";s:17:\"newmem_admin_mail\";i:0;s:17:\"delmem_admin_mail\";i:1;s:20:\"delmem_customer_mail\";i:1;s:9:\"mail_data\";a:3:{s:5:\"title\";a:12:{s:8:\"thankyou\";s:0:\"\";s:5:\"order\";s:0:\"\";s:7:\"inquiry\";s:0:\"\";s:9:\"returninq\";s:0:\"\";s:10:\"membercomp\";s:0:\"\";s:14:\"completionmail\";s:0:\"\";s:9:\"ordermail\";s:0:\"\";s:10:\"changemail\";s:0:\"\";s:11:\"receiptmail\";s:0:\"\";s:12:\"mitumorimail\";s:0:\"\";s:10:\"cancelmail\";s:0:\"\";s:9:\"othermail\";s:0:\"\";}s:6:\"header\";a:12:{s:8:\"thankyou\";s:0:\"\";s:5:\"order\";s:0:\"\";s:7:\"inquiry\";s:0:\"\";s:9:\"returninq\";s:0:\"\";s:10:\"membercomp\";s:0:\"\";s:14:\"completionmail\";s:0:\"\";s:9:\"ordermail\";s:0:\"\";s:10:\"changemail\";s:0:\"\";s:11:\"receiptmail\";s:0:\"\";s:12:\"mitumorimail\";s:0:\"\";s:10:\"cancelmail\";s:0:\"\";s:9:\"othermail\";s:0:\"\";}s:6:\"footer\";a:12:{s:8:\"thankyou\";s:0:\"\";s:5:\"order\";s:0:\"\";s:7:\"inquiry\";s:0:\"\";s:9:\"returninq\";s:0:\"\";s:10:\"membercomp\";s:0:\"\";s:14:\"completionmail\";s:0:\"\";s:9:\"ordermail\";s:0:\"\";s:10:\"changemail\";s:0:\"\";s:11:\"receiptmail\";s:0:\"\";s:12:\"mitumorimail\";s:0:\"\";s:10:\"cancelmail\";s:0:\"\";s:9:\"othermail\";s:0:\"\";}}s:14:\"cart_page_data\";a:2:{s:6:\"header\";a:5:{s:4:\"cart\";s:0:\"\";s:8:\"customer\";s:0:\"\";s:8:\"delivery\";s:0:\"\";s:7:\"confirm\";s:0:\"\";s:10:\"completion\";s:0:\"\";}s:6:\"footer\";a:5:{s:4:\"cart\";s:0:\"\";s:8:\"customer\";s:0:\"\";s:8:\"delivery\";s:0:\"\";s:7:\"confirm\";s:0:\"\";s:10:\"completion\";s:0:\"\";}}s:16:\"member_page_data\";a:2:{s:6:\"header\";a:6:{s:5:\"login\";s:0:\"\";s:9:\"newmember\";s:0:\"\";s:7:\"newpass\";s:0:\"\";s:10:\"changepass\";s:0:\"\";s:10:\"memberinfo\";s:0:\"\";s:10:\"completion\";s:0:\"\";}s:6:\"footer\";a:6:{s:5:\"login\";s:0:\"\";s:9:\"newmember\";s:0:\"\";s:7:\"newpass\";s:0:\"\";s:10:\"changepass\";s:0:\"\";s:10:\"memberinfo\";s:0:\"\";s:10:\"completion\";s:0:\"\";}}s:22:\"shortest_delivery_time\";s:1:\"0\";s:19:\"delivery_after_days\";i:15;s:13:\"delivery_days\";a:0:{}s:19:\"delivery_time_limit\";a:2:{s:4:\"hour\";s:2:\"00\";s:3:\"min\";s:2:\"00\";}s:11:\"divide_item\";i:0;s:18:\"itemimg_anchor_rel\";s:0:\"\";s:23:\"fukugo_category_orderby\";s:2:\"ID\";s:21:\"fukugo_category_order\";s:3:\"ASC\";s:15:\"settlement_path\";s:75:\"/home/chequpkb/public_html/wp2015/wp-content/plugins/usc-e-shop/settlement/\";s:9:\"logs_path\";s:0:\"\";s:7:\"ssl_url\";s:0:\"\";s:13:\"ssl_url_admin\";s:0:\"\";s:10:\"inquiry_id\";s:0:\"\";s:6:\"system\";a:17:{s:15:\"orderby_itemsku\";i:0;s:15:\"orderby_itemopt\";i:0;s:10:\"front_lang\";s:2:\"en\";s:8:\"currency\";s:2:\"US\";s:11:\"addressform\";s:2:\"US\";s:13:\"target_market\";a:1:{i:0;s:2:\"US\";}s:11:\"no_cart_css\";i:0;s:16:\"dec_orderID_flag\";i:0;s:18:\"dec_orderID_prefix\";s:0:\"\";s:17:\"dec_orderID_digit\";i:8;s:13:\"subimage_rule\";i:1;s:12:\"pdf_delivery\";i:0;s:20:\"member_pass_rule_min\";i:6;s:20:\"member_pass_rule_max\";s:0:\"\";s:15:\"csv_encode_type\";i:0;s:12:\"base_country\";s:2:\"US\";s:14:\"pointreduction\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"acting_settings\";a:4:{s:4:\"zeus\";a:17:{s:8:\"activate\";s:0:\"\";s:13:\"card_activate\";s:0:\"\";s:8:\"clientip\";s:0:\"\";s:7:\"authkey\";s:0:\"\";s:10:\"connection\";s:0:\"\";s:8:\"3dsecure\";s:0:\"\";s:8:\"security\";s:0:\"\";s:11:\"quickcharge\";s:0:\"\";s:6:\"howpay\";s:0:\"\";s:13:\"bank_activate\";s:0:\"\";s:13:\"clientip_bank\";s:0:\"\";s:11:\"testid_bank\";s:0:\"\";s:13:\"conv_activate\";s:0:\"\";s:13:\"clientip_conv\";s:0:\"\";s:11:\"testid_conv\";s:0:\"\";s:14:\"test_type_conv\";s:0:\"\";s:7:\"3dsecur\";s:1:\"2\";}s:6:\"remise\";a:15:{s:8:\"activate\";s:0:\"\";s:4:\"plan\";s:0:\"\";s:6:\"SHOPCO\";s:0:\"\";s:6:\"HOSTID\";s:0:\"\";s:13:\"card_activate\";s:0:\"\";s:7:\"card_jb\";s:0:\"\";s:8:\"payquick\";s:0:\"\";s:6:\"howpay\";s:0:\"\";s:12:\"continuation\";s:0:\"\";s:11:\"card_pc_ope\";s:0:\"\";s:11:\"send_url_pc\";s:0:\"\";s:13:\"conv_activate\";s:0:\"\";s:9:\"S_PAYDATE\";s:0:\"\";s:11:\"conv_pc_ope\";s:0:\"\";s:15:\"send_url_cvs_pc\";s:0:\"\";}s:8:\"jpayment\";a:9:{s:8:\"activate\";s:0:\"\";s:3:\"aid\";s:0:\"\";s:13:\"card_activate\";s:0:\"\";s:7:\"card_jb\";s:0:\"\";s:13:\"conv_activate\";s:0:\"\";s:13:\"webm_activate\";s:0:\"\";s:13:\"bitc_activate\";s:0:\"\";s:14:\"suica_activate\";s:0:\"\";s:13:\"bank_activate\";s:0:\"\";}s:6:\"paypal\";a:7:{s:8:\"activate\";s:0:\"\";s:11:\"ec_activate\";s:0:\"\";s:7:\"sandbox\";s:0:\"\";s:4:\"user\";s:0:\"\";s:3:\"pwd\";s:0:\"\";s:9:\"signature\";s:0:\"\";s:12:\"continuation\";s:0:\"\";}}s:8:\"province\";a:1:{s:2:\"US\";a:52:{i:0;s:12:\"-- Select --\";i:1;s:7:\"Alabama\";i:2;s:6:\"Alaska\";i:3;s:7:\"Arizona\";i:4;s:8:\"Arkansas\";i:5;s:10:\"California\";i:6;s:8:\"Colorado\";i:7;s:11:\"Connecticut\";i:8;s:8:\"Delaware\";i:9;s:20:\"District of Columbia\";i:10;s:7:\"Florida\";i:11;s:7:\"Georgia\";i:12;s:6:\"Hawaii\";i:13;s:5:\"Idaho\";i:14;s:8:\"Illinois\";i:15;s:7:\"Indiana\";i:16;s:4:\"Iowa\";i:17;s:6:\"Kansas\";i:18;s:8:\"Kentucky\";i:19;s:9:\"Louisiana\";i:20;s:5:\"Maine\";i:21;s:8:\"Maryland\";i:22;s:13:\"Massachusetts\";i:23;s:8:\"Michigan\";i:24;s:9:\"Minnesota\";i:25;s:11:\"Mississippi\";i:26;s:8:\"Missouri\";i:27;s:7:\"Montana\";i:28;s:8:\"Nebraska\";i:29;s:6:\"Nevada\";i:30;s:13:\"New Hampshire\";i:31;s:10:\"New Jersey\";i:32;s:10:\"New Mexico\";i:33;s:8:\"New York\";i:34;s:14:\"North Carolina\";i:35;s:12:\"North Dakota\";i:36;s:4:\"Ohio\";i:37;s:8:\"Oklahoma\";i:38;s:6:\"Oregon\";i:39;s:12:\"Pennsylvania\";i:40;s:12:\"Rhode Island\";i:41;s:14:\"South Carolina\";i:42;s:12:\"South Dakota\";i:43;s:9:\"Tennessee\";i:44;s:5:\"Texas\";i:45;s:4:\"Utah\";i:46;s:7:\"Vermont\";i:47;s:8:\"Virginia\";i:48;s:10:\"Washington\";i:49;s:13:\"West Virginia\";i:50;s:9:\"Wisconsin\";i:51;s:7:\"Wyoming\";}}s:14:\"indi_item_name\";a:4:{s:9:\"item_name\";i:1;s:9:\"item_code\";i:1;s:8:\"sku_name\";i:1;s:8:\"sku_code\";i:1;}s:13:\"pos_item_name\";a:4:{s:9:\"item_name\";i:1;s:9:\"item_code\";i:2;s:8:\"sku_name\";i:3;s:8:\"sku_code\";i:4;}s:12:\"display_mode\";s:9:\"Usualsale\";s:9:\"usces_key\";s:15:\"uk54fd4fe6cf225\";s:13:\"business_days\";a:2:{i:2015;a:10:{i:3;a:31:{i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;i:31;i:1;}i:4;a:30:{i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;}i:5;a:31:{i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;i:31;i:1;}i:6;a:30:{i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;}i:7;a:31:{i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;i:31;i:1;}i:8;a:31:{i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;i:31;i:1;}i:9;a:30:{i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;}i:10;a:31:{i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;i:31;i:1;}i:11;a:30:{i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;}i:12;a:31:{i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;i:31;i:1;}}i:2016;a:2:{i:1;a:31:{i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;i:30;i:1;i:31;i:1;}i:2;a:29:{i:1;i:1;i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;i:7;i:1;i:8;i:1;i:9;i:1;i:10;i:1;i:11;i:1;i:12;i:1;i:13;i:1;i:14;i:1;i:15;i:1;i:16;i:1;i:17;i:1;i:18;i:1;i:19;i:1;i:20;i:1;i:21;i:1;i:22;i:1;i:23;i:1;i:24;i:1;i:25;i:1;i:26;i:1;i:27;i:1;i:28;i:1;i:29;i:1;}}}}", "yes");
INSERT INTO `wp_options` VALUES("1621", "usces_states", "a:2:{s:2:\"JP\";a:48:{i:0;s:12:\"-- Select --\";i:1;s:9:\"北海道\";i:2;s:9:\"青森県\";i:3;s:9:\"岩手県\";i:4;s:9:\"宮城県\";i:5;s:9:\"秋田県\";i:6;s:9:\"山形県\";i:7;s:9:\"福島県\";i:8;s:9:\"茨城県\";i:9;s:9:\"栃木県\";i:10;s:9:\"群馬県\";i:11;s:9:\"埼玉県\";i:12;s:9:\"千葉県\";i:13;s:9:\"東京都\";i:14;s:12:\"神奈川県\";i:15;s:9:\"新潟県\";i:16;s:9:\"富山県\";i:17;s:9:\"石川県\";i:18;s:9:\"福井県\";i:19;s:9:\"山梨県\";i:20;s:9:\"長野県\";i:21;s:9:\"岐阜県\";i:22;s:9:\"静岡県\";i:23;s:9:\"愛知県\";i:24;s:9:\"三重県\";i:25;s:9:\"滋賀県\";i:26;s:9:\"京都府\";i:27;s:9:\"大阪府\";i:28;s:9:\"兵庫県\";i:29;s:9:\"奈良県\";i:30;s:12:\"和歌山県\";i:31;s:9:\"鳥取県\";i:32;s:9:\"島根県\";i:33;s:9:\"岡山県\";i:34;s:9:\"広島県\";i:35;s:9:\"山口県\";i:36;s:9:\"徳島県\";i:37;s:9:\"香川県\";i:38;s:9:\"愛媛県\";i:39;s:9:\"高知県\";i:40;s:9:\"福岡県\";i:41;s:9:\"佐賀県\";i:42;s:9:\"長崎県\";i:43;s:9:\"熊本県\";i:44;s:9:\"大分県\";i:45;s:9:\"宮崎県\";i:46;s:12:\"鹿児島県\";i:47;s:9:\"沖縄県\";}s:2:\"US\";a:52:{i:0;s:12:\"-- Select --\";i:1;s:7:\"Alabama\";i:2;s:6:\"Alaska\";i:3;s:7:\"Arizona\";i:4;s:8:\"Arkansas\";i:5;s:10:\"California\";i:6;s:8:\"Colorado\";i:7;s:11:\"Connecticut\";i:8;s:8:\"Delaware\";i:9;s:20:\"District of Columbia\";i:10;s:7:\"Florida\";i:11;s:7:\"Georgia\";i:12;s:6:\"Hawaii\";i:13;s:5:\"Idaho\";i:14;s:8:\"Illinois\";i:15;s:7:\"Indiana\";i:16;s:4:\"Iowa\";i:17;s:6:\"Kansas\";i:18;s:8:\"Kentucky\";i:19;s:9:\"Louisiana\";i:20;s:5:\"Maine\";i:21;s:8:\"Maryland\";i:22;s:13:\"Massachusetts\";i:23;s:8:\"Michigan\";i:24;s:9:\"Minnesota\";i:25;s:11:\"Mississippi\";i:26;s:8:\"Missouri\";i:27;s:7:\"Montana\";i:28;s:8:\"Nebraska\";i:29;s:6:\"Nevada\";i:30;s:13:\"New Hampshire\";i:31;s:10:\"New Jersey\";i:32;s:10:\"New Mexico\";i:33;s:8:\"New York\";i:34;s:14:\"North Carolina\";i:35;s:12:\"North Dakota\";i:36;s:4:\"Ohio\";i:37;s:8:\"Oklahoma\";i:38;s:6:\"Oregon\";i:39;s:12:\"Pennsylvania\";i:40;s:12:\"Rhode Island\";i:41;s:14:\"South Carolina\";i:42;s:12:\"South Dakota\";i:43;s:9:\"Tennessee\";i:44;s:5:\"Texas\";i:45;s:4:\"Utah\";i:46;s:7:\"Vermont\";i:47;s:8:\"Virginia\";i:48;s:10:\"Washington\";i:49;s:13:\"West Virginia\";i:50;s:9:\"Wisconsin\";i:51;s:7:\"Wyoming\";}}", "yes");
INSERT INTO `wp_options` VALUES("1622", "usces_noreceipt_status", "a:14:{i:0;s:15:\"transferAdvance\";i:1;s:16:\"transferDeferred\";i:2;s:18:\"acting_remise_conv\";i:3;s:16:\"acting_zeus_bank\";i:4;s:16:\"acting_zeus_conv\";i:5;s:20:\"acting_jpayment_conv\";i:6;s:20:\"acting_jpayment_bank\";i:7;s:16:\"acting_sbps_conv\";i:8;s:19:\"acting_sbps_payeasy\";i:9;s:24:\"acting_digitalcheck_conv\";i:10;s:19:\"acting_mizuho_conv1\";i:11;s:19:\"acting_mizuho_conv2\";i:12;s:21:\"acting_veritrans_conv\";i:13;s:19:\"acting_paygent_conv\";}", "yes");
INSERT INTO `wp_options` VALUES("1624", "usces_cart_number", "1034", "yes");
INSERT INTO `wp_options` VALUES("1625", "usces_member_number", "1035", "yes");
INSERT INTO `wp_options` VALUES("1627", "usces_item_cat_parent_id", "29", "yes");
INSERT INTO `wp_options` VALUES("1631", "usces_db_access", "1.5", "yes");
INSERT INTO `wp_options` VALUES("1632", "usces_db_member", "1.1", "yes");
INSERT INTO `wp_options` VALUES("1633", "usces_db_member_meta", "1.1", "yes");
INSERT INTO `wp_options` VALUES("1634", "usces_db_order", "2.0", "yes");
INSERT INTO `wp_options` VALUES("1635", "usces_db_order_meta", "1.2", "yes");
INSERT INTO `wp_options` VALUES("1636", "usces_db_ordercart", "1.0", "yes");
INSERT INTO `wp_options` VALUES("1637", "usces_db_ordercart_meta", "1.0", "yes");
INSERT INTO `wp_options` VALUES("1638", "usces_db_log", "1.1", "yes");
INSERT INTO `wp_options` VALUES("1639", "usces_upgrade", "3", "yes");
INSERT INTO `wp_options` VALUES("1640", "usces_upgrade2", "8", "yes");
INSERT INTO `wp_options` VALUES("1641", "usces_upgrade3", "1", "yes");
INSERT INTO `wp_options` VALUES("1696", "theme_mods_chequerbox", "a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1427565256;s:4:\"data\";a:11:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:14:\"recent-posts-3\";}s:12:\"left-sidebar\";a:1:{i:0;s:8:\"search-2\";}s:13:\"right-sidebar\";a:0:{}s:12:\"shop-sidebar\";a:3:{i:0;s:22:\"woocommerce_products-2\";i:1;s:6:\"text-2\";i:2;s:12:\"vfb_widget-2\";}s:11:\"textblock-1\";a:0:{}s:11:\"textblock-2\";a:0:{}s:11:\"textblock-3\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("1879", "option_tree_settings", "a:3:{s:15:\"contextual_help\";a:2:{s:7:\"content\";a:1:{i:0;a:3:{s:2:\"id\";s:12:\"general_help\";s:5:\"title\";s:7:\"General\";s:7:\"content\";s:30:\"<p>Help content goes here!</p>\";}}s:7:\"sidebar\";s:33:\"<p>Sidebar content goes here!</p>\";}s:8:\"sections\";a:7:{i:0;a:2:{s:5:\"title\";s:16:\"General Settings\";s:2:\"id\";s:15:\"general_default\";}i:1;a:2:{s:5:\"title\";s:15:\"Header Settings\";s:2:\"id\";s:15:\"header_settings\";}i:2;a:2:{s:5:\"title\";s:16:\"Top Bar Settings\";s:2:\"id\";s:20:\"head_topbar_settings\";}i:3;a:2:{s:5:\"title\";s:13:\"Blog Settings\";s:2:\"id\";s:13:\"blog_settings\";}i:4;a:2:{s:5:\"title\";s:26:\"Home Page Featured Section\";s:2:\"id\";s:21:\"home_feature_settings\";}i:5;a:2:{s:5:\"title\";s:26:\"Home Page Parallax Section\";s:2:\"id\";s:22:\"home_parallax_settings\";}i:6;a:2:{s:5:\"title\";s:15:\"Footer Settings\";s:2:\"id\";s:14:\"footer_section\";}}s:8:\"settings\";a:30:{i:0;a:10:{s:2:\"id\";s:21:\"incart_welcome_speach\";s:5:\"label\";s:17:\"Welcome to Incart\";s:4:\"desc\";s:146:\"<h1>Welcome to Incart Lite</h1>\r\n			<p>Thank you for using Incart Lite. Get started below and go through the left tabs to set up your website.</p>\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:9:\"textblock\";s:7:\"section\";s:15:\"general_default\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";}i:1;a:6:{s:5:\"label\";s:12:\"Color Scheme\";s:2:\"id\";s:23:\"incart-lite_colorpicker\";s:4:\"type\";s:11:\"colorpicker\";s:4:\"desc\";s:16:\"Set color scheme\";s:3:\"std\";s:7:\"#1abc9c\";s:7:\"section\";s:15:\"general_default\";}i:2;a:6:{s:5:\"label\";s:14:\"Upload Favicon\";s:2:\"id\";s:19:\"incart-lite_favicon\";s:4:\"type\";s:6:\"upload\";s:4:\"desc\";s:47:\"This creates a custom favicon for your website.\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:15:\"general_default\";}i:3;a:6:{s:5:\"label\";s:11:\"Change Logo\";s:2:\"id\";s:20:\"incart-lite_logo_img\";s:4:\"type\";s:6:\"upload\";s:4:\"desc\";s:44:\"This creates a custom logo for your website.\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:15:\"header_settings\";}i:4;a:6:{s:5:\"label\";s:15:\"Home page Image\";s:2:\"id\";s:29:\"incart-lite_frontslider_stype\";s:4:\"type\";s:6:\"upload\";s:4:\"desc\";s:64:\"Choose image for home page. Size: Width 1600px and Height 500px.\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:15:\"header_settings\";}i:5;a:6:{s:2:\"id\";s:20:\"incart-lite_logo_alt\";s:5:\"label\";s:13:\"Logo ALT Text\";s:4:\"desc\";s:36:\"Enter logo image alt attribute text.\";s:3:\"std\";s:12:\"Incart Theme\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:15:\"header_settings\";}i:6;a:10:{s:2:\"id\";s:23:\"incart-lite_moblie_menu\";s:5:\"label\";s:26:\"Mobile Menu Activate Width\";s:4:\"desc\";s:55:\"Layout width after which mobile menu will get activated\";s:3:\"std\";s:4:\"1025\";s:4:\"type\";s:14:\"numeric-slider\";s:7:\"section\";s:15:\"header_settings\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:12:\"min_max_step\";s:10:\"100,1180,1\";}i:7;a:6:{s:2:\"id\";s:23:\"incart-lite_head_topbar\";s:5:\"label\";s:14:\"Header Top Bar\";s:4:\"desc\";s:22:\"On/Off header top bar.\";s:4:\"type\";s:6:\"on-off\";s:3:\"std\";s:2:\"on\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:8;a:7:{s:2:\"id\";s:17:\"head_social_icons\";s:5:\"label\";s:19:\"Social Follow Icons\";s:4:\"desc\";s:113:\"<h2><b>Social Follow Icons</b></h2>\r\n			<p>Add your social profile URL( eg: <b>http://facebook.com/user</b> )</p>\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:9:\"textblock\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:9;a:7:{s:5:\"label\";s:13:\"Facebook Link\";s:2:\"id\";s:22:\"incart-lite_fbook_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:20:\"Enter Facebook Link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:10;a:7:{s:5:\"label\";s:12:\"Twitter Link\";s:2:\"id\";s:24:\"incart-lite_twitter_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:19:\"Enter Twitter link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:11;a:7:{s:5:\"label\";s:14:\"Google Plus ID\";s:2:\"id\";s:22:\"incart-lite_gplus_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:21:\"Enter Google plus Id.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:12;a:7:{s:5:\"label\";s:13:\"Linkedin Link\";s:2:\"id\";s:25:\"incart-lite_linkedin_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:20:\"Enter Linkedin link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:13;a:7:{s:5:\"label\";s:14:\"Pinterest Link\";s:2:\"id\";s:26:\"incart-lite_pinterest_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:21:\"Enter Pinterest link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:14;a:7:{s:5:\"label\";s:11:\"Flickr Link\";s:2:\"id\";s:23:\"incart-lite_flickr_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:18:\"Enter Flickr link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:15;a:7:{s:5:\"label\";s:13:\"Dribbble Link\";s:2:\"id\";s:25:\"incart-lite_dribbble_link\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:20:\"Enter Dribbble link.\";s:3:\"std\";s:1:\"#\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:16;a:7:{s:5:\"label\";s:14:\"Contact Number\";s:2:\"id\";s:26:\"incart-lite_topbar_contact\";s:4:\"type\";s:4:\"text\";s:4:\"desc\";s:21:\"Enter Contact Number.\";s:3:\"std\";s:14:\"1+555-240-7980\";s:9:\"condition\";s:30:\"incart-lite_head_topbar:is(on)\";s:7:\"section\";s:20:\"head_topbar_settings\";}i:17;a:6:{s:2:\"id\";s:28:\"incart-lite_blogpage_heading\";s:5:\"label\";s:21:\"Enter Blog Page Title\";s:4:\"desc\";s:27:\"Enter Blog Page Title text.\";s:3:\"std\";s:4:\"Blog\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:13:\"blog_settings\";}i:18;a:6:{s:5:\"label\";s:69:\"First Featured Box Image Path (size: width * height (263px * 369px) )\";s:2:\"id\";s:32:\"incart-lite_fb1_first_part_image\";s:4:\"type\";s:6:\"upload\";s:4:\"desc\";s:36:\"Upload image for first featured box.\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:21:\"home_feature_settings\";}i:19;a:6:{s:2:\"id\";s:27:\"incart-lite_featured_title1\";s:5:\"label\";s:26:\"First Featured Image Title\";s:4:\"desc\";s:36:\"Enter logo image alt attribute text.\";s:3:\"std\";s:12:\"Incart Theme\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:21:\"home_feature_settings\";}i:20;a:6:{s:2:\"id\";s:31:\"incart-lite_fb1_first_part_link\";s:5:\"label\";s:23:\"First Featured Box Link\";s:4:\"desc\";s:34:\"Enter link for first featured box.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:21:\"home_feature_settings\";}i:21;a:6:{s:5:\"label\";s:70:\"Second Featured Box Image Path (size: width * height (263px * 369px) )\";s:2:\"id\";s:33:\"incart-lite_fb2_second_part_image\";s:4:\"type\";s:6:\"upload\";s:4:\"desc\";s:37:\"Upload image for second featured box.\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:21:\"home_feature_settings\";}i:22;a:6:{s:2:\"id\";s:27:\"incart-lite_featured_title2\";s:5:\"label\";s:27:\"Second Featured Image Title\";s:4:\"desc\";s:36:\"Enter logo image alt attribute text.\";s:3:\"std\";s:12:\"Incart Theme\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:21:\"home_feature_settings\";}i:23;a:6:{s:2:\"id\";s:32:\"incart-lite_fb2_second_part_link\";s:5:\"label\";s:24:\"Second Featured Box Link\";s:4:\"desc\";s:35:\"Enter link for second featured box.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:21:\"home_feature_settings\";}i:24;a:6:{s:5:\"label\";s:69:\"Third Featured Box Image Path (size: width * height (263px * 369px) )\";s:2:\"id\";s:32:\"incart-lite_fb3_third_part_image\";s:4:\"type\";s:6:\"upload\";s:4:\"desc\";s:36:\"Upload image for third featured box.\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:21:\"home_feature_settings\";}i:25;a:6:{s:2:\"id\";s:27:\"incart-lite_featured_title3\";s:5:\"label\";s:26:\"Third Featured Image Title\";s:4:\"desc\";s:36:\"Enter logo image alt attribute text.\";s:3:\"std\";s:12:\"Incart Theme\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:21:\"home_feature_settings\";}i:26;a:6:{s:2:\"id\";s:31:\"incart-lite_fb3_third_part_link\";s:5:\"label\";s:23:\"Third Featured Box Link\";s:4:\"desc\";s:34:\"Enter link for third featured box.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:21:\"home_feature_settings\";}i:27;a:6:{s:5:\"label\";s:74:\"Parallax Section Background Image (size: width * height (1600x * 1000px) )\";s:2:\"id\";s:30:\"incart-lite_fullparallax_image\";s:4:\"type\";s:6:\"upload\";s:4:\"desc\";s:45:\"Upload background image for parallax section.\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:22:\"home_parallax_settings\";}i:28;a:6:{s:5:\"label\";s:24:\"Parallax Section Content\";s:2:\"id\";s:29:\"incart-lite_para_content_left\";s:4:\"type\";s:8:\"textarea\";s:4:\"desc\";s:34:\"Enter content for parallax section\";s:3:\"std\";s:0:\"\";s:7:\"section\";s:22:\"home_parallax_settings\";}i:29;a:6:{s:5:\"label\";s:14:\"Copyright Text\";s:2:\"id\";s:21:\"incart-lite_copyright\";s:4:\"type\";s:8:\"textarea\";s:4:\"desc\";s:32:\"You can use HTML for links etc..\";s:3:\"std\";s:19:\"Copyright text here\";s:7:\"section\";s:14:\"footer_section\";}}}", "yes");
INSERT INTO `wp_options` VALUES("1880", "option_tree", "a:28:{s:23:\"incart-lite_colorpicker\";s:7:\"#e67fbc\";s:19:\"incart-lite_favicon\";s:0:\"\";s:20:\"incart-lite_logo_img\";s:67:\"http://chequerbox.co.za/wp-content/uploads/2015/02/copy-WebLogo.jpg\";s:29:\"incart-lite_frontslider_stype\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding.jpg\";s:20:\"incart-lite_logo_alt\";s:12:\"Incart Theme\";s:23:\"incart-lite_moblie_menu\";s:4:\"1025\";s:23:\"incart-lite_head_topbar\";s:3:\"off\";s:22:\"incart-lite_fbook_link\";s:1:\"#\";s:24:\"incart-lite_twitter_link\";s:1:\"#\";s:22:\"incart-lite_gplus_link\";s:1:\"#\";s:25:\"incart-lite_linkedin_link\";s:1:\"#\";s:26:\"incart-lite_pinterest_link\";s:1:\"#\";s:23:\"incart-lite_flickr_link\";s:1:\"#\";s:25:\"incart-lite_dribbble_link\";s:1:\"#\";s:26:\"incart-lite_topbar_contact\";s:14:\"1+555-240-7980\";s:28:\"incart-lite_blogpage_heading\";s:4:\"Blog\";s:32:\"incart-lite_fb1_first_part_image\";s:0:\"\";s:27:\"incart-lite_featured_title1\";s:12:\"Incart Theme\";s:31:\"incart-lite_fb1_first_part_link\";s:0:\"\";s:33:\"incart-lite_fb2_second_part_image\";s:0:\"\";s:27:\"incart-lite_featured_title2\";s:12:\"Incart Theme\";s:32:\"incart-lite_fb2_second_part_link\";s:0:\"\";s:32:\"incart-lite_fb3_third_part_image\";s:0:\"\";s:27:\"incart-lite_featured_title3\";s:12:\"Incart Theme\";s:31:\"incart-lite_fb3_third_part_link\";s:0:\"\";s:30:\"incart-lite_fullparallax_image\";s:0:\"\";s:29:\"incart-lite_para_content_left\";s:0:\"\";s:21:\"incart-lite_copyright\";s:26:\"<p>Copyright text here</p>\";}", "yes");
INSERT INTO `wp_options` VALUES("1883", "theme_mods_incart-lite", "a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"Header\";i:15;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1425908338;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"Page Sidebar\";a:2:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-3\";}s:12:\"Blog Sidebar\";N;s:14:\"Footer Sidebar\";N;}}}", "yes");
INSERT INTO `wp_options` VALUES("1887", "theme_mods_accesspress-ray", "a:5:{i:0;b:0;s:12:\"header_image\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/02/WebLogo.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:801;s:3:\"url\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/02/WebLogo.jpg\";s:13:\"thumbnail_url\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/02/WebLogo.jpg\";s:6:\"height\";i:117;s:5:\"width\";i:400;}s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:15;s:9:\"secondary\";i:9;}s:16:\"header_textcolor\";s:5:\"blank\";}", "yes");
INSERT INTO `wp_options` VALUES("1889", "theme_mods_ares", "a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:15;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1425907796;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-primary\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-3\";i:2;s:16:\"example-widget-2\";}s:18:\"footer-widget-area\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("1890", "ares", "a:44:{s:15:\"ares_logo_image\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/02/WebLogo.jpg\";s:19:\"ares_headerbar_bool\";s:3:\"yes\";s:17:\"ares_facebook_url\";s:25:\"https://www.facebook.com/\";s:16:\"ares_twitter_url\";s:0:\"\";s:17:\"ares_linkedin_url\";s:0:\"\";s:14:\"ares_gplus_url\";s:0:\"\";s:16:\"ares_theme_color\";s:3:\"red\";s:29:\"ares_theme_background_pattern\";s:9:\"crossword\";s:14:\"ares_font_size\";s:4:\"14px\";s:16:\"ares_font_family\";s:24:\"Josefin Sans, sans-serif\";s:21:\"ares_homepage_sidebar\";s:11:\"sidebar-off\";s:16:\"ares_slider_bool\";s:3:\"yes\";s:17:\"ares_slide1_image\";s:63:\"http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding1.jpg\";s:16:\"ares_slide1_text\";s:21:\"Clean & Modern Design\";s:17:\"ares_slide2_image\";s:64:\"http://chequerbox.co.za/wp-content/uploads/2015/03/Vending21.jpg\";s:16:\"ares_slide2_text\";s:24:\"Reponsive with Bootstrap\";s:17:\"ares_slide3_image\";s:66:\"http://chequerbox.co.za/wp-content/uploads/2015/03/Photobooth1.jpg\";s:16:\"ares_slide3_text\";s:20:\"Comes with 600 Icons\";s:13:\"ares_cta_bool\";s:3:\"yes\";s:19:\"ares_cta_header_one\";s:17:\"Easy to customize\";s:19:\"ares_cta_header_two\";s:53:\"Responsive, Professional & Modern Multi-purpose theme\";s:15:\"ares_cta1_title\";s:11:\"Box 1 Title\";s:14:\"ares_cta1_icon\";s:13:\"fa fa-desktop\";s:14:\"ares_cta1_text\";s:40:\"Box 1 Text. Input anything you want here\";s:13:\"ares_cta1_url\";s:0:\"\";s:21:\"ares_cta1_button_text\";s:10:\"Click Here\";s:15:\"ares_cta2_title\";s:12:\"Box #2 Title\";s:14:\"ares_cta2_icon\";s:16:\"fa fa-tachometer\";s:14:\"ares_cta2_text\";s:11:\"Box #2 text\";s:13:\"ares_cta2_url\";s:0:\"\";s:21:\"ares_cta2_button_text\";s:10:\"Click Here\";s:15:\"ares_cta3_title\";s:12:\"Box #3 Title\";s:14:\"ares_cta3_icon\";s:12:\"fa fa-rocket\";s:14:\"ares_cta3_text\";s:11:\"Box #3 Text\";s:13:\"ares_cta3_url\";s:0:\"\";s:21:\"ares_cta3_button_text\";s:10:\"Click Here\";s:16:\"ares_blog_layout\";s:5:\"col2r\";s:18:\"ares_blog_featured\";s:2:\"on\";s:18:\"ares_single_layout\";s:5:\"col2r\";s:20:\"ares_single_featured\";s:2:\"on\";s:16:\"ares_single_date\";s:2:\"on\";s:18:\"ares_single_author\";s:2:\"on\";s:19:\"ares_footer_columns\";s:8:\"col-md-4\";s:16:\"ares_footer_text\";s:29:\"&#169; 2014 Your company name\";}", "yes");
INSERT INTO `wp_options` VALUES("1901", "theme_mods_radiate", "a:10:{i:0;b:0;s:16:\"header_textcolor\";s:5:\"blank\";s:12:\"header_image\";s:71:\"http://chequerbox.co.za/wp-content/uploads/2015/03/cropped-Wedding1.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:1036;s:3:\"url\";s:71:\"http://chequerbox.co.za/wp-content/uploads/2015/03/cropped-Wedding1.jpg\";s:13:\"thumbnail_url\";s:71:\"http://chequerbox.co.za/wp-content/uploads/2015/03/cropped-Wedding1.jpg\";s:6:\"height\";i:450;s:5:\"width\";i:1500;}s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:15;}s:20:\"radiate_color_scheme\";s:7:\"#e67fbc\";s:16:\"page-setting-one\";i:765;s:16:\"page-setting-two\";i:787;s:18:\"page-setting-three\";i:783;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1425907973;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:2:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-3\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("1909", "accesspress_parallax", "a:35:{s:15:\"enable_parallax\";s:1:\"1\";s:16:\"enable_animation\";s:1:\"1\";s:17:\"enable_responsive\";s:1:\"1\";s:8:\"fav_icon\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/03/FavIcon.png\";s:13:\"header_layout\";s:9:\"logo-side\";s:12:\"map_latitude\";s:9:\"27.695401\";s:13:\"map_longitude\";s:9:\"85.291604\";s:16:\"parallax_section\";a:1:{i:17;a:11:{s:4:\"page\";s:3:\"783\";s:5:\"color\";s:0:\"\";s:5:\"image\";s:63:\"http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding1.jpg\";s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"top left\";s:10:\"attachment\";s:6:\"scroll\";s:4:\"size\";s:4:\"auto\";s:10:\"font_color\";s:0:\"\";s:6:\"layout\";s:16:\"default_template\";s:8:\"category\";s:0:\"\";s:7:\"overlay\";s:8:\"overlay0\";}}s:9:\"post_date\";s:1:\"1\";s:11:\"post_author\";s:1:\"1\";s:11:\"post_footer\";s:1:\"1\";s:15:\"post_pagination\";s:1:\"1\";s:11:\"show_slider\";s:3:\"yes\";s:15:\"slider_category\";s:0:\"\";s:18:\"slider_full_window\";s:2:\"no\";s:10:\"show_pager\";s:3:\"yes\";s:13:\"show_controls\";s:3:\"yes\";s:15:\"auto_transition\";s:3:\"yes\";s:17:\"slider_transition\";s:4:\"fade\";s:12:\"slider_speed\";s:4:\"5000\";s:12:\"slider_pause\";s:4:\"5000\";s:12:\"show_caption\";s:3:\"yes\";s:11:\"show_social\";s:1:\"1\";s:8:\"facebook\";s:0:\"\";s:7:\"twitter\";s:0:\"\";s:11:\"google_plus\";s:0:\"\";s:7:\"youtube\";s:0:\"\";s:9:\"pinterest\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:6:\"flickr\";s:0:\"\";s:5:\"vimeo\";s:0:\"\";s:9:\"instagram\";s:0:\"\";s:5:\"skype\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";s:9:\"custom_js\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("1920", "theme_mods_albar", "a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:9:\"main-menu\";i:15;}s:12:\"header_image\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/03/WebLogo.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:1037;s:3:\"url\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/03/WebLogo.jpg\";s:13:\"thumbnail_url\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/03/WebLogo.jpg\";s:6:\"height\";i:85;s:5:\"width\";i:290;}}", "yes");
INSERT INTO `wp_options` VALUES("1921", "kaira_theme_options", "a:36:{s:18:\"kra-website-layout\";s:17:\"site-layout-boxed\";s:11:\"kra-favicon\";s:0:\"\";s:22:\"kra-enable-home-slider\";s:1:\"1\";s:21:\"kra-slider-categories\";s:0:\"\";s:19:\"kra-circular-slider\";s:1:\"1\";s:19:\"kra-infinite-slider\";s:1:\"1\";s:28:\"kra-enable-slider-pagination\";s:1:\"1\";s:17:\"kra-primary-color\";s:7:\"#e67fbc\";s:23:\"kra-primary-color-hover\";s:7:\"#cd007a\";s:24:\"kra-body-google-font-url\";s:99:\"//fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic\";s:25:\"kra-body-google-font-name\";s:37:\"font-family: \'Open Sans\', sans-serif;\";s:26:\"kra-body-google-font-color\";s:7:\"#7b7d80\";s:27:\"kra-heading-google-font-url\";s:96:\"//fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic,500,500italic,700,700italic\";s:28:\"kra-heading-google-font-name\";s:34:\"font-family: \'Roboto\', sans-serif;\";s:29:\"kra-heading-google-font-color\";s:7:\"#5a5a5a\";s:14:\"kra-custom-css\";s:0:\"\";s:24:\"kra-blog-excl-categories\";s:0:\"\";s:14:\"kra-blog-title\";s:8:\"Our Blog\";s:12:\"kra-blog-ppp\";s:2:\"10\";s:16:\"kra-social-email\";s:0:\"\";s:16:\"kra-social-skype\";s:0:\"\";s:19:\"kra-social-facebook\";s:0:\"\";s:18:\"kra-social-twitter\";s:0:\"\";s:22:\"kra-social-google-plus\";s:0:\"\";s:18:\"kra-social-youtube\";s:0:\"\";s:20:\"kra-social-instagram\";s:0:\"\";s:20:\"kra-social-pinterest\";s:0:\"\";s:19:\"kra-social-linkedin\";s:0:\"\";s:17:\"kra-social-tumblr\";s:0:\"\";s:17:\"kra-social-flickr\";s:0:\"\";s:23:\"kra-website-txt-address\";s:0:\"\";s:21:\"kra-website-txt-email\";s:0:\"\";s:21:\"kra-website-txt-phone\";s:0:\"\";s:22:\"kra-website-error-head\";s:31:\"Oops! That page can\'t be found.\";s:21:\"kra-website-error-msg\";s:84:\"The page you are looking for can\'t be found. Please select one of the options below.\";s:24:\"kra-website-nosearch-msg\";s:110:\"Sorry, but nothing matched your search terms. Please try again with some different keywords or return to home.\";}", "yes");
INSERT INTO `wp_options` VALUES("1941", "siteorigin_panels_initial_version", "2.0.7", "no");
INSERT INTO `wp_options` VALUES("1942", "wpcf7", "a:1:{s:7:\"version\";s:3:\"4.3\";}", "yes");
INSERT INTO `wp_options` VALUES("1946", "wpmenucart", "a:10:{s:10:\"menu_slugs\";a:1:{i:1;s:1:\"0\";}s:14:\"always_display\";s:0:\"\";s:12:\"icon_display\";s:1:\"1\";s:13:\"items_display\";s:1:\"3\";s:15:\"items_alignment\";s:8:\"standard\";s:12:\"custom_class\";s:0:\"\";s:14:\"flyout_display\";s:0:\"\";s:17:\"flyout_itemnumber\";s:1:\"5\";s:9:\"cart_icon\";s:1:\"0\";s:11:\"shop_plugin\";s:11:\"woocommerce\";}", "yes");
INSERT INTO `wp_options` VALUES("1952", "accesspress_ray_options", "a:70:{s:30:\"accesspress_ray_webpage_layout\";s:5:\"Boxed\";s:12:\"media_upload\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/03/FavIcon.png\";s:14:\"logo_alignment\";s:4:\"Left\";s:13:\"portfolio_cat\";s:2:\"36\";s:14:\"read_more_text\";s:9:\"Read More\";s:16:\"footer_copyright\";s:10:\"Chequerbox\";s:14:\"featured_title\";s:17:\"Our Product Range\";s:13:\"featured_text\";s:233:\"ChequerBox (Pty) Ltd is a company that offers various ‘boxed solutions’.  Our products and services range from corporate vending solutions, photo booths and green screen photo booths, baby medical kits and novel wedding day kits.\";s:14:\"featured_post1\";s:4:\"1043\";s:19:\"featured_post1_icon\";s:0:\"\";s:14:\"featured_post2\";s:4:\"1066\";s:19:\"featured_post2_icon\";s:0:\"\";s:14:\"featured_post3\";s:4:\"1069\";s:19:\"featured_post3_icon\";s:0:\"\";s:14:\"featured_post4\";s:4:\"1074\";s:19:\"featured_post4_icon\";s:0:\"\";s:22:\"featured_post_readmore\";s:9:\"Read More\";s:19:\"call_to_action_post\";s:3:\"315\";s:24:\"call_to_action_post_char\";i:650;s:28:\"call_to_action_post_readmore\";s:9:\"Read More\";s:8:\"blog_cat\";s:2:\"35\";s:16:\"show_blog_number\";i:3;s:13:\"show_blogdate\";i:1;s:15:\"testimonial_cat\";s:2:\"36\";s:8:\"latitude\";s:10:\"-26.035278\";s:9:\"longitude\";s:9:\"28.065278\";s:15:\"contact_address\";s:104:\"Sandton Office\r\n\r\nSunninghill\r\nGauteng\r\nSouth Africa\r\nTel: +27 72 375 6254\r\nEmail: info@chequerbox.co.za\";s:14:\"slider_options\";s:15:\"cat_post_slider\";s:7:\"slider1\";s:1:\"0\";s:7:\"slider2\";s:1:\"0\";s:7:\"slider3\";s:1:\"0\";s:7:\"slider4\";s:1:\"0\";s:10:\"slider_cat\";s:2:\"34\";s:11:\"show_slider\";s:3:\"yes\";s:17:\"slider_show_pager\";s:4:\"yes1\";s:20:\"slider_show_controls\";s:4:\"yes2\";s:11:\"slider_mode\";s:5:\"slide\";s:11:\"slider_auto\";s:4:\"yes3\";s:12:\"slider_speed\";i:900;s:12:\"slider_pause\";i:4000;s:14:\"slider_caption\";s:3:\"no4\";s:24:\"accesspress_ray_facebook\";s:0:\"\";s:23:\"accesspress_ray_twitter\";s:0:\"\";s:21:\"accesspress_ray_gplus\";s:0:\"\";s:23:\"accesspress_ray_youtube\";s:0:\"\";s:25:\"accesspress_ray_pinterest\";s:0:\"\";s:24:\"accesspress_ray_linkedin\";s:0:\"\";s:22:\"accesspress_ray_flickr\";s:0:\"\";s:21:\"accesspress_ray_vimeo\";s:0:\"\";s:27:\"accesspress_ray_stumbleupon\";s:0:\"\";s:25:\"accesspress_ray_instagram\";s:0:\"\";s:27:\"accesspress_ray_sound_cloud\";s:0:\"\";s:21:\"accesspress_ray_skype\";s:0:\"\";s:19:\"accesspress_ray_rss\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";s:11:\"custom_code\";s:417:\"<script>\r\n  (function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){\r\n  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\r\n  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\r\n  })(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'ga\');\r\n\r\n  ga(\'create\', \'UA-43105594-1\', \'auto\');\r\n  ga(\'send\', \'pageview\');\r\n\r\n</script>\";s:17:\"responsive_design\";i:0;s:11:\"show_search\";i:0;s:16:\"show_fontawesome\";i:0;s:9:\"big_icons\";i:0;s:30:\"leftsidebar_show_latest_events\";i:0;s:29:\"leftsidebar_show_testimonials\";i:0;s:29:\"leftsidebar_show_social_links\";i:0;s:31:\"rightsidebar_show_latest_events\";i:0;s:30:\"rightsidebar_show_testimonials\";i:0;s:30:\"rightsidebar_show_social_links\";i:0;s:18:\"show_social_header\";i:0;s:18:\"show_social_footer\";i:0;s:12:\"featured_bar\";i:0;s:27:\"call_to_action_post_content\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("1969", "_transient_timeout_wc_product_children_ids_7691425583169", "1457461250", "no");
INSERT INTO `wp_options` VALUES("1970", "_transient_wc_product_children_ids_7691425583169", "a:4:{i:0;i:770;i:1;i:771;i:2;i:772;i:3;i:773;}", "no");
INSERT INTO `wp_options` VALUES("1980", "_transient_timeout_wc_review_count_7691425583169", "1457462418", "no");
INSERT INTO `wp_options` VALUES("1981", "_transient_wc_review_count_7691425583169", "0", "no");
INSERT INTO `wp_options` VALUES("1982", "_transient_timeout_wc_max_related_7691425583169", "1457462418", "no");
INSERT INTO `wp_options` VALUES("1983", "_transient_wc_max_related_7691425583169", "0", "no");
INSERT INTO `wp_options` VALUES("2331", "_transient_timeout_wc_review_count_8721425583169", "1457896379", "no");
INSERT INTO `wp_options` VALUES("2332", "_transient_wc_review_count_8721425583169", "0", "no");
INSERT INTO `wp_options` VALUES("2333", "_transient_timeout_wc_max_related_8721425583169", "1457896379", "no");
INSERT INTO `wp_options` VALUES("2334", "_transient_wc_max_related_8721425583169", "1", "no");
INSERT INTO `wp_options` VALUES("2337", "widget_twitter_timeline", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("2338", "widget_woocommerce_products", "a:2:{i:2;a:7:{s:5:\"title\";s:24:\"Our Products at a glance\";s:6:\"number\";s:1:\"5\";s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"rand\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("2339", "widget_vfb_widget", "a:2:{i:2;a:2:{s:2:\"id\";i:1;s:5:\"title\";s:13:\"Quick Contact\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("2752", "_wpmp_settings", "a:7:{s:29:\"generate_product_page_content\";i:1;s:7:\"fstatus\";s:7:\"publish\";s:7:\"page_id\";i:1081;s:13:\"check_page_id\";i:1082;s:21:\"continue_shopping_url\";s:32:\"http://chequerbox.co.za/product/\";s:29:\"wpmp_after_addtocart_redirect\";i:1;s:6:\"Paypal\";a:2:{s:7:\"enabled\";i:1;s:11:\"Paypal_mode\";s:4:\"live\";}}", "yes");
INSERT INTO `wp_options` VALUES("2753", "wpmp_access_level", "level_2", "yes");
INSERT INTO `wp_options` VALUES("2766", "_transient_timeout_wc_review_count_8221425583169", "1458500714", "no");
INSERT INTO `wp_options` VALUES("2767", "_transient_wc_review_count_8221425583169", "0", "no");
INSERT INTO `wp_options` VALUES("2768", "_transient_timeout_wc_max_related_8221425583169", "1458500714", "no");
INSERT INTO `wp_options` VALUES("2769", "_transient_wc_max_related_8221425583169", "3", "no");
INSERT INTO `wp_options` VALUES("2774", "_transient_timeout_wc_review_count_8121425583169", "1458501265", "no");
INSERT INTO `wp_options` VALUES("2775", "_transient_wc_review_count_8121425583169", "0", "no");
INSERT INTO `wp_options` VALUES("2776", "_transient_timeout_wc_max_related_8121425583169", "1458501265", "no");
INSERT INTO `wp_options` VALUES("2777", "_transient_wc_max_related_8121425583169", "3", "no");
INSERT INTO `wp_options` VALUES("2779", "_transient_timeout_wc_review_count_8211425583169", "1458501488", "no");
INSERT INTO `wp_options` VALUES("2780", "_transient_wc_review_count_8211425583169", "0", "no");
INSERT INTO `wp_options` VALUES("2781", "_transient_timeout_wc_max_related_8211425583169", "1458501488", "no");
INSERT INTO `wp_options` VALUES("2782", "_transient_wc_max_related_8211425583169", "3", "no");
INSERT INTO `wp_options` VALUES("2789", "_transient_timeout_wc_review_count_8801425583169", "1458502509", "no");
INSERT INTO `wp_options` VALUES("2790", "_transient_wc_review_count_8801425583169", "0", "no");
INSERT INTO `wp_options` VALUES("2791", "_transient_timeout_wc_max_related_8801425583169", "1458502510", "no");
INSERT INTO `wp_options` VALUES("2792", "_transient_wc_max_related_8801425583169", "1", "no");
INSERT INTO `wp_options` VALUES("2795", "_transient_timeout_wc_review_count_8101425583169", "1458503108", "no");
INSERT INTO `wp_options` VALUES("2796", "_transient_wc_review_count_8101425583169", "0", "no");
INSERT INTO `wp_options` VALUES("2797", "_transient_timeout_wc_max_related_8101425583169", "1458503108", "no");
INSERT INTO `wp_options` VALUES("2798", "_transient_wc_max_related_8101425583169", "0", "no");
INSERT INTO `wp_options` VALUES("2922", "woocommerce_payfast_settings", "a:8:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:7:\"PayFast\";s:11:\"description\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:11:\"merchant_id\";s:8:\"10541552\";s:12:\"merchant_key\";s:13:\"c41dxixbj0ieb\";s:16:\"send_debug_email\";s:3:\"yes\";s:11:\"debug_email\";s:22:\"anneke.weber@yahoo.com\";}", "yes");
INSERT INTO `wp_options` VALUES("2931", "_transient_shipping-transient-version", "1434015503", "yes");
INSERT INTO `wp_options` VALUES("2936", "woocommerce_cheque_settings", "a:4:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:14:\"Cheque Payment\";s:11:\"description\";s:102:\"Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode.\";s:12:\"instructions\";s:102:\"Please send your cheque to Store Name, Store Street, Store Town, Store State / County, Store Postcode.\";}", "yes");
INSERT INTO `wp_options` VALUES("2939", "woocommerce_bacs_settings", "a:5:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:10:\"Direct EFT\";s:11:\"description\";s:173:\"Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order won\'t be shipped until the funds have cleared in our account.\";s:12:\"instructions\";s:173:\"Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order won\'t be shipped until the funds have cleared in our account.\";s:15:\"account_details\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("2940", "woocommerce_bacs_accounts", "a:1:{i:0;a:6:{s:12:\"account_name\";s:0:\"\";s:14:\"account_number\";s:0:\"\";s:9:\"bank_name\";s:0:\"\";s:9:\"sort_code\";s:0:\"\";s:4:\"iban\";s:0:\"\";s:3:\"bic\";s:0:\"\";}}", "yes");
INSERT INTO `wp_options` VALUES("3014", "cff_style_settings", "a:129:{s:19:\"cff_show_links_type\";b:1;s:19:\"cff_show_event_type\";b:1;s:19:\"cff_show_video_type\";b:1;s:20:\"cff_show_photos_type\";b:1;s:20:\"cff_show_status_type\";b:1;s:17:\"cff_preset_layout\";s:5:\"thumb\";s:13:\"cff_show_text\";s:2:\"on\";s:13:\"cff_show_desc\";s:2:\"on\";s:21:\"cff_show_shared_links\";s:2:\"on\";s:13:\"cff_show_date\";s:0:\"\";s:14:\"cff_show_media\";s:0:\"\";s:20:\"cff_show_event_title\";s:0:\"\";s:22:\"cff_show_event_details\";s:0:\"\";s:13:\"cff_show_meta\";s:0:\"\";s:13:\"cff_show_link\";s:2:\"on\";s:17:\"cff_show_like_box\";b:1;s:17:\"cff_post_bg_color\";s:1:\"#\";s:16:\"cff_post_rounded\";s:1:\"0\";s:16:\"cff_title_format\";s:1:\"p\";s:14:\"cff_title_size\";s:7:\"inherit\";s:16:\"cff_title_weight\";s:7:\"inherit\";s:15:\"cff_title_color\";s:0:\"\";s:23:\"cff_posttext_link_color\";s:0:\"\";s:13:\"cff_body_size\";s:2:\"12\";s:15:\"cff_body_weight\";s:7:\"inherit\";s:14:\"cff_body_color\";s:0:\"\";s:21:\"cff_link_title_format\";s:1:\"p\";s:19:\"cff_link_title_size\";s:7:\"inherit\";s:20:\"cff_link_title_color\";s:0:\"\";s:18:\"cff_link_url_color\";s:0:\"\";s:17:\"cff_link_bg_color\";s:0:\"\";s:21:\"cff_link_border_color\";s:0:\"\";s:20:\"cff_disable_link_box\";s:0:\"\";s:22:\"cff_event_title_format\";s:1:\"p\";s:20:\"cff_event_title_size\";s:7:\"inherit\";s:22:\"cff_event_title_weight\";s:7:\"inherit\";s:21:\"cff_event_title_color\";s:0:\"\";s:19:\"cff_event_date_size\";s:7:\"inherit\";s:21:\"cff_event_date_weight\";s:7:\"inherit\";s:20:\"cff_event_date_color\";s:0:\"\";s:23:\"cff_event_date_position\";s:5:\"below\";s:25:\"cff_event_date_formatting\";s:1:\"1\";s:21:\"cff_event_date_custom\";s:0:\"\";s:22:\"cff_event_details_size\";s:7:\"inherit\";s:24:\"cff_event_details_weight\";s:7:\"inherit\";s:23:\"cff_event_details_color\";s:0:\"\";s:20:\"cff_event_link_color\";s:0:\"\";s:17:\"cff_date_position\";s:6:\"author\";s:13:\"cff_date_size\";s:7:\"inherit\";s:15:\"cff_date_weight\";s:7:\"inherit\";s:14:\"cff_date_color\";s:0:\"\";s:19:\"cff_date_formatting\";s:1:\"1\";s:15:\"cff_date_custom\";s:0:\"\";s:15:\"cff_date_before\";s:0:\"\";s:14:\"cff_date_after\";s:0:\"\";s:12:\"cff_timezone\";s:15:\"America/Chicago\";s:13:\"cff_link_size\";s:7:\"inherit\";s:15:\"cff_link_weight\";s:7:\"inherit\";s:14:\"cff_link_color\";s:0:\"\";s:22:\"cff_facebook_link_text\";s:16:\"View on Facebook\";s:18:\"cff_view_link_text\";s:9:\"View Link\";s:20:\"cff_link_to_timeline\";b:0;s:14:\"cff_icon_style\";s:5:\"light\";s:19:\"cff_meta_text_color\";s:0:\"\";s:17:\"cff_meta_bg_color\";s:0:\"\";s:19:\"cff_nocomments_text\";s:15:\"No comments yet\";s:17:\"cff_hide_comments\";s:0:\"\";s:14:\"cff_feed_width\";s:0:\"\";s:15:\"cff_feed_height\";s:0:\"\";s:16:\"cff_feed_padding\";s:0:\"\";s:21:\"cff_like_box_position\";s:6:\"bottom\";s:20:\"cff_like_box_outside\";b:0;s:17:\"cff_likebox_width\";s:0:\"\";s:18:\"cff_likebox_height\";s:0:\"\";s:18:\"cff_like_box_faces\";b:0;s:19:\"cff_like_box_border\";b:0;s:12:\"cff_bg_color\";s:0:\"\";s:20:\"cff_likebox_bg_color\";s:0:\"\";s:23:\"cff_like_box_text_color\";s:4:\"blue\";s:16:\"cff_video_height\";s:0:\"\";s:15:\"cff_show_author\";s:0:\"\";s:9:\"cff_class\";s:0:\"\";s:14:\"cff_open_links\";b:1;s:14:\"cff_custom_css\";s:0:\"\";s:13:\"cff_custom_js\";s:0:\"\";s:14:\"cff_title_link\";b:0;s:13:\"cff_post_tags\";b:1;s:17:\"cff_link_hashtags\";b:1;s:20:\"cff_event_title_link\";b:0;s:16:\"cff_video_action\";s:4:\"post\";s:10:\"cff_app_id\";s:0:\"\";s:15:\"cff_show_credit\";s:0:\"\";s:15:\"cff_font_source\";s:0:\"\";s:13:\"cff_sep_color\";s:1:\"#\";s:12:\"cff_sep_size\";s:1:\"1\";s:15:\"cff_show_header\";s:0:\"\";s:18:\"cff_header_outside\";b:0;s:15:\"cff_header_text\";s:14:\"Facebook Posts\";s:19:\"cff_header_bg_color\";s:0:\"\";s:18:\"cff_header_padding\";s:0:\"\";s:20:\"cff_header_text_size\";s:0:\"\";s:22:\"cff_header_text_weight\";s:0:\"\";s:21:\"cff_header_text_color\";s:0:\"\";s:15:\"cff_header_icon\";s:0:\"\";s:21:\"cff_header_icon_color\";s:0:\"\";s:20:\"cff_header_icon_size\";s:2:\"28\";s:15:\"cff_author_size\";s:7:\"inherit\";s:16:\"cff_author_color\";s:0:\"\";s:17:\"cff_see_more_text\";s:8:\"See More\";s:17:\"cff_see_less_text\";s:8:\"See Less\";s:23:\"cff_facebook_share_text\";s:5:\"Share\";s:22:\"cff_show_facebook_link\";b:1;s:23:\"cff_show_facebook_share\";b:1;s:25:\"cff_translate_photos_text\";s:6:\"photos\";s:20:\"cff_translate_second\";s:6:\"second\";s:21:\"cff_translate_seconds\";s:7:\"seconds\";s:20:\"cff_translate_minute\";s:6:\"minute\";s:21:\"cff_translate_minutes\";s:7:\"minutes\";s:18:\"cff_translate_hour\";s:4:\"hour\";s:19:\"cff_translate_hours\";s:5:\"hours\";s:17:\"cff_translate_day\";s:3:\"day\";s:18:\"cff_translate_days\";s:4:\"days\";s:18:\"cff_translate_week\";s:4:\"week\";s:19:\"cff_translate_weeks\";s:5:\"weeks\";s:19:\"cff_translate_month\";s:5:\"month\";s:20:\"cff_translate_months\";s:6:\"months\";s:18:\"cff_translate_year\";s:4:\"year\";s:19:\"cff_translate_years\";s:5:\"years\";s:17:\"cff_translate_ago\";s:3:\"ago\";}", "yes");
INSERT INTO `wp_options` VALUES("3015", "cff_show_access_token", "", "yes");
INSERT INTO `wp_options` VALUES("3016", "cff_access_token", "", "yes");
INSERT INTO `wp_options` VALUES("3017", "cff_page_id", "172580039574771", "yes");
INSERT INTO `wp_options` VALUES("3018", "cff_page_type", "page", "yes");
INSERT INTO `wp_options` VALUES("3019", "cff_num_show", "3", "yes");
INSERT INTO `wp_options` VALUES("3020", "cff_post_limit", "", "yes");
INSERT INTO `wp_options` VALUES("3021", "cff_show_others", "others", "yes");
INSERT INTO `wp_options` VALUES("3022", "cff_cache_time", "1", "yes");
INSERT INTO `wp_options` VALUES("3023", "cff_cache_time_unit", "hours", "yes");
INSERT INTO `wp_options` VALUES("3024", "cff_locale", "en_US", "yes");
INSERT INTO `wp_options` VALUES("3025", "widget_facebook-likebox", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("3038", "product_cat_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("3049", "_transient_timeout_wc_product_children_ids_7691427137836", "1458673851", "no");
INSERT INTO `wp_options` VALUES("3050", "_transient_wc_product_children_ids_7691427137836", "a:4:{i:0;i:770;i:1;i:771;i:2;i:772;i:3;i:773;}", "no");
INSERT INTO `wp_options` VALUES("3051", "_transient_timeout_wc_review_count_7691427137836", "1458673851", "no");
INSERT INTO `wp_options` VALUES("3052", "_transient_wc_review_count_7691427137836", "0", "no");
INSERT INTO `wp_options` VALUES("3053", "_transient_timeout_wc_max_related_7691427137836", "1458673851", "no");
INSERT INTO `wp_options` VALUES("3054", "_transient_wc_max_related_7691427137836", "0", "no");
INSERT INTO `wp_options` VALUES("3056", "_transient_timeout_wc_product_children_ids_7691427137892", "1458673898", "no");
INSERT INTO `wp_options` VALUES("3057", "_transient_wc_product_children_ids_7691427137892", "a:4:{i:0;i:770;i:1;i:771;i:2;i:772;i:3;i:773;}", "no");
INSERT INTO `wp_options` VALUES("3058", "_transient_timeout_wc_review_count_7691427137892", "1458673898", "no");
INSERT INTO `wp_options` VALUES("3059", "_transient_wc_review_count_7691427137892", "0", "no");
INSERT INTO `wp_options` VALUES("3060", "_transient_timeout_wc_max_related_7691427137892", "1458673898", "no");
INSERT INTO `wp_options` VALUES("3061", "_transient_wc_max_related_7691427137892", "0", "no");
INSERT INTO `wp_options` VALUES("3075", "_transient_timeout_wc_review_count_8101427137892", "1458675173", "no");
INSERT INTO `wp_options` VALUES("3076", "_transient_wc_review_count_8101427137892", "0", "no");
INSERT INTO `wp_options` VALUES("3077", "_transient_timeout_wc_max_related_8101427137892", "1458675173", "no");
INSERT INTO `wp_options` VALUES("3078", "_transient_wc_max_related_8101427137892", "0", "no");
INSERT INTO `wp_options` VALUES("3110", "_transient_timeout_wc_product_children_ids_8221427137892", "1458721105", "no");
INSERT INTO `wp_options` VALUES("3111", "_transient_wc_product_children_ids_8221427137892", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3112", "_transient_timeout_wc_product_children_ids_8121427137892", "1458721105", "no");
INSERT INTO `wp_options` VALUES("3113", "_transient_wc_product_children_ids_8121427137892", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3114", "_transient_timeout_wc_product_total_stock_8121427137892", "1458721105", "no");
INSERT INTO `wp_options` VALUES("3115", "_transient_wc_product_total_stock_8121427137892", "3", "no");
INSERT INTO `wp_options` VALUES("3179", "_transient_timeout_wc_product_children_ids_8721427137892", "1458822084", "no");
INSERT INTO `wp_options` VALUES("3180", "_transient_wc_product_children_ids_8721427137892", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3181", "_transient_timeout_wc_product_total_stock_8721427137892", "1458822084", "no");
INSERT INTO `wp_options` VALUES("3182", "_transient_wc_product_total_stock_8721427137892", "10", "no");
INSERT INTO `wp_options` VALUES("3186", "_transient_timeout_wc_review_count_8801427137892", "1458824992", "no");
INSERT INTO `wp_options` VALUES("3187", "_transient_wc_review_count_8801427137892", "0", "no");
INSERT INTO `wp_options` VALUES("3188", "_transient_timeout_wc_max_related_8801427137892", "1458824992", "no");
INSERT INTO `wp_options` VALUES("3189", "_transient_wc_max_related_8801427137892", "1", "no");
INSERT INTO `wp_options` VALUES("3193", "_transient_timeout_wc_review_count_8121427137892", "1458826096", "no");
INSERT INTO `wp_options` VALUES("3194", "_transient_wc_review_count_8121427137892", "0", "no");
INSERT INTO `wp_options` VALUES("3195", "_transient_timeout_wc_max_related_8121427137892", "1458826096", "no");
INSERT INTO `wp_options` VALUES("3196", "_transient_wc_max_related_8121427137892", "3", "no");
INSERT INTO `wp_options` VALUES("3197", "_transient_timeout_wc_review_count_8721427137892", "1458826113", "no");
INSERT INTO `wp_options` VALUES("3198", "_transient_wc_review_count_8721427137892", "0", "no");
INSERT INTO `wp_options` VALUES("3199", "_transient_timeout_wc_max_related_8721427137892", "1458826113", "no");
INSERT INTO `wp_options` VALUES("3200", "_transient_wc_max_related_8721427137892", "1", "no");
INSERT INTO `wp_options` VALUES("3201", "_transient_timeout_wc_review_count_8201427137892", "1458826153", "no");
INSERT INTO `wp_options` VALUES("3202", "_transient_wc_review_count_8201427137892", "0", "no");
INSERT INTO `wp_options` VALUES("3203", "_transient_timeout_wc_max_related_8201427137892", "1458826153", "no");
INSERT INTO `wp_options` VALUES("3204", "_transient_wc_max_related_8201427137892", "3", "no");
INSERT INTO `wp_options` VALUES("3205", "_transient_timeout_wc_review_count_8221427137892", "1458826159", "no");
INSERT INTO `wp_options` VALUES("3206", "_transient_wc_review_count_8221427137892", "0", "no");
INSERT INTO `wp_options` VALUES("3207", "_transient_timeout_wc_max_related_8221427137892", "1458826159", "no");
INSERT INTO `wp_options` VALUES("3208", "_transient_wc_max_related_8221427137892", "3", "no");
INSERT INTO `wp_options` VALUES("3209", "_transient_timeout_wc_review_count_8211427137892", "1458826166", "no");
INSERT INTO `wp_options` VALUES("3210", "_transient_wc_review_count_8211427137892", "0", "no");
INSERT INTO `wp_options` VALUES("3211", "_transient_timeout_wc_max_related_8211427137892", "1458826166", "no");
INSERT INTO `wp_options` VALUES("3212", "_transient_wc_max_related_8211427137892", "3", "no");
INSERT INTO `wp_options` VALUES("3268", "_transient_timeout_wc_product_children_ids_8721427306541", "1458842565", "no");
INSERT INTO `wp_options` VALUES("3269", "_transient_wc_product_children_ids_8721427306541", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3270", "_transient_timeout_wc_product_total_stock_8721427306541", "1458842565", "no");
INSERT INTO `wp_options` VALUES("3271", "_transient_wc_product_total_stock_8721427306541", "10", "no");
INSERT INTO `wp_options` VALUES("3272", "_transient_timeout_wc_product_children_ids_8121427306541", "1458842565", "no");
INSERT INTO `wp_options` VALUES("3273", "_transient_wc_product_children_ids_8121427306541", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3274", "_transient_timeout_wc_product_total_stock_8121427306541", "1458842565", "no");
INSERT INTO `wp_options` VALUES("3275", "_transient_wc_product_total_stock_8121427306541", "3", "no");
INSERT INTO `wp_options` VALUES("3277", "_transient_timeout_wc_product_children_ids_7691427306541", "1458842572", "no");
INSERT INTO `wp_options` VALUES("3278", "_transient_wc_product_children_ids_7691427306541", "a:4:{i:0;i:770;i:1;i:771;i:2;i:772;i:3;i:773;}", "no");
INSERT INTO `wp_options` VALUES("3279", "_transient_timeout_wc_review_count_7691427306541", "1458842572", "no");
INSERT INTO `wp_options` VALUES("3280", "_transient_wc_review_count_7691427306541", "0", "no");
INSERT INTO `wp_options` VALUES("3281", "_transient_timeout_wc_max_related_7691427306541", "1458842573", "no");
INSERT INTO `wp_options` VALUES("3282", "_transient_wc_max_related_7691427306541", "0", "no");
INSERT INTO `wp_options` VALUES("3285", "_transient_timeout_wc_product_children_ids_8221427306541", "1458842717", "no");
INSERT INTO `wp_options` VALUES("3286", "_transient_wc_product_children_ids_8221427306541", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3287", "_transient_timeout_wc_product_children_ids_8221427306717", "1458842717", "no");
INSERT INTO `wp_options` VALUES("3288", "_transient_wc_product_children_ids_8221427306717", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3292", "_transient_timeout_wc_product_children_ids_8721427306717", "1458842721", "no");
INSERT INTO `wp_options` VALUES("3293", "_transient_wc_product_children_ids_8721427306717", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3294", "_transient_timeout_wc_product_total_stock_8721427306717", "1458842721", "no");
INSERT INTO `wp_options` VALUES("3295", "_transient_wc_product_total_stock_8721427306717", "10", "no");
INSERT INTO `wp_options` VALUES("3296", "_transient_timeout_wc_product_children_ids_8121427306740", "1458842747", "no");
INSERT INTO `wp_options` VALUES("3297", "_transient_wc_product_children_ids_8121427306740", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3298", "_transient_timeout_wc_product_children_ids_8121427306747", "1458842747", "no");
INSERT INTO `wp_options` VALUES("3299", "_transient_wc_product_children_ids_8121427306747", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3300", "_transient_timeout_wc_product_total_stock_8121427306747", "1458842747", "no");
INSERT INTO `wp_options` VALUES("3301", "_transient_wc_product_total_stock_8121427306747", "3", "no");
INSERT INTO `wp_options` VALUES("3305", "_transient_timeout_wc_product_children_ids_8221427306747", "1458842758", "no");
INSERT INTO `wp_options` VALUES("3306", "_transient_wc_product_children_ids_8221427306747", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3307", "_transient_timeout_wc_product_children_ids_8721427306747", "1458842758", "no");
INSERT INTO `wp_options` VALUES("3308", "_transient_wc_product_children_ids_8721427306747", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3309", "_transient_timeout_wc_product_total_stock_8721427306747", "1458842758", "no");
INSERT INTO `wp_options` VALUES("3310", "_transient_wc_product_total_stock_8721427306747", "10", "no");
INSERT INTO `wp_options` VALUES("3335", "_transient_timeout_wc_review_count_8101427306747", "1458846268", "no");
INSERT INTO `wp_options` VALUES("3336", "_transient_wc_review_count_8101427306747", "0", "no");
INSERT INTO `wp_options` VALUES("3337", "_transient_timeout_wc_max_related_8101427306747", "1458846268", "no");
INSERT INTO `wp_options` VALUES("3338", "_transient_wc_max_related_8101427306747", "0", "no");
INSERT INTO `wp_options` VALUES("3342", "_transient_timeout_wc_review_count_8101427310731", "1458846739", "no");
INSERT INTO `wp_options` VALUES("3343", "_transient_wc_review_count_8101427310731", "0", "no");
INSERT INTO `wp_options` VALUES("3344", "_transient_timeout_wc_max_related_8101427310731", "1458846739", "no");
INSERT INTO `wp_options` VALUES("3345", "_transient_wc_max_related_8101427310731", "0", "no");
INSERT INTO `wp_options` VALUES("3411", "_transient_timeout_wc_product_children_ids_8721427310731", "1458891527", "no");
INSERT INTO `wp_options` VALUES("3412", "_transient_wc_product_children_ids_8721427310731", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3413", "_transient_timeout_wc_product_total_stock_8721427310731", "1458891527", "no");
INSERT INTO `wp_options` VALUES("3414", "_transient_wc_product_total_stock_8721427310731", "10", "no");
INSERT INTO `wp_options` VALUES("3415", "_transient_timeout_wc_review_count_8721427310731", "1458891527", "no");
INSERT INTO `wp_options` VALUES("3416", "_transient_wc_review_count_8721427310731", "0", "no");
INSERT INTO `wp_options` VALUES("3417", "_transient_timeout_wc_max_related_8721427310731", "1458891527", "no");
INSERT INTO `wp_options` VALUES("3418", "_transient_wc_max_related_8721427310731", "5", "no");
INSERT INTO `wp_options` VALUES("3441", "_transient_timeout_wc_product_children_ids_8121427310731", "1458893232", "no");
INSERT INTO `wp_options` VALUES("3442", "_transient_wc_product_children_ids_8121427310731", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3443", "_transient_timeout_wc_product_total_stock_8121427310731", "1458893232", "no");
INSERT INTO `wp_options` VALUES("3444", "_transient_wc_product_total_stock_8121427310731", "3", "no");
INSERT INTO `wp_options` VALUES("3445", "_transient_timeout_wc_product_children_ids_8221427310731", "1458893232", "no");
INSERT INTO `wp_options` VALUES("3446", "_transient_wc_product_children_ids_8221427310731", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3447", "_transient_timeout_wc_product_children_ids_7691427310731", "1458893240", "no");
INSERT INTO `wp_options` VALUES("3448", "_transient_wc_product_children_ids_7691427310731", "a:4:{i:0;i:770;i:1;i:771;i:2;i:772;i:3;i:773;}", "no");
INSERT INTO `wp_options` VALUES("3449", "_transient_timeout_wc_review_count_7691427310731", "1458893241", "no");
INSERT INTO `wp_options` VALUES("3450", "_transient_wc_review_count_7691427310731", "0", "no");
INSERT INTO `wp_options` VALUES("3451", "_transient_timeout_wc_max_related_7691427310731", "1458893241", "no");
INSERT INTO `wp_options` VALUES("3452", "_transient_wc_max_related_7691427310731", "0", "no");
INSERT INTO `wp_options` VALUES("3469", "category_children", "a:3:{i:35;a:4:{i:0;i:2;i:1;i:3;i:2;i:4;i:3;i:29;}i:4;a:1:{i:0;i:5;}i:29;a:3:{i:0;i:30;i:1;i:31;i:2;i:32;}}", "yes");
INSERT INTO `wp_options` VALUES("3476", "_transient_timeout_wc_review_count_8801427310731", "1458898868", "no");
INSERT INTO `wp_options` VALUES("3477", "_transient_wc_review_count_8801427310731", "0", "no");
INSERT INTO `wp_options` VALUES("3478", "_transient_timeout_wc_max_related_8801427310731", "1458898868", "no");
INSERT INTO `wp_options` VALUES("3479", "_transient_wc_max_related_8801427310731", "5", "no");
INSERT INTO `wp_options` VALUES("3480", "_transient_timeout_wc_review_count_8201427310731", "1458898949", "no");
INSERT INTO `wp_options` VALUES("3481", "_transient_wc_review_count_8201427310731", "0", "no");
INSERT INTO `wp_options` VALUES("3482", "_transient_timeout_wc_max_related_8201427310731", "1458898949", "no");
INSERT INTO `wp_options` VALUES("3483", "_transient_wc_max_related_8201427310731", "5", "no");
INSERT INTO `wp_options` VALUES("3501", "_transient_timeout_wc_review_count_8221427310731", "1458908196", "no");
INSERT INTO `wp_options` VALUES("3502", "_transient_wc_review_count_8221427310731", "0", "no");
INSERT INTO `wp_options` VALUES("3503", "_transient_timeout_wc_max_related_8221427310731", "1458908196", "no");
INSERT INTO `wp_options` VALUES("3504", "_transient_wc_max_related_8221427310731", "5", "no");
INSERT INTO `wp_options` VALUES("3505", "_transient_timeout_wc_review_count_8121427310731", "1458909092", "no");
INSERT INTO `wp_options` VALUES("3506", "_transient_wc_review_count_8121427310731", "0", "no");
INSERT INTO `wp_options` VALUES("3507", "_transient_timeout_wc_max_related_8121427310731", "1458909092", "no");
INSERT INTO `wp_options` VALUES("3508", "_transient_wc_max_related_8121427310731", "5", "no");
INSERT INTO `wp_options` VALUES("3509", "_transient_timeout_wc_review_count_8211427310731", "1458909128", "no");
INSERT INTO `wp_options` VALUES("3510", "_transient_wc_review_count_8211427310731", "0", "no");
INSERT INTO `wp_options` VALUES("3511", "_transient_timeout_wc_max_related_8211427310731", "1458909128", "no");
INSERT INTO `wp_options` VALUES("3512", "_transient_wc_max_related_8211427310731", "5", "no");
INSERT INTO `wp_options` VALUES("3540", "_transient_timeout_wc_product_children_ids_8721427392601", "1458928612", "no");
INSERT INTO `wp_options` VALUES("3541", "_transient_wc_product_children_ids_8721427392601", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3542", "_transient_timeout_wc_product_total_stock_8721427392601", "1458928612", "no");
INSERT INTO `wp_options` VALUES("3543", "_transient_wc_product_total_stock_8721427392601", "10", "no");
INSERT INTO `wp_options` VALUES("3544", "_transient_timeout_wc_review_count_8721427392601", "1458928612", "no");
INSERT INTO `wp_options` VALUES("3545", "_transient_wc_review_count_8721427392601", "0", "no");
INSERT INTO `wp_options` VALUES("3546", "_transient_timeout_wc_max_related_8721427392601", "1458928612", "no");
INSERT INTO `wp_options` VALUES("3547", "_transient_wc_max_related_8721427392601", "5", "no");
INSERT INTO `wp_options` VALUES("3548", "_transient_timeout_wc_product_children_ids_8221427392601", "1458928612", "no");
INSERT INTO `wp_options` VALUES("3549", "_transient_wc_product_children_ids_8221427392601", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3550", "_transient_timeout_wc_review_count_8211427392601", "1458928784", "no");
INSERT INTO `wp_options` VALUES("3551", "_transient_wc_review_count_8211427392601", "0", "no");
INSERT INTO `wp_options` VALUES("3552", "_transient_timeout_wc_max_related_8211427392601", "1458928784", "no");
INSERT INTO `wp_options` VALUES("3553", "_transient_wc_max_related_8211427392601", "5", "no");
INSERT INTO `wp_options` VALUES("3554", "_transient_timeout_wc_review_count_8221427392601", "1458928803", "no");
INSERT INTO `wp_options` VALUES("3555", "_transient_wc_review_count_8221427392601", "0", "no");
INSERT INTO `wp_options` VALUES("3556", "_transient_timeout_wc_max_related_8221427392601", "1458928803", "no");
INSERT INTO `wp_options` VALUES("3557", "_transient_wc_max_related_8221427392601", "5", "no");
INSERT INTO `wp_options` VALUES("3559", "_transient_timeout_wc_product_children_ids_8221427392992", "1458928998", "no");
INSERT INTO `wp_options` VALUES("3560", "_transient_wc_product_children_ids_8221427392992", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3561", "_transient_timeout_wc_review_count_8211427392992", "1458929012", "no");
INSERT INTO `wp_options` VALUES("3562", "_transient_wc_review_count_8211427392992", "0", "no");
INSERT INTO `wp_options` VALUES("3563", "_transient_timeout_wc_max_related_8211427392992", "1458929012", "no");
INSERT INTO `wp_options` VALUES("3564", "_transient_wc_max_related_8211427392992", "5", "no");
INSERT INTO `wp_options` VALUES("3565", "_transient_timeout_wc_product_children_ids_8121427392992", "1458929012", "no");
INSERT INTO `wp_options` VALUES("3566", "_transient_wc_product_children_ids_8121427392992", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3567", "_transient_timeout_wc_product_total_stock_8121427392992", "1458929012", "no");
INSERT INTO `wp_options` VALUES("3568", "_transient_wc_product_total_stock_8121427392992", "3", "no");
INSERT INTO `wp_options` VALUES("3571", "_transient_timeout_wc_product_children_ids_8721427392992", "1458929019", "no");
INSERT INTO `wp_options` VALUES("3572", "_transient_wc_product_children_ids_8721427392992", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3573", "_transient_timeout_wc_product_total_stock_8721427392992", "1458929019", "no");
INSERT INTO `wp_options` VALUES("3574", "_transient_wc_product_total_stock_8721427392992", "10", "no");
INSERT INTO `wp_options` VALUES("3575", "_transient_timeout_wc_review_count_8121427392992", "1458929074", "no");
INSERT INTO `wp_options` VALUES("3576", "_transient_wc_review_count_8121427392992", "0", "no");
INSERT INTO `wp_options` VALUES("3577", "_transient_timeout_wc_max_related_8121427392992", "1458929074", "no");
INSERT INTO `wp_options` VALUES("3578", "_transient_wc_max_related_8121427392992", "5", "no");
INSERT INTO `wp_options` VALUES("3582", "_transient_timeout_wc_product_children_ids_8121427393123", "1458929150", "no");
INSERT INTO `wp_options` VALUES("3583", "_transient_wc_product_children_ids_8121427393123", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3584", "_transient_timeout_wc_product_total_stock_8121427393123", "1458929150", "no");
INSERT INTO `wp_options` VALUES("3585", "_transient_wc_product_total_stock_8121427393123", "3", "no");
INSERT INTO `wp_options` VALUES("3586", "_transient_timeout_wc_product_children_ids_8221427393123", "1458929150", "no");
INSERT INTO `wp_options` VALUES("3587", "_transient_wc_product_children_ids_8221427393123", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3588", "_transient_timeout_wc_product_children_ids_8721427393123", "1458929150", "no");
INSERT INTO `wp_options` VALUES("3589", "_transient_wc_product_children_ids_8721427393123", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3590", "_transient_timeout_wc_product_total_stock_8721427393123", "1458929150", "no");
INSERT INTO `wp_options` VALUES("3591", "_transient_wc_product_total_stock_8721427393123", "10", "no");
INSERT INTO `wp_options` VALUES("3592", "_transient_timeout_wc_review_count_8121427393123", "1458929202", "no");
INSERT INTO `wp_options` VALUES("3593", "_transient_wc_review_count_8121427393123", "0", "no");
INSERT INTO `wp_options` VALUES("3594", "_transient_timeout_wc_max_related_8121427393123", "1458929202", "no");
INSERT INTO `wp_options` VALUES("3595", "_transient_wc_max_related_8121427393123", "5", "no");
INSERT INTO `wp_options` VALUES("3596", "_transient_timeout_wc_review_count_8221427393123", "1458929215", "no");
INSERT INTO `wp_options` VALUES("3597", "_transient_wc_review_count_8221427393123", "0", "no");
INSERT INTO `wp_options` VALUES("3598", "_transient_timeout_wc_max_related_8221427393123", "1458929215", "no");
INSERT INTO `wp_options` VALUES("3599", "_transient_wc_max_related_8221427393123", "5", "no");
INSERT INTO `wp_options` VALUES("3600", "_transient_timeout_wc_review_count_8721427393123", "1458929219", "no");
INSERT INTO `wp_options` VALUES("3601", "_transient_wc_review_count_8721427393123", "0", "no");
INSERT INTO `wp_options` VALUES("3602", "_transient_timeout_wc_max_related_8721427393123", "1458929219", "no");
INSERT INTO `wp_options` VALUES("3603", "_transient_wc_max_related_8721427393123", "5", "no");
INSERT INTO `wp_options` VALUES("3604", "_transient_timeout_wc_review_count_8211427393123", "1458929252", "no");
INSERT INTO `wp_options` VALUES("3605", "_transient_wc_review_count_8211427393123", "0", "no");
INSERT INTO `wp_options` VALUES("3606", "_transient_timeout_wc_max_related_8211427393123", "1458929252", "no");
INSERT INTO `wp_options` VALUES("3607", "_transient_wc_max_related_8211427393123", "5", "no");
INSERT INTO `wp_options` VALUES("3611", "_transient_timeout_wc_product_children_ids_8121427393431", "1458929465", "no");
INSERT INTO `wp_options` VALUES("3612", "_transient_wc_product_children_ids_8121427393431", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3613", "_transient_timeout_wc_product_total_stock_8121427393431", "1458929465", "no");
INSERT INTO `wp_options` VALUES("3614", "_transient_wc_product_total_stock_8121427393431", "3", "no");
INSERT INTO `wp_options` VALUES("3615", "_transient_timeout_wc_product_children_ids_8221427393431", "1458929465", "no");
INSERT INTO `wp_options` VALUES("3616", "_transient_wc_product_children_ids_8221427393431", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3617", "_transient_timeout_wc_review_count_8121427393431", "1458929483", "no");
INSERT INTO `wp_options` VALUES("3618", "_transient_wc_review_count_8121427393431", "0", "no");
INSERT INTO `wp_options` VALUES("3619", "_transient_timeout_wc_max_related_8121427393431", "1458929483", "no");
INSERT INTO `wp_options` VALUES("3620", "_transient_wc_max_related_8121427393431", "5", "no");
INSERT INTO `wp_options` VALUES("3624", "_transient_timeout_wc_product_children_ids_8121427393550", "1458929571", "no");
INSERT INTO `wp_options` VALUES("3625", "_transient_wc_product_children_ids_8121427393550", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3626", "_transient_timeout_wc_product_total_stock_8121427393550", "1458929571", "no");
INSERT INTO `wp_options` VALUES("3627", "_transient_wc_product_total_stock_8121427393550", "3", "no");
INSERT INTO `wp_options` VALUES("3628", "_transient_timeout_wc_product_children_ids_8221427393550", "1458929571", "no");
INSERT INTO `wp_options` VALUES("3629", "_transient_wc_product_children_ids_8221427393550", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3632", "_transient_timeout_wc_product_children_ids_8721427393550", "1458929662", "no");
INSERT INTO `wp_options` VALUES("3633", "_transient_wc_product_children_ids_8721427393550", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3634", "_transient_timeout_wc_product_total_stock_8721427393550", "1458929662", "no");
INSERT INTO `wp_options` VALUES("3635", "_transient_wc_product_total_stock_8721427393550", "10", "no");
INSERT INTO `wp_options` VALUES("3636", "_transient_timeout_wc_review_count_8101427393550", "1458929748", "no");
INSERT INTO `wp_options` VALUES("3637", "_transient_wc_review_count_8101427393550", "0", "no");
INSERT INTO `wp_options` VALUES("3638", "_transient_timeout_wc_max_related_8101427393550", "1458929748", "no");
INSERT INTO `wp_options` VALUES("3639", "_transient_wc_max_related_8101427393550", "0", "no");
INSERT INTO `wp_options` VALUES("3643", "_transient_timeout_wc_review_count_8101427393886", "1458929895", "no");
INSERT INTO `wp_options` VALUES("3644", "_transient_wc_review_count_8101427393886", "0", "no");
INSERT INTO `wp_options` VALUES("3645", "_transient_timeout_wc_max_related_8101427393886", "1458929895", "no");
INSERT INTO `wp_options` VALUES("3646", "_transient_wc_max_related_8101427393886", "0", "no");
INSERT INTO `wp_options` VALUES("3648", "_transient_timeout_wc_review_count_8101427394030", "1458930036", "no");
INSERT INTO `wp_options` VALUES("3649", "_transient_wc_review_count_8101427394030", "0", "no");
INSERT INTO `wp_options` VALUES("3650", "_transient_timeout_wc_max_related_8101427394030", "1458930036", "no");
INSERT INTO `wp_options` VALUES("3651", "_transient_wc_max_related_8101427394030", "0", "no");
INSERT INTO `wp_options` VALUES("3655", "_transient_timeout_wc_product_children_ids_8721427394052", "1458930762", "no");
INSERT INTO `wp_options` VALUES("3656", "_transient_wc_product_children_ids_8721427394052", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3657", "_transient_timeout_wc_product_total_stock_8721427394052", "1458930762", "no");
INSERT INTO `wp_options` VALUES("3658", "_transient_wc_product_total_stock_8721427394052", "10", "no");
INSERT INTO `wp_options` VALUES("3659", "_transient_timeout_wc_review_count_8721427394052", "1458930763", "no");
INSERT INTO `wp_options` VALUES("3660", "_transient_wc_review_count_8721427394052", "0", "no");
INSERT INTO `wp_options` VALUES("3661", "_transient_timeout_wc_max_related_8721427394052", "1458930763", "no");
INSERT INTO `wp_options` VALUES("3662", "_transient_wc_max_related_8721427394052", "5", "no");
INSERT INTO `wp_options` VALUES("3663", "_transient_timeout_wc_product_children_ids_8221427394052", "1458930763", "no");
INSERT INTO `wp_options` VALUES("3664", "_transient_wc_product_children_ids_8221427394052", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3666", "_transient_timeout_wc_review_count_8221427394052", "1458930840", "no");
INSERT INTO `wp_options` VALUES("3667", "_transient_wc_review_count_8221427394052", "0", "no");
INSERT INTO `wp_options` VALUES("3668", "_transient_timeout_wc_max_related_8221427394052", "1458930840", "no");
INSERT INTO `wp_options` VALUES("3669", "_transient_wc_max_related_8221427394052", "5", "no");
INSERT INTO `wp_options` VALUES("3670", "_transient_timeout_wc_product_children_ids_8121427394052", "1458930841", "no");
INSERT INTO `wp_options` VALUES("3671", "_transient_wc_product_children_ids_8121427394052", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3672", "_transient_timeout_wc_product_total_stock_8121427394052", "1458930841", "no");
INSERT INTO `wp_options` VALUES("3673", "_transient_wc_product_total_stock_8121427394052", "3", "no");
INSERT INTO `wp_options` VALUES("3674", "_transient_timeout_wc_review_count_8801427394052", "1458930948", "no");
INSERT INTO `wp_options` VALUES("3675", "_transient_wc_review_count_8801427394052", "0", "no");
INSERT INTO `wp_options` VALUES("3676", "_transient_timeout_wc_max_related_8801427394052", "1458930948", "no");
INSERT INTO `wp_options` VALUES("3677", "_transient_wc_max_related_8801427394052", "5", "no");
INSERT INTO `wp_options` VALUES("3686", "_transient_timeout_wc_review_count_8121427394052", "1458931491", "no");
INSERT INTO `wp_options` VALUES("3687", "_transient_wc_review_count_8121427394052", "0", "no");
INSERT INTO `wp_options` VALUES("3688", "_transient_timeout_wc_max_related_8121427394052", "1458931491", "no");
INSERT INTO `wp_options` VALUES("3689", "_transient_wc_max_related_8121427394052", "5", "no");
INSERT INTO `wp_options` VALUES("3691", "_transient_timeout_wc_review_count_8201427394052", "1458931529", "no");
INSERT INTO `wp_options` VALUES("3692", "_transient_wc_review_count_8201427394052", "0", "no");
INSERT INTO `wp_options` VALUES("3693", "_transient_timeout_wc_max_related_8201427394052", "1458931529", "no");
INSERT INTO `wp_options` VALUES("3694", "_transient_wc_max_related_8201427394052", "5", "no");
INSERT INTO `wp_options` VALUES("3695", "_transient_timeout_wc_review_count_8211427394052", "1458931536", "no");
INSERT INTO `wp_options` VALUES("3696", "_transient_wc_review_count_8211427394052", "0", "no");
INSERT INTO `wp_options` VALUES("3697", "_transient_timeout_wc_max_related_8211427394052", "1458931536", "no");
INSERT INTO `wp_options` VALUES("3698", "_transient_wc_max_related_8211427394052", "5", "no");
INSERT INTO `wp_options` VALUES("3723", "_transient_timeout_wc_product_children_ids_8121427397002", "1458933010", "no");
INSERT INTO `wp_options` VALUES("3724", "_transient_wc_product_children_ids_8121427397002", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3725", "_transient_timeout_wc_product_total_stock_8121427397002", "1458933010", "no");
INSERT INTO `wp_options` VALUES("3726", "_transient_wc_product_total_stock_8121427397002", "3", "no");
INSERT INTO `wp_options` VALUES("3727", "_transient_timeout_wc_review_count_8121427397002", "1458933010", "no");
INSERT INTO `wp_options` VALUES("3728", "_transient_wc_review_count_8121427397002", "0", "no");
INSERT INTO `wp_options` VALUES("3729", "_transient_timeout_wc_max_related_8121427397002", "1458933010", "no");
INSERT INTO `wp_options` VALUES("3730", "_transient_wc_max_related_8121427397002", "5", "no");
INSERT INTO `wp_options` VALUES("3731", "_transient_timeout_wc_product_children_ids_8721427397002", "1458933010", "no");
INSERT INTO `wp_options` VALUES("3732", "_transient_wc_product_children_ids_8721427397002", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3733", "_transient_timeout_wc_product_total_stock_8721427397002", "1458933010", "no");
INSERT INTO `wp_options` VALUES("3734", "_transient_wc_product_total_stock_8721427397002", "10", "no");
INSERT INTO `wp_options` VALUES("3735", "_transient_timeout_wc_product_children_ids_8221427397002", "1458933010", "no");
INSERT INTO `wp_options` VALUES("3736", "_transient_wc_product_children_ids_8221427397002", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3738", "_transient_timeout_wc_product_children_ids_8121427397074", "1458933081", "no");
INSERT INTO `wp_options` VALUES("3739", "_transient_wc_product_children_ids_8121427397074", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3740", "_transient_timeout_wc_product_total_stock_8121427397074", "1458933081", "no");
INSERT INTO `wp_options` VALUES("3741", "_transient_wc_product_total_stock_8121427397074", "3", "no");
INSERT INTO `wp_options` VALUES("3742", "_transient_timeout_wc_review_count_8121427397074", "1458933081", "no");
INSERT INTO `wp_options` VALUES("3743", "_transient_wc_review_count_8121427397074", "0", "no");
INSERT INTO `wp_options` VALUES("3744", "_transient_timeout_wc_max_related_8121427397074", "1458933081", "no");
INSERT INTO `wp_options` VALUES("3745", "_transient_wc_max_related_8121427397074", "5", "no");
INSERT INTO `wp_options` VALUES("3746", "_transient_timeout_wc_product_children_ids_8221427397074", "1458933081", "no");
INSERT INTO `wp_options` VALUES("3747", "_transient_wc_product_children_ids_8221427397074", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3748", "_transient_timeout_wc_product_children_ids_8721427397074", "1458933081", "no");
INSERT INTO `wp_options` VALUES("3749", "_transient_wc_product_children_ids_8721427397074", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3750", "_transient_timeout_wc_product_total_stock_8721427397074", "1458933081", "no");
INSERT INTO `wp_options` VALUES("3751", "_transient_wc_product_total_stock_8721427397074", "10", "no");
INSERT INTO `wp_options` VALUES("3752", "_transient_timeout_wc_review_count_8221427397074", "1458933090", "no");
INSERT INTO `wp_options` VALUES("3753", "_transient_wc_review_count_8221427397074", "0", "no");
INSERT INTO `wp_options` VALUES("3754", "_transient_timeout_wc_max_related_8221427397074", "1458933090", "no");
INSERT INTO `wp_options` VALUES("3755", "_transient_wc_max_related_8221427397074", "5", "no");
INSERT INTO `wp_options` VALUES("3761", "_transient_timeout_wc_product_children_ids_8221427397275", "1458933286", "no");
INSERT INTO `wp_options` VALUES("3762", "_transient_wc_product_children_ids_8221427397275", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3763", "_transient_timeout_wc_review_count_8221427397275", "1458933286", "no");
INSERT INTO `wp_options` VALUES("3764", "_transient_wc_review_count_8221427397275", "0", "no");
INSERT INTO `wp_options` VALUES("3765", "_transient_timeout_wc_max_related_8221427397275", "1458933286", "no");
INSERT INTO `wp_options` VALUES("3766", "_transient_wc_max_related_8221427397275", "5", "no");
INSERT INTO `wp_options` VALUES("3768", "_transient_timeout_wc_product_children_ids_8221427397324", "1458933331", "no");
INSERT INTO `wp_options` VALUES("3769", "_transient_wc_product_children_ids_8221427397324", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3770", "_transient_timeout_wc_review_count_8221427397324", "1458933331", "no");
INSERT INTO `wp_options` VALUES("3771", "_transient_wc_review_count_8221427397324", "0", "no");
INSERT INTO `wp_options` VALUES("3772", "_transient_timeout_wc_max_related_8221427397324", "1458933331", "no");
INSERT INTO `wp_options` VALUES("3773", "_transient_wc_max_related_8221427397324", "5", "no");
INSERT INTO `wp_options` VALUES("3774", "_transient_timeout_wc_product_children_ids_8121427397324", "1458933331", "no");
INSERT INTO `wp_options` VALUES("3775", "_transient_wc_product_children_ids_8121427397324", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3776", "_transient_timeout_wc_product_total_stock_8121427397324", "1458933331", "no");
INSERT INTO `wp_options` VALUES("3777", "_transient_wc_product_total_stock_8121427397324", "3", "no");
INSERT INTO `wp_options` VALUES("3778", "_transient_timeout_wc_review_count_8201427397324", "1458933344", "no");
INSERT INTO `wp_options` VALUES("3779", "_transient_wc_review_count_8201427397324", "0", "no");
INSERT INTO `wp_options` VALUES("3780", "_transient_timeout_wc_max_related_8201427397324", "1458933344", "no");
INSERT INTO `wp_options` VALUES("3781", "_transient_wc_max_related_8201427397324", "5", "no");
INSERT INTO `wp_options` VALUES("3782", "_transient_timeout_wc_product_children_ids_8721427397324", "1458933344", "no");
INSERT INTO `wp_options` VALUES("3783", "_transient_wc_product_children_ids_8721427397324", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3784", "_transient_timeout_wc_product_total_stock_8721427397324", "1458933344", "no");
INSERT INTO `wp_options` VALUES("3785", "_transient_wc_product_total_stock_8721427397324", "10", "no");
INSERT INTO `wp_options` VALUES("3787", "_transient_timeout_wc_review_count_8201427397398", "1458933404", "no");
INSERT INTO `wp_options` VALUES("3788", "_transient_wc_review_count_8201427397398", "0", "no");
INSERT INTO `wp_options` VALUES("3789", "_transient_timeout_wc_max_related_8201427397398", "1458933404", "no");
INSERT INTO `wp_options` VALUES("3790", "_transient_wc_max_related_8201427397398", "5", "no");
INSERT INTO `wp_options` VALUES("3791", "_transient_timeout_wc_product_children_ids_8221427397398", "1458933404", "no");
INSERT INTO `wp_options` VALUES("3792", "_transient_wc_product_children_ids_8221427397398", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3793", "_transient_timeout_wc_product_children_ids_8721427397398", "1458933411", "no");
INSERT INTO `wp_options` VALUES("3794", "_transient_wc_product_children_ids_8721427397398", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3795", "_transient_timeout_wc_product_total_stock_8721427397398", "1458933411", "no");
INSERT INTO `wp_options` VALUES("3796", "_transient_wc_product_total_stock_8721427397398", "10", "no");
INSERT INTO `wp_options` VALUES("3799", "_transient_timeout_wc_product_children_ids_8121427397398", "1458933420", "no");
INSERT INTO `wp_options` VALUES("3800", "_transient_wc_product_children_ids_8121427397398", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3801", "_transient_timeout_wc_product_total_stock_8121427397398", "1458933420", "no");
INSERT INTO `wp_options` VALUES("3802", "_transient_wc_product_total_stock_8121427397398", "3", "no");
INSERT INTO `wp_options` VALUES("3810", "_transient_timeout_wc_review_count_8101427397398", "1458933628", "no");
INSERT INTO `wp_options` VALUES("3811", "_transient_wc_review_count_8101427397398", "0", "no");
INSERT INTO `wp_options` VALUES("3812", "_transient_timeout_wc_max_related_8101427397398", "1458933628", "no");
INSERT INTO `wp_options` VALUES("3813", "_transient_wc_max_related_8101427397398", "0", "no");
INSERT INTO `wp_options` VALUES("3814", "_transient_timeout_wc_product_children_ids_7691427397398", "1458933635", "no");
INSERT INTO `wp_options` VALUES("3815", "_transient_wc_product_children_ids_7691427397398", "a:4:{i:0;i:770;i:1;i:771;i:2;i:772;i:3;i:773;}", "no");
INSERT INTO `wp_options` VALUES("3816", "_transient_timeout_wc_review_count_7691427397398", "1458933635", "no");
INSERT INTO `wp_options` VALUES("3817", "_transient_wc_review_count_7691427397398", "0", "no");
INSERT INTO `wp_options` VALUES("3818", "_transient_timeout_wc_max_related_7691427397398", "1458933635", "no");
INSERT INTO `wp_options` VALUES("3819", "_transient_wc_max_related_7691427397398", "0", "no");
INSERT INTO `wp_options` VALUES("3820", "_transient_timeout_wc_review_count_8221427397398", "1458933707", "no");
INSERT INTO `wp_options` VALUES("3821", "_transient_wc_review_count_8221427397398", "0", "no");
INSERT INTO `wp_options` VALUES("3822", "_transient_timeout_wc_max_related_8221427397398", "1458933707", "no");
INSERT INTO `wp_options` VALUES("3823", "_transient_wc_max_related_8221427397398", "5", "no");
INSERT INTO `wp_options` VALUES("3904", "_transient_timeout_wc_review_count_8721427397398", "1458997330", "no");
INSERT INTO `wp_options` VALUES("3905", "_transient_wc_review_count_8721427397398", "0", "no");
INSERT INTO `wp_options` VALUES("3906", "_transient_timeout_wc_max_related_8721427397398", "1458997330", "no");
INSERT INTO `wp_options` VALUES("3907", "_transient_wc_max_related_8721427397398", "5", "no");
INSERT INTO `wp_options` VALUES("3908", "_transient_timeout_wc_review_count_8121427397398", "1458997349", "no");
INSERT INTO `wp_options` VALUES("3909", "_transient_wc_review_count_8121427397398", "0", "no");
INSERT INTO `wp_options` VALUES("3910", "_transient_timeout_wc_max_related_8121427397398", "1458997349", "no");
INSERT INTO `wp_options` VALUES("3911", "_transient_wc_max_related_8121427397398", "5", "no");
INSERT INTO `wp_options` VALUES("3912", "_transient_timeout_wc_review_count_8801427397398", "1458997371", "no");
INSERT INTO `wp_options` VALUES("3913", "_transient_wc_review_count_8801427397398", "0", "no");
INSERT INTO `wp_options` VALUES("3914", "_transient_timeout_wc_max_related_8801427397398", "1458997371", "no");
INSERT INTO `wp_options` VALUES("3915", "_transient_wc_max_related_8801427397398", "5", "no");
INSERT INTO `wp_options` VALUES("3924", "_transient_timeout_wc_review_count_8801427463460", "1458999467", "no");
INSERT INTO `wp_options` VALUES("3925", "_transient_wc_review_count_8801427463460", "0", "no");
INSERT INTO `wp_options` VALUES("3926", "_transient_timeout_wc_max_related_8801427463460", "1458999467", "no");
INSERT INTO `wp_options` VALUES("3927", "_transient_wc_max_related_8801427463460", "5", "no");
INSERT INTO `wp_options` VALUES("3928", "_transient_timeout_wc_product_children_ids_8721427463460", "1458999467", "no");
INSERT INTO `wp_options` VALUES("3929", "_transient_wc_product_children_ids_8721427463460", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3930", "_transient_timeout_wc_product_total_stock_8721427463460", "1458999467", "no");
INSERT INTO `wp_options` VALUES("3931", "_transient_wc_product_total_stock_8721427463460", "10", "no");
INSERT INTO `wp_options` VALUES("3932", "_transient_timeout_wc_product_children_ids_8221427463460", "1458999467", "no");
INSERT INTO `wp_options` VALUES("3933", "_transient_wc_product_children_ids_8221427463460", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3936", "_transient_timeout_wc_product_children_ids_8121427463460", "1458999474", "no");
INSERT INTO `wp_options` VALUES("3937", "_transient_wc_product_children_ids_8121427463460", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3938", "_transient_timeout_wc_product_total_stock_8121427463460", "1458999474", "no");
INSERT INTO `wp_options` VALUES("3939", "_transient_wc_product_total_stock_8121427463460", "3", "no");
INSERT INTO `wp_options` VALUES("3940", "_transient_timeout_wc_review_count_8721427463460", "1458999478", "no");
INSERT INTO `wp_options` VALUES("3941", "_transient_wc_review_count_8721427463460", "0", "no");
INSERT INTO `wp_options` VALUES("3942", "_transient_timeout_wc_max_related_8721427463460", "1458999478", "no");
INSERT INTO `wp_options` VALUES("3943", "_transient_wc_max_related_8721427463460", "5", "no");
INSERT INTO `wp_options` VALUES("3945", "_transient_timeout_wc_product_children_ids_8721427463535", "1458999581", "no");
INSERT INTO `wp_options` VALUES("3946", "_transient_wc_product_children_ids_8721427463535", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("3947", "_transient_timeout_wc_product_total_stock_8721427463535", "1458999581", "no");
INSERT INTO `wp_options` VALUES("3948", "_transient_wc_product_total_stock_8721427463535", "10", "no");
INSERT INTO `wp_options` VALUES("3949", "_transient_timeout_wc_review_count_8721427463535", "1458999581", "no");
INSERT INTO `wp_options` VALUES("3950", "_transient_wc_review_count_8721427463535", "0", "no");
INSERT INTO `wp_options` VALUES("3951", "_transient_timeout_wc_max_related_8721427463535", "1458999581", "no");
INSERT INTO `wp_options` VALUES("3952", "_transient_wc_max_related_8721427463535", "5", "no");
INSERT INTO `wp_options` VALUES("3953", "_transient_timeout_wc_product_children_ids_8121427463535", "1458999581", "no");
INSERT INTO `wp_options` VALUES("3954", "_transient_wc_product_children_ids_8121427463535", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("3955", "_transient_timeout_wc_product_total_stock_8121427463535", "1458999581", "no");
INSERT INTO `wp_options` VALUES("3956", "_transient_wc_product_total_stock_8121427463535", "3", "no");
INSERT INTO `wp_options` VALUES("3957", "_transient_timeout_wc_review_count_8801427463535", "1458999600", "no");
INSERT INTO `wp_options` VALUES("3958", "_transient_wc_review_count_8801427463535", "0", "no");
INSERT INTO `wp_options` VALUES("3959", "_transient_timeout_wc_max_related_8801427463535", "1458999600", "no");
INSERT INTO `wp_options` VALUES("3960", "_transient_wc_max_related_8801427463535", "5", "no");
INSERT INTO `wp_options` VALUES("3961", "_transient_timeout_wc_product_children_ids_8221427463535", "1458999600", "no");
INSERT INTO `wp_options` VALUES("3962", "_transient_wc_product_children_ids_8221427463535", "a:2:{i:0;i:823;i:1;i:824;}", "no");
INSERT INTO `wp_options` VALUES("3980", "_transient_timeout_wc_review_count_8121427463535", "1459002459", "no");
INSERT INTO `wp_options` VALUES("3981", "_transient_wc_review_count_8121427463535", "0", "no");
INSERT INTO `wp_options` VALUES("3982", "_transient_timeout_wc_max_related_8121427463535", "1459002459", "no");
INSERT INTO `wp_options` VALUES("3983", "_transient_wc_max_related_8121427463535", "5", "no");
INSERT INTO `wp_options` VALUES("4021", "WPLANG", "", "yes");
INSERT INTO `wp_options` VALUES("4031", "_transient_timeout_wc_product_children_ids_7691427463535", "1459100070", "no");
INSERT INTO `wp_options` VALUES("4032", "_transient_wc_product_children_ids_7691427463535", "a:4:{i:0;i:770;i:1;i:771;i:2;i:772;i:3;i:773;}", "no");
INSERT INTO `wp_options` VALUES("4033", "_transient_timeout_wc_review_count_7691427463535", "1459100070", "no");
INSERT INTO `wp_options` VALUES("4034", "_transient_wc_review_count_7691427463535", "0", "no");
INSERT INTO `wp_options` VALUES("4035", "_transient_timeout_wc_max_related_7691427463535", "1459100070", "no");
INSERT INTO `wp_options` VALUES("4036", "_transient_wc_max_related_7691427463535", "0", "no");
INSERT INTO `wp_options` VALUES("4037", "_transient_timeout_wc_review_count_8101427463535", "1459100079", "no");
INSERT INTO `wp_options` VALUES("4038", "_transient_wc_review_count_8101427463535", "0", "no");
INSERT INTO `wp_options` VALUES("4039", "_transient_timeout_wc_max_related_8101427463535", "1459100079", "no");
INSERT INTO `wp_options` VALUES("4040", "_transient_wc_max_related_8101427463535", "0", "no");
INSERT INTO `wp_options` VALUES("4045", "woocommerce_default_gateway", "", "yes");
INSERT INTO `wp_options` VALUES("4046", "woocommerce_gateway_order", "a:5:{s:4:\"bacs\";i:0;s:7:\"payfast\";i:1;s:6:\"cheque\";i:2;s:3:\"cod\";i:3;s:6:\"paypal\";i:4;}", "yes");
INSERT INTO `wp_options` VALUES("4069", "_transient_timeout_wc_review_count_8201427463535", "1459100552", "no");
INSERT INTO `wp_options` VALUES("4070", "_transient_wc_review_count_8201427463535", "0", "no");
INSERT INTO `wp_options` VALUES("4071", "_transient_timeout_wc_max_related_8201427463535", "1459100552", "no");
INSERT INTO `wp_options` VALUES("4072", "_transient_wc_max_related_8201427463535", "5", "no");
INSERT INTO `wp_options` VALUES("4082", "bup_db_version", "0.5.3", "yes");
INSERT INTO `wp_options` VALUES("4083", "bup_db_installed", "1", "yes");
INSERT INTO `wp_options` VALUES("4084", "wpseo", "a:20:{s:14:\"blocking_files\";a:0:{}s:26:\"ignore_blog_public_warning\";b:0;s:31:\"ignore_meta_description_warning\";b:0;s:20:\"ignore_page_comments\";b:0;s:16:\"ignore_permalink\";b:0;s:15:\"ms_defaults_set\";b:0;s:23:\"theme_description_found\";s:0:\"\";s:21:\"theme_has_description\";b:0;s:7:\"version\";s:5:\"2.3.5\";s:11:\"alexaverify\";s:0:\"\";s:12:\"company_logo\";s:62:\"http://chequerbox.co.za/wp-content/uploads/2015/03/WebLogo.jpg\";s:12:\"company_name\";s:10:\"Chequerbox\";s:17:\"company_or_person\";s:7:\"company\";s:20:\"disableadvanced_meta\";b:1;s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:12:\"website_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("4085", "wpseo_permalinks", "a:13:{s:15:\"cleanpermalinks\";b:0;s:24:\"cleanpermalink-extravars\";s:0:\"\";s:29:\"cleanpermalink-googlecampaign\";b:0;s:31:\"cleanpermalink-googlesitesearch\";b:0;s:15:\"cleanreplytocom\";b:0;s:10:\"cleanslugs\";b:1;s:14:\"hide-feedlinks\";b:0;s:12:\"hide-rsdlink\";b:0;s:14:\"hide-shortlink\";b:0;s:16:\"hide-wlwmanifest\";b:0;s:18:\"redirectattachment\";b:0;s:17:\"stripcategorybase\";b:0;s:13:\"trailingslash\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("4086", "wpseo_titles", "a:80:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:5:\"noodp\";b:0;s:6:\"noydir\";b:0;s:15:\"usemetakeywords\";b:0;s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:18:\"metakey-home-wpseo\";s:0:\"\";s:20:\"metakey-author-wpseo\";s:0:\"\";s:22:\"noindex-subpages-wpseo\";b:0;s:20:\"noindex-author-wpseo\";b:0;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"metakey-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:16:\"hideeditbox-post\";b:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"metakey-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:16:\"hideeditbox-page\";b:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"metakey-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:22:\"hideeditbox-attachment\";b:0;s:13:\"title-product\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-product\";s:0:\"\";s:15:\"metakey-product\";s:0:\"\";s:15:\"noindex-product\";b:0;s:16:\"showdate-product\";b:0;s:19:\"hideeditbox-product\";b:0;s:23:\"title-ptarchive-product\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-product\";s:0:\"\";s:25:\"metakey-ptarchive-product\";s:0:\"\";s:25:\"bctitle-ptarchive-product\";s:0:\"\";s:25:\"noindex-ptarchive-product\";b:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:20:\"metakey-tax-category\";s:0:\"\";s:24:\"hideeditbox-tax-category\";b:0;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:20:\"metakey-tax-post_tag\";s:0:\"\";s:24:\"hideeditbox-tax-post_tag\";b:0;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:23:\"metakey-tax-post_format\";s:0:\"\";s:27:\"hideeditbox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:21:\"title-tax-product_cat\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_cat\";s:0:\"\";s:23:\"metakey-tax-product_cat\";s:0:\"\";s:27:\"hideeditbox-tax-product_cat\";b:0;s:23:\"noindex-tax-product_cat\";b:0;s:21:\"title-tax-product_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_tag\";s:0:\"\";s:23:\"metakey-tax-product_tag\";s:0:\"\";s:27:\"hideeditbox-tax-product_tag\";b:0;s:23:\"noindex-tax-product_tag\";b:0;s:32:\"title-tax-product_shipping_class\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-tax-product_shipping_class\";s:0:\"\";s:34:\"metakey-tax-product_shipping_class\";s:0:\"\";s:38:\"hideeditbox-tax-product_shipping_class\";b:0;s:34:\"noindex-tax-product_shipping_class\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("4087", "wpseo_social", "a:22:{s:9:\"fb_admins\";a:0:{}s:6:\"fbapps\";a:0:{}s:12:\"fbconnectkey\";s:32:\"82b03e295321921d46a6d059d5ee21b5\";s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:9:\"opengraph\";b:1;s:10:\"googleplus\";b:0;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:0;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("4088", "wpseo_rss", "a:2:{s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}", "yes");
INSERT INTO `wp_options` VALUES("4089", "wpseo_internallinks", "a:14:{s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:23:\"breadcrumbs-blog-remove\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:23:\"post_types-post-maintax\";i:0;s:26:\"post_types-product-maintax\";i:0;s:29:\"taxonomy-product_cat-ptparent\";i:0;s:29:\"taxonomy-product_tag-ptparent\";i:0;s:40:\"taxonomy-product_shipping_class-ptparent\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("4090", "wpseo_xml", "a:23:{s:22:\"disable_author_sitemap\";b:1;s:22:\"disable_author_noposts\";b:1;s:16:\"enablexmlsitemap\";b:1;s:16:\"entries-per-page\";i:1000;s:38:\"user_role-administrator-not_in_sitemap\";b:0;s:31:\"user_role-editor-not_in_sitemap\";b:0;s:31:\"user_role-author-not_in_sitemap\";b:0;s:36:\"user_role-contributor-not_in_sitemap\";b:0;s:35:\"user_role-subscriber-not_in_sitemap\";b:0;s:33:\"user_role-customer-not_in_sitemap\";b:0;s:37:\"user_role-shop_manager-not_in_sitemap\";b:0;s:34:\"user_role-wc_author-not_in_sitemap\";b:0;s:38:\"user_role-wc_management-not_in_sitemap\";b:0;s:30:\"post_types-post-not_in_sitemap\";b:0;s:30:\"post_types-page-not_in_sitemap\";b:0;s:36:\"post_types-attachment-not_in_sitemap\";b:1;s:33:\"post_types-product-not_in_sitemap\";b:0;s:34:\"taxonomies-category-not_in_sitemap\";b:0;s:34:\"taxonomies-post_tag-not_in_sitemap\";b:0;s:37:\"taxonomies-post_format-not_in_sitemap\";b:0;s:37:\"taxonomies-product_cat-not_in_sitemap\";b:0;s:37:\"taxonomies-product_tag-not_in_sitemap\";b:0;s:48:\"taxonomies-product_shipping_class-not_in_sitemap\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("4125", "_transient_timeout_wc_review_count_8211427463535", "1459118292", "no");
INSERT INTO `wp_options` VALUES("4126", "_transient_wc_review_count_8211427463535", "0", "no");
INSERT INTO `wp_options` VALUES("4127", "_transient_timeout_wc_max_related_8211427463535", "1459118292", "no");
INSERT INTO `wp_options` VALUES("4128", "_transient_wc_max_related_8211427463535", "5", "no");
INSERT INTO `wp_options` VALUES("4150", "_transient_timeout_wc_review_count_8221427463535", "1459143357", "no");
INSERT INTO `wp_options` VALUES("4151", "_transient_wc_review_count_8221427463535", "0", "no");
INSERT INTO `wp_options` VALUES("4152", "_transient_timeout_wc_max_related_8221427463535", "1459143357", "no");
INSERT INTO `wp_options` VALUES("4153", "_transient_wc_max_related_8221427463535", "5", "no");
INSERT INTO `wp_options` VALUES("4159", "woocommerce_flat_rate_settings", "a:14:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:9:\"Flat Rate\";s:12:\"availability\";s:3:\"all\";s:9:\"countries\";s:0:\"\";s:10:\"tax_status\";s:7:\"taxable\";s:14:\"cost_per_order\";s:3:\"100\";s:16:\"additional_costs\";s:0:\"\";s:4:\"type\";s:5:\"order\";s:22:\"additional_costs_table\";b:0;s:11:\"minimum_fee\";s:0:\"\";s:6:\"addons\";s:0:\"\";s:7:\"options\";s:0:\"\";s:4:\"cost\";s:0:\"\";s:3:\"fee\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("4160", "woocommerce_flat_rates", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("4163", "woocommerce_free_shipping_settings", "a:6:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:13:\"Free Shipping\";s:12:\"availability\";s:3:\"all\";s:9:\"countries\";s:0:\"\";s:8:\"requires\";s:0:\"\";s:10:\"min_amount\";s:1:\"0\";}", "yes");
INSERT INTO `wp_options` VALUES("7370", "db_upgraded", "", "yes");
INSERT INTO `wp_options` VALUES("8159", "jetpack_private_options", "a:2:{s:10:\"blog_token\";s:65:\"@hHUjwN7Y3wds4JbN0KpyAPf9^RC2a*&.WXFlAtkdXr4LqFfSIdyWcHJeSAKZkFMv\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"!zCaT^SXqPEoinMhpCE6r9Heq*r5lm$3.Nrs!enc8(qo*z!0OPQ3sh@xsn7meSL!X.1\";}}", "yes");
INSERT INTO `wp_options` VALUES("8160", "siteorigin_panels_settings", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("8167", "jetpack_security_report", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("8170", "jetpack_protect_key", "eef45ed9897d3afb6fb426d4571fa90b81a37db3", "yes");
INSERT INTO `wp_options` VALUES("8179", "woocommerce_language_pack_version", "a:2:{i:0;s:5:\"2.4.7\";i:1;s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("8183", "jetpack_updates", "a:7:{s:7:\"plugins\";i:10;s:6:\"themes\";i:4;s:9:\"wordpress\";i:0;s:12:\"translations\";i:0;s:5:\"total\";i:14;s:10:\"wp_version\";s:5:\"4.3.1\";s:26:\"site_is_version_controlled\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("8190", "woothemes-updater-activated", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("8192", "stb_enabled", "1", "yes");
INSERT INTO `wp_options` VALUES("8193", "stc_enabled", "1", "yes");
INSERT INTO `wp_options` VALUES("8194", "gravatar_disable_hovercards", "enabled", "yes");
INSERT INTO `wp_options` VALUES("9869", "jetpack_protect_blocked_attempts", "625", "yes");
INSERT INTO `wp_options` VALUES("10723", "woocommerce_allow_tracking", "no", "yes");
INSERT INTO `wp_options` VALUES("10755", "widget_woocommerce_widget_cart", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("10973", "woocommerce_new_order_settings", "a:5:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:45:\"info@chequerbox.co.za, anneke.weber@yahoo.com\";s:7:\"subject\";s:65:\"[{site_title}] New customer order ({order_number}) - {order_date}\";s:7:\"heading\";s:18:\"New customer order\";s:10:\"email_type\";s:4:\"html\";}", "yes");
INSERT INTO `wp_options` VALUES("14467", "widget_blog_subscription", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14468", "widget_bcn_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14469", "widget_calendar", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14470", "widget_widget_contact_info", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14471", "widget_nav_menu", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14472", "widget_jetpack_display_posts_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14473", "widget_gallery", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14474", "widget_wpcom-goodreads", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14475", "widget_grofile", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14476", "widget_image", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14477", "widget_siteorigin-panels-builder", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14478", "widget_pages", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14479", "widget_siteorigin-panels-post-content", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14480", "widget_siteorigin-panels-postloop", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14482", "widget_rss_links", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14483", "widget_tag_cloud", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14484", "widget_top-posts", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14485", "widget_woocommerce_layered_nav", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14486", "widget_woocommerce_layered_nav_filters", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14487", "widget_woocommerce_price_filter", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14488", "widget_woocommerce_product_categories", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14489", "widget_woocommerce_product_search", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14490", "widget_woocommerce_product_tag_cloud", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14491", "widget_woocommerce_recently_viewed_products", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14492", "widget_woocommerce_recent_reviews", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14493", "widget_woocommerce_top_rated_products", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("14893", "_transient_woocommerce_cache_excluded_uris", "a:6:{i:0;s:5:\"p=766\";i:1;s:5:\"/cart\";i:2;s:6:\"p=1082\";i:3;s:11:\"/checkout-2\";i:4;s:5:\"p=768\";i:5;s:11:\"/my-account\";}", "yes");
INSERT INTO `wp_options` VALUES("22386", "_transient_timeout_wc_products_will_display_231436967642", "1446267622", "no");
INSERT INTO `wp_options` VALUES("22387", "_transient_wc_products_will_display_231436967642", "1", "no");
INSERT INTO `wp_options` VALUES("22682", "_transient_timeout_wc_products_will_display_201436967642", "1446289367", "no");
INSERT INTO `wp_options` VALUES("22683", "_transient_wc_products_will_display_201436967642", "1", "no");
INSERT INTO `wp_options` VALUES("22973", "_transient_timeout_wc_products_will_display_221436967642", "1446267618", "no");
INSERT INTO `wp_options` VALUES("22974", "_transient_wc_products_will_display_221436967642", "1", "no");
INSERT INTO `wp_options` VALUES("23886", "jetpack_unique_connection", "a:3:{s:9:\"connected\";i:1;s:12:\"disconnected\";i:-1;s:7:\"version\";s:5:\"3.6.1\";}", "yes");
INSERT INTO `wp_options` VALUES("23887", "woocommerce_db_version", "2.3.13", "yes");
INSERT INTO `wp_options` VALUES("23896", "trusted_ip_header", "REMOTE_ADDR", "yes");
INSERT INTO `wp_options` VALUES("24545", "_transient_timeout_wc_products_will_display_211436967642", "1446612489", "no");
INSERT INTO `wp_options` VALUES("24546", "_transient_wc_products_will_display_211436967642", "1", "no");
INSERT INTO `wp_options` VALUES("29748", "finished_splitting_shared_terms", "1", "yes");
INSERT INTO `wp_options` VALUES("34390", "_transient_timeout_wc_product_children_ids_8121436967645", "1444793341", "no");
INSERT INTO `wp_options` VALUES("34391", "_transient_wc_product_children_ids_8121436967645", "a:2:{i:0;i:813;i:1;i:814;}", "no");
INSERT INTO `wp_options` VALUES("34392", "_transient_timeout_wc_product_total_stock_8121436967645", "1444793341", "no");
INSERT INTO `wp_options` VALUES("34393", "_transient_wc_product_total_stock_8121436967645", "3", "no");
INSERT INTO `wp_options` VALUES("34394", "_transient_timeout_wc_product_children_ids_8221436967645", "1444793341", "no");
INSERT INTO `wp_options` VALUES("34395", "_transient_wc_product_children_ids_8221436967645", "a:4:{i:0;i:823;i:1;i:824;i:2;i:1263;i:3;i:1264;}", "no");
INSERT INTO `wp_options` VALUES("34437", "_transient_timeout_wc_product_children_ids_7691436967645", "1444809643", "no");
INSERT INTO `wp_options` VALUES("34438", "_transient_wc_product_children_ids_7691436967645", "a:4:{i:0;i:770;i:1;i:771;i:2;i:772;i:3;i:773;}", "no");
INSERT INTO `wp_options` VALUES("34511", "_site_transient_timeout_browser_4d2515555181725e6b590e6969342377", "1442847320", "yes");
INSERT INTO `wp_options` VALUES("34512", "_site_transient_browser_4d2515555181725e6b590e6969342377", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:17:\"Internet Explorer\";s:7:\"version\";s:2:\"11\";s:10:\"update_url\";s:51:\"http://www.microsoft.com/windows/internet-explorer/\";s:7:\"img_src\";s:45:\"http://s.wordpress.org/images/browsers/ie.png\";s:11:\"img_src_ssl\";s:44:\"https://wordpress.org/images/browsers/ie.png\";s:15:\"current_version\";s:1:\"9\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("34661", "_transient_timeout_wc_product_children_ids_8721436967645", "1444846154", "no");
INSERT INTO `wp_options` VALUES("34662", "_transient_wc_product_children_ids_8721436967645", "a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}", "no");
INSERT INTO `wp_options` VALUES("34663", "_transient_timeout_wc_product_total_stock_8721436967645", "1444846154", "no");
INSERT INTO `wp_options` VALUES("34664", "_transient_wc_product_total_stock_8721436967645", "9", "no");
INSERT INTO `wp_options` VALUES("34665", "_transient_timeout_wc_review_count_8211436967645", "1444846662", "no");
INSERT INTO `wp_options` VALUES("34666", "_transient_wc_review_count_8211436967645", "0", "no");
INSERT INTO `wp_options` VALUES("34667", "_transient_timeout_wc_review_count_8121436967645", "1444846667", "no");
INSERT INTO `wp_options` VALUES("34668", "_transient_wc_review_count_8121436967645", "0", "no");
INSERT INTO `wp_options` VALUES("34671", "_transient_timeout_wc_review_count_8101436967645", "1444847001", "no");
INSERT INTO `wp_options` VALUES("34672", "_transient_wc_review_count_8101436967645", "0", "no");
INSERT INTO `wp_options` VALUES("34864", "_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.3.1.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.3.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.3.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.3.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.3.1\";s:7:\"version\";s:5:\"4.3.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1444116493;s:15:\"version_checked\";s:5:\"4.3.1\";s:12:\"translations\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("34872", "_transient_timeout_wc_uf_pid_2873ebce7b4d3a212fa2208e1d891bcb", "1444927351", "no");
INSERT INTO `wp_options` VALUES("34873", "_transient_wc_uf_pid_2873ebce7b4d3a212fa2208e1d891bcb", "a:6:{i:0;i:880;i:1;i:872;i:2;i:822;i:3;i:821;i:4;i:820;i:5;i:812;}", "no");
INSERT INTO `wp_options` VALUES("34933", "_transient_timeout_wc_uf_pid_4500e765113efebcf1e27bb5067b9370", "1444968010", "no");
INSERT INTO `wp_options` VALUES("34934", "_transient_wc_uf_pid_4500e765113efebcf1e27bb5067b9370", "a:4:{i:0;i:822;i:1;i:821;i:2;i:820;i:3;i:812;}", "no");
INSERT INTO `wp_options` VALUES("35105", "_transient_timeout_wc_uf_pid_f30f65f25dbb5c6dba60a58b4ea49206", "1445039264", "no");
INSERT INTO `wp_options` VALUES("35106", "_transient_wc_uf_pid_f30f65f25dbb5c6dba60a58b4ea49206", "a:8:{i:0;i:880;i:1;i:872;i:2;i:822;i:3;i:821;i:4;i:820;i:5;i:812;i:6;i:810;i:7;i:769;}", "no");
INSERT INTO `wp_options` VALUES("35128", "_transient_timeout_wc_review_count_7691436967645", "1445047572", "no");
INSERT INTO `wp_options` VALUES("35129", "_transient_wc_review_count_7691436967645", "0", "no");
INSERT INTO `wp_options` VALUES("35659", "_transient_timeout_wc_review_count_8721436967645", "1445299072", "no");
INSERT INTO `wp_options` VALUES("35660", "_transient_wc_review_count_8721436967645", "0", "no");
INSERT INTO `wp_options` VALUES("35943", "_site_transient_timeout_browser_41b1f5d96194b9595a33be3803159f08", "1443447033", "yes");
INSERT INTO `wp_options` VALUES("35944", "_site_transient_browser_41b1f5d96194b9595a33be3803159f08", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"45.0.2454.93\";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;}", "yes");
INSERT INTO `wp_options` VALUES("35949", "can_compress_scripts", "0", "yes");
INSERT INTO `wp_options` VALUES("36015", "_transient_timeout_wc_review_count_8201436967645", "1445447328", "no");
INSERT INTO `wp_options` VALUES("36016", "_transient_wc_review_count_8201436967645", "0", "no");
INSERT INTO `wp_options` VALUES("36050", "_transient_timeout_wc_review_count_8801436967645", "1445462656", "no");
INSERT INTO `wp_options` VALUES("36051", "_transient_wc_review_count_8801436967645", "0", "no");
INSERT INTO `wp_options` VALUES("36238", "_site_transient_timeout_browser_f59702c4fbbee437351074a3d3ee8b86", "1443553683", "yes");
INSERT INTO `wp_options` VALUES("36239", "_site_transient_browser_f59702c4fbbee437351074a3d3ee8b86", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"45.0.2454.93\";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;}", "yes");
INSERT INTO `wp_options` VALUES("36694", "_transient_timeout_wc_uf_pid_840a33e69fae694a00887ffeac837f5a", "1445720378", "no");
INSERT INTO `wp_options` VALUES("36695", "_transient_wc_uf_pid_840a33e69fae694a00887ffeac837f5a", "a:8:{i:0;i:880;i:1;i:872;i:2;i:822;i:3;i:821;i:4;i:820;i:5;i:812;i:6;i:810;i:7;i:769;}", "no");
INSERT INTO `wp_options` VALUES("36702", "_transient_timeout_wc_related_2_8121436967645", "1445724726", "no");
INSERT INTO `wp_options` VALUES("36703", "_transient_wc_related_2_8121436967645", "a:2:{i:0;s:3:\"820\";i:1;s:3:\"821\";}", "no");
INSERT INTO `wp_options` VALUES("36715", "_transient_timeout_wc_related_2_7691436967645", "1445730928", "no");
INSERT INTO `wp_options` VALUES("36716", "_transient_wc_related_2_7691436967645", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("36870", "_transient_timeout_wc_related_2_8721436967645", "1445794029", "no");
INSERT INTO `wp_options` VALUES("36871", "_transient_wc_related_2_8721436967645", "a:2:{i:0;s:3:\"812\";i:1;s:3:\"820\";}", "no");
INSERT INTO `wp_options` VALUES("37130", "_transient_timeout_wc_review_count_8221436967645", "1445913120", "no");
INSERT INTO `wp_options` VALUES("37131", "_transient_wc_review_count_8221436967645", "0", "no");
INSERT INTO `wp_options` VALUES("37132", "_transient_timeout_wc_related_2_8221436967645", "1445913120", "no");
INSERT INTO `wp_options` VALUES("37133", "_transient_wc_related_2_8221436967645", "a:2:{i:0;s:3:\"812\";i:1;s:3:\"820\";}", "no");
INSERT INTO `wp_options` VALUES("38622", "_transient_timeout_wc_related_2_8101436967645", "1445972783", "no");
INSERT INTO `wp_options` VALUES("38623", "_transient_wc_related_2_8101436967645", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("38698", "_transient_timeout_wc_related_2_8211436967645", "1446014070", "no");
INSERT INTO `wp_options` VALUES("38699", "_transient_wc_related_2_8211436967645", "a:2:{i:0;s:3:\"812\";i:1;s:3:\"820\";}", "no");
INSERT INTO `wp_options` VALUES("39016", "_transient_timeout_wc_uf_pid_d7bd10e258769d5af8ec7a71fc11ede4", "1446146119", "no");
INSERT INTO `wp_options` VALUES("39017", "_transient_wc_uf_pid_d7bd10e258769d5af8ec7a71fc11ede4", "a:1:{i:0;i:810;}", "no");
INSERT INTO `wp_options` VALUES("39215", "_transient_timeout_wc_uf_pid_47bb99fd428e290499385dfd8d685317", "1446213419", "no");
INSERT INTO `wp_options` VALUES("39216", "_transient_wc_uf_pid_47bb99fd428e290499385dfd8d685317", "a:1:{i:0;i:769;}", "no");
INSERT INTO `wp_options` VALUES("39259", "_transient_timeout_wc_uf_pid_0b18a5b1f6061c44c86a9030c716d464", "1446225728", "no");
INSERT INTO `wp_options` VALUES("39260", "_transient_wc_uf_pid_0b18a5b1f6061c44c86a9030c716d464", "a:1:{i:0;i:810;}", "no");
INSERT INTO `wp_options` VALUES("39322", "_transient_timeout_wc_uf_pid_dc59b5416d519128dca297cd03166015", "1446254523", "no");
INSERT INTO `wp_options` VALUES("39323", "_transient_wc_uf_pid_dc59b5416d519128dca297cd03166015", "a:4:{i:0;i:822;i:1;i:821;i:2;i:820;i:3;i:812;}", "no");
INSERT INTO `wp_options` VALUES("39324", "_transient_timeout_wc_uf_pid_7e442c50756bdac47ab57e1e303ede18", "1446254588", "no");
INSERT INTO `wp_options` VALUES("39325", "_transient_wc_uf_pid_7e442c50756bdac47ab57e1e303ede18", "a:4:{i:0;i:822;i:1;i:821;i:2;i:820;i:3;i:812;}", "no");
INSERT INTO `wp_options` VALUES("39379", "_transient_timeout_wc_uf_pid_ef85c58a0e35b5fdeec306a4a644af1b", "1446267618", "no");
INSERT INTO `wp_options` VALUES("39380", "_transient_wc_uf_pid_ef85c58a0e35b5fdeec306a4a644af1b", "a:4:{i:0;i:822;i:1;i:821;i:2;i:820;i:3;i:812;}", "no");
INSERT INTO `wp_options` VALUES("39381", "_transient_timeout_wc_related_2_8201436967645", "1446267762", "no");
INSERT INTO `wp_options` VALUES("39382", "_transient_wc_related_2_8201436967645", "a:2:{i:0;s:3:\"812\";i:1;s:3:\"821\";}", "no");
INSERT INTO `wp_options` VALUES("39383", "_transient_timeout_wc_related_2_8801436967645", "1446267848", "no");
INSERT INTO `wp_options` VALUES("39384", "_transient_wc_related_2_8801436967645", "a:2:{i:0;s:3:\"812\";i:1;s:3:\"820\";}", "no");
INSERT INTO `wp_options` VALUES("39385", "_transient_timeout_wc_uf_pid_9c51c036ab1dfa4a8a68d70d6241173a", "1446268022", "no");
INSERT INTO `wp_options` VALUES("39386", "_transient_wc_uf_pid_9c51c036ab1dfa4a8a68d70d6241173a", "a:1:{i:0;i:810;}", "no");
INSERT INTO `wp_options` VALUES("39946", "_transient_timeout_wc_term_counts", "1446453835", "no");
INSERT INTO `wp_options` VALUES("39947", "_transient_wc_term_counts", "a:4:{i:14;s:1:\"1\";i:17;s:1:\"1\";i:18;s:1:\"4\";i:19;s:1:\"6\";}", "no");
INSERT INTO `wp_options` VALUES("40145", "_transient_timeout_jetpack_site_is_vcs", "1444029847", "no");
INSERT INTO `wp_options` VALUES("40146", "_transient_jetpack_site_is_vcs", "0", "no");
INSERT INTO `wp_options` VALUES("40214", "_transient_timeout_wc_uf_pid_f447652e5ae17ed92967fc7f1d0d9753", "1446568235", "no");
INSERT INTO `wp_options` VALUES("40215", "_transient_wc_uf_pid_f447652e5ae17ed92967fc7f1d0d9753", "a:6:{i:0;i:880;i:1;i:872;i:2;i:822;i:3;i:821;i:4;i:820;i:5;i:812;}", "no");
INSERT INTO `wp_options` VALUES("40216", "_transient_timeout_wc_uf_pid_bf25af27ee13dc84d4016d7bc4c23144", "1446568254", "no");
INSERT INTO `wp_options` VALUES("40217", "_transient_wc_uf_pid_bf25af27ee13dc84d4016d7bc4c23144", "a:6:{i:0;i:880;i:1;i:872;i:2;i:822;i:3;i:821;i:4;i:820;i:5;i:812;}", "no");
INSERT INTO `wp_options` VALUES("40246", "_site_transient_timeout_browser_d345f0fc2588ba33770d312d084b0dfc", "1444585207", "yes");
INSERT INTO `wp_options` VALUES("40247", "_site_transient_browser_d345f0fc2588ba33770d312d084b0dfc", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"45.0.2454.101\";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;}", "yes");
INSERT INTO `wp_options` VALUES("40250", "_transient_timeout_wc_low_stock_count", "1446572407", "no");
INSERT INTO `wp_options` VALUES("40251", "_transient_wc_low_stock_count", "2", "no");
INSERT INTO `wp_options` VALUES("40252", "_transient_timeout_wc_outofstock_count", "1446572407", "no");
INSERT INTO `wp_options` VALUES("40253", "_transient_wc_outofstock_count", "0", "no");
INSERT INTO `wp_options` VALUES("40275", "_transient_timeout_wc_upgrade_notice_2.3.13", "1444066821", "no");
INSERT INTO `wp_options` VALUES("40276", "_transient_wc_upgrade_notice_2.3.13", "<div class=\"wc_plugin_upgrade_notice\">2.4.0 is a major update so it is important that you make backups, and ensure themes and extensions are 2.4 compatible. Developers should catch up with <a href=\"https://woocommerce.wordpress.com/\">the development blog</a> to see what has been happening in core.</div> ", "no");
INSERT INTO `wp_options` VALUES("40277", "_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a", "1443991241", "yes");
INSERT INTO `wp_options` VALUES("40278", "_site_transient_poptags_40cd750bba9870f18aada2478b24840a", "a:100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"5472\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3428\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3390\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"2884\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2640\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"2101\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"2061\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1937\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1892\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1872\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1855\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1826\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1730\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1534\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1449\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1411\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1248\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1230\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:4:\"1217\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1198\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:4:\"1091\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:4:\"1034\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"993\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"949\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"906\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"890\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"846\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"837\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:3:\"824\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"820\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"808\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"772\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"744\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"716\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"705\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"698\";}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";s:3:\"696\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"693\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"683\";}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"Share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";s:3:\"681\";}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";s:3:\"672\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"660\";}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";s:3:\"654\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"650\";}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";s:3:\"627\";}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";s:3:\"613\";}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"CSS\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";s:3:\"610\";}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";s:3:\"605\";}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";s:3:\"601\";}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";s:3:\"598\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"586\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"572\";}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";s:3:\"571\";}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";s:3:\"557\";}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";s:3:\"556\";}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";s:3:\"555\";}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";s:3:\"555\";}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";s:3:\"552\";}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";s:3:\"543\";}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";s:3:\"541\";}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";s:3:\"533\";}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";s:3:\"511\";}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";s:3:\"507\";}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";s:3:\"496\";}s:7:\"picture\";a:3:{s:4:\"name\";s:7:\"picture\";s:4:\"slug\";s:7:\"picture\";s:5:\"count\";s:3:\"495\";}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";s:3:\"495\";}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";s:3:\"489\";}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";s:3:\"486\";}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";s:3:\"475\";}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";s:3:\"471\";}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";s:3:\"460\";}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";s:3:\"457\";}s:8:\"pictures\";a:3:{s:4:\"name\";s:8:\"pictures\";s:4:\"slug\";s:8:\"pictures\";s:5:\"count\";s:3:\"448\";}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";s:3:\"433\";}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";s:3:\"431\";}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";s:3:\"430\";}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";s:3:\"422\";}s:5:\"flash\";a:3:{s:4:\"name\";s:5:\"flash\";s:4:\"slug\";s:5:\"flash\";s:5:\"count\";s:3:\"420\";}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";s:3:\"415\";}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";s:3:\"408\";}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";s:3:\"393\";}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";s:3:\"391\";}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";s:3:\"390\";}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"News\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";s:3:\"389\";}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";s:3:\"380\";}s:4:\"shop\";a:3:{s:4:\"name\";s:4:\"shop\";s:4:\"slug\";s:4:\"shop\";s:5:\"count\";s:3:\"380\";}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";s:3:\"376\";}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";s:3:\"374\";}s:4:\"text\";a:3:{s:4:\"name\";s:4:\"text\";s:4:\"slug\";s:4:\"text\";s:5:\"count\";s:3:\"373\";}s:9:\"thumbnail\";a:3:{s:4:\"name\";s:9:\"thumbnail\";s:4:\"slug\";s:9:\"thumbnail\";s:5:\"count\";s:3:\"372\";}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";s:3:\"368\";}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";s:3:\"367\";}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";s:3:\"366\";}s:9:\"automatic\";a:3:{s:4:\"name\";s:9:\"automatic\";s:4:\"slug\";s:9:\"automatic\";s:5:\"count\";s:3:\"366\";}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";s:3:\"364\";}s:6:\"upload\";a:3:{s:4:\"name\";s:6:\"upload\";s:4:\"slug\";s:6:\"upload\";s:5:\"count\";s:3:\"364\";}s:7:\"sharing\";a:3:{s:4:\"name\";s:7:\"sharing\";s:4:\"slug\";s:7:\"sharing\";s:5:\"count\";s:3:\"361\";}s:7:\"profile\";a:3:{s:4:\"name\";s:7:\"profile\";s:4:\"slug\";s:7:\"profile\";s:5:\"count\";s:3:\"357\";}s:14:\"administration\";a:3:{s:4:\"name\";s:14:\"administration\";s:4:\"slug\";s:14:\"administration\";s:5:\"count\";s:3:\"356\";}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";s:3:\"356\";}}", "yes");
INSERT INTO `wp_options` VALUES("40282", "duplicator_settings", "a:10:{s:7:\"version\";s:6:\"0.5.30\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:0;s:22:\"package_mysqldump_path\";s:0:\"\";s:24:\"package_phpdump_qrylimit\";s:3:\"100\";s:17:\"package_zip_flush\";b:0;s:20:\"storage_htaccess_off\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("40283", "duplicator_version_plugin", "0.5.30", "yes");
INSERT INTO `wp_options` VALUES("40291", "duplicator_ui_view_state", "a:2:{s:22:\"dup-pack-storage-panel\";s:1:\"1\";s:24:\"dup-pack-installer-panel\";s:1:\"1\";}", "yes");
INSERT INTO `wp_options` VALUES("40294", "woocommerce_calc_discounts_sequentially", "no", "no");
INSERT INTO `wp_options` VALUES("40297", "woocommerce_admin_notices", "a:1:{i:0;s:6:\"update\";}", "yes");
INSERT INTO `wp_options` VALUES("40298", "woocommerce_version", "2.4.7", "yes");
INSERT INTO `wp_options` VALUES("40300", "rewrite_rules", "a:194:{s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:25:\"index.php?xsl=$matches[1]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"sidebars/?$\";s:27:\"index.php?post_type=sidebar\";s:41:\"sidebars/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=sidebar&feed=$matches[1]\";s:36:\"sidebars/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=sidebar&feed=$matches[1]\";s:28:\"sidebars/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=sidebar&paged=$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:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";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:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";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: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:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:36:\"shop/.+?/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"shop/.+?/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"shop/.+?/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"shop/.+?/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"shop/.+?/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"shop/(.+?)/([^/]+)/trackback/?$\";s:58:\"index.php?product_cat=$matches[1]&product=$matches[2]&tb=1\";s:51:\"shop/(.+?)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:70:\"index.php?product_cat=$matches[1]&product=$matches[2]&feed=$matches[3]\";s:46:\"shop/(.+?)/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:70:\"index.php?product_cat=$matches[1]&product=$matches[2]&feed=$matches[3]\";s:39:\"shop/(.+?)/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?product_cat=$matches[1]&product=$matches[2]&paged=$matches[3]\";s:46:\"shop/(.+?)/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?product_cat=$matches[1]&product=$matches[2]&cpage=$matches[3]\";s:36:\"shop/(.+?)/([^/]+)/wc-api(/(.*))?/?$\";s:72:\"index.php?product_cat=$matches[1]&product=$matches[2]&wc-api=$matches[4]\";s:40:\"shop/.+?/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"shop/.+?/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:31:\"shop/(.+?)/([^/]+)(/[0-9]+)?/?$\";s:70:\"index.php?product_cat=$matches[1]&product=$matches[2]&page=$matches[3]\";s:25:\"shop/.+?/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"shop/.+?/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"shop/.+?/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"shop/.+?/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"shop/.+?/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"product_variation/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"product_variation/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"product_variation/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"product_variation/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"product_variation/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"product_variation/([^/]+)/trackback/?$\";s:44:\"index.php?product_variation=$matches[1]&tb=1\";s:46:\"product_variation/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?product_variation=$matches[1]&paged=$matches[2]\";s:53:\"product_variation/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?product_variation=$matches[1]&cpage=$matches[2]\";s:43:\"product_variation/([^/]+)/wc-api(/(.*))?/?$\";s:58:\"index.php?product_variation=$matches[1]&wc-api=$matches[3]\";s:49:\"product_variation/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:60:\"product_variation/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"product_variation/([^/]+)(/[0-9]+)?/?$\";s:56:\"index.php?product_variation=$matches[1]&page=$matches[2]\";s:34:\"product_variation/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"product_variation/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"product_variation/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"product_variation/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"product_variation/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"shop_order_refund/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"shop_order_refund/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"shop_order_refund/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"shop_order_refund/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"shop_order_refund/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"shop_order_refund/([^/]+)/trackback/?$\";s:44:\"index.php?shop_order_refund=$matches[1]&tb=1\";s:46:\"shop_order_refund/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?shop_order_refund=$matches[1]&paged=$matches[2]\";s:53:\"shop_order_refund/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?shop_order_refund=$matches[1]&cpage=$matches[2]\";s:43:\"shop_order_refund/([^/]+)/wc-api(/(.*))?/?$\";s:58:\"index.php?shop_order_refund=$matches[1]&wc-api=$matches[3]\";s:49:\"shop_order_refund/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:60:\"shop_order_refund/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"shop_order_refund/([^/]+)(/[0-9]+)?/?$\";s:56:\"index.php?shop_order_refund=$matches[1]&page=$matches[2]\";s:34:\"shop_order_refund/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"shop_order_refund/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"shop_order_refund/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"shop_order_refund/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"shop_order_refund/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"sidebars/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"sidebars/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"sidebars/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"sidebars/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"sidebars/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"sidebars/([^/]+)/trackback/?$\";s:34:\"index.php?sidebar=$matches[1]&tb=1\";s:49:\"sidebars/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?sidebar=$matches[1]&feed=$matches[2]\";s:44:\"sidebars/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?sidebar=$matches[1]&feed=$matches[2]\";s:37:\"sidebars/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?sidebar=$matches[1]&paged=$matches[2]\";s:44:\"sidebars/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?sidebar=$matches[1]&cpage=$matches[2]\";s:34:\"sidebars/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?sidebar=$matches[1]&wc-api=$matches[3]\";s:40:\"sidebars/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"sidebars/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:29:\"sidebars/([^/]+)(/[0-9]+)?/?$\";s:46:\"index.php?sidebar=$matches[1]&page=$matches[2]\";s:25:\"sidebars/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"sidebars/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"sidebars/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"sidebars/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"sidebars/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=765&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:20:\"order-pay(/(.*))?/?$\";s:32:\"index.php?&order-pay=$matches[2]\";s:25:\"order-received(/(.*))?/?$\";s:37:\"index.php?&order-received=$matches[2]\";s:21:\"view-order(/(.*))?/?$\";s:33:\"index.php?&view-order=$matches[2]\";s:23:\"edit-account(/(.*))?/?$\";s:35:\"index.php?&edit-account=$matches[2]\";s:23:\"edit-address(/(.*))?/?$\";s:35:\"index.php?&edit-address=$matches[2]\";s:24:\"lost-password(/(.*))?/?$\";s:36:\"index.php?&lost-password=$matches[2]\";s:26:\"customer-logout(/(.*))?/?$\";s:38:\"index.php?&customer-logout=$matches[2]\";s:29:\"add-payment-method(/(.*))?/?$\";s:41:\"index.php?&add-payment-method=$matches[2]\";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:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";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:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";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: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:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";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: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:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";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:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s: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:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$matches[3]\";s:31:\"[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:20:\"([^/]+)(/[0-9]+)?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";}", "yes");
INSERT INTO `wp_options` VALUES("40301", "_transient_wc_attribute_taxonomies", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("40304", "_transient_is_multi_author", "1", "yes");
INSERT INTO `wp_options` VALUES("40305", "_transient_timeout_wc_tax_rates_52255b69fc5b360b653081fa22b4218f", "1444585527", "no");
INSERT INTO `wp_options` VALUES("40306", "_transient_wc_tax_rates_52255b69fc5b360b653081fa22b4218f", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("40307", "_transient_timeout_wc_product_children_872", "1446637683", "no");
INSERT INTO `wp_options` VALUES("40308", "_transient_wc_product_children_872", "a:2:{s:7:\"visible\";a:2:{i:0;i:877;i:1;i:878;}s:3:\"all\";a:3:{i:0;i:877;i:1;i:878;i:2;i:879;}}", "no");
INSERT INTO `wp_options` VALUES("40309", "_transient_timeout_wc_var_prices26431ae4b580c555b0ba681436967645", "1446572727", "no");
INSERT INTO `wp_options` VALUES("40310", "_transient_wc_var_prices26431ae4b580c555b0ba681436967645", "a:3:{s:5:\"price\";a:2:{i:878;i:450;i:877;i:450;}s:13:\"regular_price\";a:2:{i:878;i:450;i:877;i:450;}s:10:\"sale_price\";a:2:{i:878;i:450;i:877;i:450;}}", "no");
INSERT INTO `wp_options` VALUES("40311", "_transient_timeout_wc_product_children_769", "1446657472", "no");
INSERT INTO `wp_options` VALUES("40312", "_transient_wc_product_children_769", "a:2:{s:7:\"visible\";a:4:{i:0;i:770;i:1;i:771;i:2;i:772;i:3;i:773;}s:3:\"all\";a:4:{i:0;i:770;i:1;i:771;i:2;i:772;i:3;i:773;}}", "no");
INSERT INTO `wp_options` VALUES("40313", "_transient_timeout_wc_var_prices8b8401713989b2cfd413ae1436967645", "1446572727", "no");
INSERT INTO `wp_options` VALUES("40314", "_transient_wc_var_prices8b8401713989b2cfd413ae1436967645", "a:3:{s:5:\"price\";a:4:{i:773;i:349;i:772;i:349;i:771;i:349;i:770;i:349;}s:13:\"regular_price\";a:4:{i:773;i:349;i:772;i:349;i:771;i:349;i:770;i:349;}s:10:\"sale_price\";a:4:{i:773;i:349;i:772;i:349;i:771;i:349;i:770;i:349;}}", "no");
INSERT INTO `wp_options` VALUES("40315", "_transient_timeout_wc_product_children_812", "1446573977", "no");
INSERT INTO `wp_options` VALUES("40316", "_transient_wc_product_children_812", "a:2:{s:7:\"visible\";a:2:{i:0;i:813;i:1;i:814;}s:3:\"all\";a:2:{i:0;i:813;i:1;i:814;}}", "no");
INSERT INTO `wp_options` VALUES("40317", "_transient_timeout_wc_var_prices028ae683bff667344f00621436967645", "1446572727", "no");
INSERT INTO `wp_options` VALUES("40318", "_transient_wc_var_prices028ae683bff667344f00621436967645", "a:3:{s:5:\"price\";a:2:{i:814;i:200;i:813;i:200;}s:13:\"regular_price\";a:2:{i:814;i:200;i:813;i:200;}s:10:\"sale_price\";a:2:{i:814;i:200;i:813;i:200;}}", "no");
INSERT INTO `wp_options` VALUES("40323", "_wc_session_1", "a:20:{s:4:\"cart\";s:348:\"a:1:{s:32:\"398e5476fb27f881e383514067fc1849\";a:9:{s:10:\"product_id\";i:769;s:12:\"variation_id\";i:770;s:9:\"variation\";a:1:{s:16:\"attribute_colour\";s:9:\"Turquoise\";}s:8:\"quantity\";i:1;s:10:\"line_total\";d:349;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:349;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:349;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:349;s:15:\"subtotal_ex_tax\";i:349;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("40324", "_wc_session_expires_1", "1444153484", "no");
INSERT INTO `wp_options` VALUES("40325", "_site_transient_update_plugins", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1444128105;s:8:\"response\";a:1:{s:47:\"woocommerce-gateway-payfast/gateway-payfast.php\";O:8:\"stdClass\":6:{s:2:\"id\";i:18596;s:4:\"slug\";s:47:\"woocommerce-gateway-payfast/gateway-payfast.php\";s:11:\"new_version\";s:5:\"1.2.9\";s:14:\"upgrade_notice\";s:67:\"Fix - Removes \"empty()\" call when outputting the description field.\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:15:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"46859\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:3:\"4.3\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.4.3.zip\";}s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"1283\";s:4:\"slug\";s:16:\"breadcrumb-navxt\";s:6:\"plugin\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:11:\"new_version\";s:5:\"5.2.2\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/breadcrumb-navxt/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.2.2.zip\";}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.3\";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.3.zip\";}s:45:\"custom-facebook-feed/custom-facebook-feed.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"41442\";s:4:\"slug\";s:20:\"custom-facebook-feed\";s:6:\"plugin\";s:45:\"custom-facebook-feed/custom-facebook-feed.php\";s:11:\"new_version\";s:5:\"2.3.7\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/custom-facebook-feed/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/custom-facebook-feed.2.3.7.zip\";}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"22600\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:6:\"0.5.30\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/duplicator.0.5.30.zip\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"20101\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:5:\"3.7.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.3.7.2.zip\";}s:39:\"siteorigin-panels/siteorigin-panels.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"40030\";s:4:\"slug\";s:17:\"siteorigin-panels\";s:6:\"plugin\";s:39:\"siteorigin-panels/siteorigin-panels.php\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/siteorigin-panels/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/siteorigin-panels.2.2.zip\";}s:33:\"posts-for-page/posts-for-page.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"30206\";s:4:\"slug\";s:14:\"posts-for-page\";s:6:\"plugin\";s:33:\"posts-for-page/posts-for-page.php\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/posts-for-page/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/posts-for-page.2.1.zip\";}s:43:\"visual-form-builder/visual-form-builder.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"23488\";s:4:\"slug\";s:19:\"visual-form-builder\";s:6:\"plugin\";s:43:\"visual-form-builder/visual-form-builder.php\";s:11:\"new_version\";s:5:\"2.8.6\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/visual-form-builder/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/visual-form-builder.2.8.6.zip\";s:14:\"upgrade_notice\";s:77:\"Update to allow translations to use the WP_LANG_DIR folder for language packs\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"25331\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"2.4.7\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.2.4.7.zip\";}s:27:\"woosidebars/woosidebars.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"30668\";s:4:\"slug\";s:11:\"woosidebars\";s:6:\"plugin\";s:27:\"woosidebars/woosidebars.php\";s:11:\"new_version\";s:5:\"1.4.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woosidebars/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woosidebars.1.4.3.zip\";s:14:\"upgrade_notice\";s:32:\"Bug fix and maintenance release.\";}s:31:\"wp-lightbox-2/wp-lightbox-2.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"27376\";s:4:\"slug\";s:13:\"wp-lightbox-2\";s:6:\"plugin\";s:31:\"wp-lightbox-2/wp-lightbox-2.php\";s:11:\"new_version\";s:5:\"3.0.5\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wp-lightbox-2/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/wp-lightbox-2.zip\";}s:29:\"wp-menu-cart/wp-menu-cart.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"40301\";s:4:\"slug\";s:12:\"wp-menu-cart\";s:6:\"plugin\";s:29:\"wp-menu-cart/wp-menu-cart.php\";s:11:\"new_version\";s:5:\"2.5.7\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-menu-cart/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-menu-cart.2.5.7.zip\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"5899\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:5:\"2.3.5\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.2.3.5.zip\";}s:39:\"woothemes-updater/woothemes-updater.php\";O:8:\"stdClass\":1:{s:9:\"no_update\";s:30:\"Already on the latest version.\";}}}", "yes");
INSERT INTO `wp_options` VALUES("40330", "ai1wm_secret_key", "DaXWpvdWg7Hc", "yes");
INSERT INTO `wp_options` VALUES("40336", "ai1wm_messages", "a:1:{s:17:\"SiteURLDepricated\";b:1;}", "yes");
INSERT INTO `wp_options` VALUES("40339", "_transient_timeout_wc_var_pricesbd27e2384fc97e5dae15701436967645", "1446573977", "no");
INSERT INTO `wp_options` VALUES("40340", "_transient_wc_var_pricesbd27e2384fc97e5dae15701436967645", "a:3:{s:5:\"price\";a:2:{i:814;s:3:\"200\";i:813;s:3:\"200\";}s:13:\"regular_price\";a:2:{i:814;s:3:\"200\";i:813;s:3:\"200\";}s:10:\"sale_price\";a:2:{i:814;s:3:\"200\";i:813;s:3:\"200\";}}", "no");
INSERT INTO `wp_options` VALUES("40341", "_transient_timeout_wc_related_4_8121436967645", "1446573977", "no");
INSERT INTO `wp_options` VALUES("40342", "_transient_wc_related_4_8121436967645", "a:4:{i:0;s:3:\"820\";i:1;s:3:\"821\";i:2;s:3:\"822\";i:3;s:3:\"872\";}", "no");
INSERT INTO `wp_options` VALUES("40343", "_transient_timeout_wc_product_children_822", "1446720315", "no");
INSERT INTO `wp_options` VALUES("40344", "_transient_wc_product_children_822", "a:2:{s:7:\"visible\";a:2:{i:0;i:823;i:1;i:824;}s:3:\"all\";a:4:{i:0;i:823;i:1;i:824;i:2;i:1263;i:3;i:1264;}}", "no");
INSERT INTO `wp_options` VALUES("40345", "_transient_timeout_wc_var_prices5047d68dcdce9dbe8e99211436967645", "1446573977", "no");
INSERT INTO `wp_options` VALUES("40346", "_transient_wc_var_prices5047d68dcdce9dbe8e99211436967645", "a:3:{s:5:\"price\";a:2:{i:824;s:3:\"200\";i:823;s:3:\"200\";}s:13:\"regular_price\";a:2:{i:824;s:3:\"200\";i:823;s:3:\"200\";}s:10:\"sale_price\";a:2:{i:824;s:3:\"200\";i:823;s:3:\"200\";}}", "no");
INSERT INTO `wp_options` VALUES("40347", "_transient_timeout_wc_var_prices4a17f3f52bf84f4b511e791436967645", "1446573977", "no");
INSERT INTO `wp_options` VALUES("40348", "_transient_wc_var_prices4a17f3f52bf84f4b511e791436967645", "a:3:{s:5:\"price\";a:2:{i:878;s:3:\"450\";i:877;s:3:\"450\";}s:13:\"regular_price\";a:2:{i:878;s:3:\"450\";i:877;s:3:\"450\";}s:10:\"sale_price\";a:2:{i:878;s:3:\"450\";i:877;s:3:\"450\";}}", "no");
INSERT INTO `wp_options` VALUES("40362", "_transient_timeout_wc_related_4_8211436967645", "1446578360", "no");
INSERT INTO `wp_options` VALUES("40363", "_transient_wc_related_4_8211436967645", "a:4:{i:0;s:3:\"812\";i:1;s:3:\"820\";i:2;s:3:\"822\";i:3;s:3:\"872\";}", "no");
INSERT INTO `wp_options` VALUES("40366", "_transient_timeout_wc_var_prices731a6c4ba899d9e2519fc11436967645", "1446578567", "no");
INSERT INTO `wp_options` VALUES("40367", "_transient_wc_var_prices731a6c4ba899d9e2519fc11436967645", "a:3:{s:5:\"price\";a:2:{i:824;i:200;i:823;i:200;}s:13:\"regular_price\";a:2:{i:824;i:200;i:823;i:200;}s:10:\"sale_price\";a:2:{i:824;i:200;i:823;i:200;}}", "no");
INSERT INTO `wp_options` VALUES("40376", "_transient_timeout_wc_related_4_8101436967645", "1446582212", "no");
INSERT INTO `wp_options` VALUES("40377", "_transient_wc_related_4_8101436967645", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("40380", "_transient_timeout_wc_var_pricesed0dcb6662ab63988a66081436967645", "1446582227", "no");
INSERT INTO `wp_options` VALUES("40381", "_transient_wc_var_pricesed0dcb6662ab63988a66081436967645", "a:3:{s:5:\"price\";a:4:{i:773;s:3:\"349\";i:772;s:3:\"349\";i:771;s:3:\"349\";i:770;s:3:\"349\";}s:13:\"regular_price\";a:4:{i:773;s:3:\"349\";i:772;s:3:\"349\";i:771;s:3:\"349\";i:770;s:3:\"349\";}s:10:\"sale_price\";a:4:{i:773;s:3:\"349\";i:772;s:3:\"349\";i:771;s:3:\"349\";i:770;s:3:\"349\";}}", "no");
INSERT INTO `wp_options` VALUES("40470", "_transient_all_the_cool_cats", "8", "yes");
INSERT INTO `wp_options` VALUES("40488", "_transient_timeout_wc_related_4_8801436967645", "1446634027", "no");
INSERT INTO `wp_options` VALUES("40489", "_transient_wc_related_4_8801436967645", "a:4:{i:0;s:3:\"812\";i:1;s:3:\"820\";i:2;s:3:\"821\";i:3;s:3:\"822\";}", "no");
INSERT INTO `wp_options` VALUES("40498", "_transient_timeout_wc_related_4_8721436967645", "1446637684", "no");
INSERT INTO `wp_options` VALUES("40499", "_transient_wc_related_4_8721436967645", "a:4:{i:0;s:3:\"812\";i:1;s:3:\"820\";i:2;s:3:\"821\";i:3;s:3:\"822\";}", "no");
INSERT INTO `wp_options` VALUES("40517", "_transient_timeout_jetpack_https_test", "1444141455", "no");
INSERT INTO `wp_options` VALUES("40518", "_transient_jetpack_https_test", "1", "no");
INSERT INTO `wp_options` VALUES("40540", "_transient_timeout_wpseo_sitemap_cache_product_1", "1444150128", "no");
INSERT INTO `wp_options` VALUES("40541", "_transient_wpseo_sitemap_cache_product_1", "<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n	<url>\n		<loc>http://chequerbox.co.za/shop/</loc>\n		<lastmod>2015-07-15T13:40:42+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.8</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/shop/baby-chair/snappi-baby-chair/</loc>\n		<lastmod>2015-03-25T18:02:20+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/02/Ewan-pictured-in-a-Bobbiyo.jpg</image:loc>\n			<image:caption><![CDATA[Snappi® Baby Chair]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/</loc>\n		<lastmod>2015-03-26T18:20:52+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/02/DSC_0646.jpg</image:loc>\n			<image:caption><![CDATA[Baby Medi Box]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/shop/bags-handbags/hold-all-bags/</loc>\n		<lastmod>2015-03-26T19:11:14+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/02/Hold-All-Bags.jpg</image:loc>\n			<image:caption><![CDATA[Hold All Bags]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/shop/bags-handbags/small-shopper-bag/</loc>\n		<lastmod>2015-03-26T19:16:38+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/02/Shopperbag11.jpg</image:loc>\n			<image:caption><![CDATA[Small Shopper Bag]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/shop/bags-handbags/weekender-bag/</loc>\n		<lastmod>2015-03-25T18:05:33+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2013/09/Jenam-Weekender-Bag.jpg</image:loc>\n			<image:caption><![CDATA[Weekender Bag]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/shop/bags-handbags/shopper-bag/</loc>\n		<lastmod>2015-07-15T13:40:42+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/02/Wedding-Kit_Hold-All-Bag_Navy.jpg</image:loc>\n			<image:caption><![CDATA[Shopper Bag]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit/</loc>\n		<lastmod>2015-03-27T13:38:55+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding-Day-Kits5.jpg</image:loc>\n			<image:caption><![CDATA[Wedding Day Kits]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit-2/</loc>\n		<lastmod>2015-03-27T13:37:40+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/weddingSurvivalkit.jpg</image:loc>\n			<image:caption><![CDATA[Wedding Day Survival Kit]]></image:caption>\n		</image:image>\n	</url>\n</urlset>", "no");
INSERT INTO `wp_options` VALUES("40546", "_transient_timeout_wc_related_4_7691436967645", "1446657472", "no");
INSERT INTO `wp_options` VALUES("40547", "_transient_wc_related_4_7691436967645", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("40601", "_transient_timeout_wpseo_sitemap_cache_post_1", "1444170905", "no");
INSERT INTO `wp_options` VALUES("40602", "_transient_wpseo_sitemap_cache_post_1", "<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n	<url>\n		<loc>http://chequerbox.co.za/our-blog/</loc>\n		<changefreq>daily</changefreq>\n		<priority>1</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/lots-of-fun-and-dress-up-at-ellas-ninth-birthday-party-with-chequerbox-photo-booths/</loc>\n		<lastmod>2013-07-08T10:21:01+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/simones-21st/</loc>\n		<lastmod>2013-08-06T17:54:11+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/wedding-bells/</loc>\n		<lastmod>2013-07-31T22:37:20+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/green-screen-photo-booth-with-dulux/</loc>\n		<lastmod>2013-08-06T18:20:50+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/bernices-lingerie-party/</loc>\n		<lastmod>2013-08-06T18:45:11+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/baby-medi-aid-at-the-baby-indaba-expo-30-aug-1-sep/</loc>\n		<lastmod>2013-08-23T10:13:28+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://www.chequerbox.co.za/wp-content/uploads/2013/08/Baby-Medi-Aid-Logo-300x142.jpg</image:loc>\n			<image:caption><![CDATA[medi kit for babies]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/snappis-bobbiyo-baby-chair-now-available-from-chequerbox/</loc>\n		<lastmod>2013-08-28T12:56:25+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://www.chequerbox.co.za/wp-content/uploads/2013/08/49.jpg</image:loc>\n			<image:caption><![CDATA[Babbiyo Baby Chair]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/bobbiyo-baby-chair-at-the-sabc-baby-indaba-expo-this-weekend/</loc>\n		<lastmod>2013-08-28T13:14:52+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://www.chequerbox.co.za/wp-content/uploads/2013/08/BOBBIYO-BABY-STEPS-MAY-2013-v3-2-1.jpg</image:loc>\n			<image:caption><![CDATA[Bobbiyo™ Baby Chair ]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/great-support-for-baby-medi-aid-at-the-baba-indaba-expo/</loc>\n		<lastmod>2013-09-03T15:00:11+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/photo-booth-fun-at-shannons-13th-b-day-with-g-c-dazzling-event-planners/</loc>\n		<lastmod>2013-09-18T14:59:35+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/18th-birthday-party-fun-with-chequerbox-photo-booth/</loc>\n		<lastmod>2013-10-01T16:26:06+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/altrisk-year-end-function/</loc>\n		<lastmod>2014-02-27T10:33:19+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/teenage-photo-booth-crazy/</loc>\n		<lastmod>2013-11-05T15:41:35+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/oosterland-reunie-chequerbox-photo-booth-hire/</loc>\n		<lastmod>2013-11-05T15:47:05+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/special-memories-at-an-8th-birthday-party-with-chequerbox-photo-booths/</loc>\n		<lastmod>2013-11-05T16:09:50+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/baby-medi-aid-your-baby-medical-kit-at-mamma-magic-the-baby-expo/</loc>\n		<lastmod>2013-11-06T06:00:43+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://www.chequerbox.co.za/wp-content/uploads/2013/11/mm-sticker-04-1024x360.jpg</image:loc>\n			<image:caption><![CDATA[Baby Medi Aid at Mamma Magic]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/jaynes-mad-hatter-birthday-party/</loc>\n		<lastmod>2014-02-27T13:39:19+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/aisj-homecoming/</loc>\n		<lastmod>2014-02-27T14:33:20+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/larochelles-21st/</loc>\n		<lastmod>2014-02-27T14:37:45+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/chilis-great-gatsby-blooming-good-events-fabulous-event/</loc>\n		<lastmod>2014-05-20T07:53:06+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/first-bar-mitzvah-blooming-marvellous-party/</loc>\n		<lastmod>2014-05-20T08:10:39+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/fabulous-girls-ammaarahs-chanel-inspired-birthday-party-stylish-affair/</loc>\n		<lastmod>2014-05-20T08:12:22+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/icas-super-wellness-day-11-aprill-2014/</loc>\n		<lastmod>2014-05-20T08:14:49+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/magumbi-marketing-durban-tourism-spot-popular-durban-attraction/</loc>\n		<lastmod>2014-05-20T08:18:33+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/kailas-13th-birthday-friendly-people/</loc>\n		<lastmod>2014-05-20T08:19:59+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/weve-changed-name-baby-medical-kit-baby-medi-box/</loc>\n		<lastmod>2014-05-21T08:47:45+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://www.chequerbox.co.za/wp-content/uploads/2014/05/BabyMediBoxAd-300x217.jpg</image:loc>\n			<image:caption><![CDATA[Baby Medi Box]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://www.chequerbox.co.za/wp-content/uploads/2014/05/TheBabyMediBox-300x131.png</image:loc>\n			<image:caption><![CDATA[Baby Medi Box]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/baby-medi-box-now-includes-medical-booklet/</loc>\n		<lastmod>2014-05-21T15:13:31+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://www.chequerbox.co.za/wp-content/uploads/2014/05/Image-of-Booklet-300x225.jpg</image:loc>\n			<image:caption><![CDATA[Image of Booklet]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/baby-medi-box-endorsed-ann-richardson/</loc>\n		<lastmod>2014-05-21T15:24:49+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://www.chequerbox.co.za/wp-content/uploads/2014/05/Toddler-sense-new-ed-jpeg_web-210x300.jpg</image:loc>\n			<image:caption><![CDATA[Toddler Sense]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://www.chequerbox.co.za/wp-content/uploads/2014/05/Baby-Sense-207x300.jpg</image:loc>\n			<image:caption><![CDATA[Baby Sense]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/nics-18th-beach-party/</loc>\n		<lastmod>2014-03-03T10:56:02+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/meggs-18th-birthday-party/</loc>\n		<lastmod>2014-03-03T12:45:07+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/wedding-fun-with-chequerbox-photo-booths/</loc>\n		<lastmod>2014-03-03T13:16:56+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/quality-sugars-year-end-party/</loc>\n		<lastmod>2014-03-03T13:22:25+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/get-snappi-baby-chair-chequerbox/</loc>\n		<lastmod>2014-05-26T08:37:13+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/lets-get-photo-booth-creative/</loc>\n		<lastmod>2015-03-06T12:24:47+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2014/05/IMG_0300-300x199.jpg</image:loc>\n			<image:caption><![CDATA[Let]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/let-take-selfie/</loc>\n		<lastmod>2015-03-06T12:24:28+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2014/05/IMG_0283-300x200.jpg</image:loc>\n			<image:caption><![CDATA[Let me take a selfie!]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/stop-photobombing/</loc>\n		<lastmod>2015-03-06T12:24:50+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2014/05/IMG_0194-300x200.jpg</image:loc>\n			<image:caption><![CDATA[Stop photobombing me!]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/guess-many-people-fit-photo-booths/</loc>\n		<lastmod>2014-05-27T10:11:12+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2014/05/IMG_0266-300x200.jpg</image:loc>\n			<image:caption><![CDATA[Guess how many people fit in our photo booths?]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://www.chequerbox.co.za/wp-content/uploads/2014/05/140426_193543-100x300.jpg</image:loc>\n			<image:caption><![CDATA[140426 193543]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://www.chequerbox.co.za/wp-content/uploads/2014/05/140430_213430-101x300.jpg</image:loc>\n			<image:caption><![CDATA[140430 213430]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/photo-booth-fun-applepi/</loc>\n		<lastmod>2015-03-06T12:26:23+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2014/06/IMG_0194-1024x682.jpg</image:loc>\n			<image:caption><![CDATA[Photo Booth fun at ApplePi]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://www.chequerbox.co.za/wp-content/uploads/2014/06/IMG_0194-1024x682.jpg</image:loc>\n			<image:caption><![CDATA[IMG 0194]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/baby-chair/</loc>\n		<lastmod>2015-03-26T18:58:30+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/TheBabyMediBox.jpg</image:loc>\n			<image:caption><![CDATA[Baby Medi Box]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/weddings/</loc>\n		<lastmod>2015-03-11T12:07:51+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding1.jpg</image:loc>\n			<image:caption><![CDATA[Weddings]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/photobooth/</loc>\n		<lastmod>2015-03-11T12:07:42+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/Photobooth1.jpg</image:loc>\n			<image:caption><![CDATA[Photobooth]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/vending-machines/</loc>\n		<lastmod>2015-03-11T12:07:23+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/Vending21.jpg</image:loc>\n			<image:caption><![CDATA[Vending Machines]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/baby/</loc>\n		<lastmod>2015-03-11T12:07:15+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/Baby1.jpg</image:loc>\n			<image:caption><![CDATA[Baby]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/vending-machines-2/</loc>\n		<lastmod>2015-03-26T18:58:01+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/VendingBox_436px-x-273px.png</image:loc>\n			<image:title><![CDATA[VendingBox_436px-x-273px]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/wedding-box/</loc>\n		<lastmod>2015-03-26T18:57:11+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/WeddingBox.jpg</image:loc>\n			<image:caption><![CDATA[Wedding Box]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/photo-booths/</loc>\n		<lastmod>2015-03-26T18:56:42+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/ThePhotoBox.jpg</image:loc>\n			<image:caption><![CDATA[Photo Booths]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen-300x195.jpg</image:loc>\n			<image:caption><![CDATA[GreenScreen]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth-300x195.jpg</image:loc>\n			<image:caption><![CDATA[traditional photo booth]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/1150/</loc>\n		<lastmod>2015-03-27T13:49:36+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/Comment_ReviewIcon2.png</image:loc>\n			<image:caption><![CDATA[Bernice Eden]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/1152/</loc>\n		<lastmod>2015-03-27T13:49:09+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/Comment_ReviewIcon.png</image:loc>\n			<image:caption><![CDATA[Nicol]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/1154/</loc>\n		<lastmod>2015-03-27T13:48:28+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/Comment_ReviewIcon3.png</image:loc>\n			<image:caption><![CDATA[Kerryn]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/1156/</loc>\n		<lastmod>2015-03-27T13:48:02+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/Comment_ReviewIcon2.png</image:loc>\n			<image:caption><![CDATA[Carmen]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/1158/</loc>\n		<lastmod>2015-03-27T13:47:41+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/03/Comment_ReviewIcon.png</image:loc>\n			<image:caption><![CDATA[Yolandi]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/photo-booths-at-weddings/</loc>\n		<lastmod>2015-06-08T20:16:46+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/06/150530_183743.jpg</image:loc>\n			<image:title><![CDATA[150530_183743]]></image:title>\n		</image:image>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/06/150606_204843.jpg</image:loc>\n			<image:title><![CDATA[150606_204843]]></image:title>\n		</image:image>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/06/IMG_0152.jpg</image:loc>\n			<image:title><![CDATA[IMG_0152]]></image:title>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/winter-wedding-photo-booth-special-with-the-photobox/</loc>\n		<lastmod>2015-06-10T16:17:54+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/06/Copy-of-1-69.jpg</image:loc>\n			<image:caption><![CDATA[Winter Wedding Photo Booth Specials with The PhotoBox]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://chequerbox.co.za/pretty-photobooth-strip/</loc>\n		<lastmod>2015-07-15T13:23:18+00:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://chequerbox.co.za/wp-content/uploads/2015/07/ReneMilaBirthday_Options-1024x724.jpg</image:loc>\n			<image:caption><![CDATA[photobooth strips]]></image:caption>\n		</image:image>\n	</url>\n</urlset>", "no");
INSERT INTO `wp_options` VALUES("40685", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1444116495;s:7:\"checked\";a:8:{s:15:\"accesspress-ray\";s:4:\"1.12\";s:7:\"mystile\";s:6:\"1.2.12\";s:11:\"new-mystile\";s:5:\"1.3.1\";s:12:\"twentyeleven\";s:3:\"1.8\";s:13:\"twentyfifteen\";s:3:\"1.3\";s:14:\"twentyfourteen\";s:3:\"1.5\";s:14:\"twentythirteen\";s:3:\"1.6\";s:12:\"twentytwelve\";s:3:\"1.6\";}s:8:\"response\";a:3:{s:15:\"accesspress-ray\";a:4:{s:5:\"theme\";s:15:\"accesspress-ray\";s:11:\"new_version\";s:6:\"1.16.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/accesspress-ray/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/theme/accesspress-ray.1.16.1.zip\";}s:12:\"twentyeleven\";a:4:{s:5:\"theme\";s:12:\"twentyeleven\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentyeleven/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentyeleven.2.2.zip\";}s:12:\"twentytwelve\";a:4:{s:5:\"theme\";s:12:\"twentytwelve\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwelve/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwelve.1.8.zip\";}}s:12:\"translations\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("40714", "_transient_timeout_jpp_headers_updated_recently", "1444209777", "no");
INSERT INTO `wp_options` VALUES("40715", "_transient_jpp_headers_updated_recently", "1", "no");
INSERT INTO `wp_options` VALUES("40716", "_transient_timeout_wpseo-dashboard-totals", "1444209779", "no");
INSERT INTO `wp_options` VALUES("40717", "_transient_wpseo-dashboard-totals", "a:1:{i:0;a:4:{i:1;a:4:{s:8:\"seo_rank\";s:2:\"ok\";s:5:\"title\";s:23:\"Posts with OK SEO score\";s:5:\"class\";s:15:\"wpseo-glance-ok\";s:5:\"count\";s:1:\"1\";}i:2;a:4:{s:8:\"seo_rank\";s:4:\"poor\";s:5:\"title\";s:25:\"Posts with poor SEO score\";s:5:\"class\";s:17:\"wpseo-glance-poor\";s:5:\"count\";s:2:\"11\";}i:3;a:4:{s:8:\"seo_rank\";s:3:\"bad\";s:5:\"title\";s:24:\"Posts with bad SEO score\";s:5:\"class\";s:16:\"wpseo-glance-bad\";s:5:\"count\";s:2:\"22\";}i:4;a:4:{s:8:\"seo_rank\";s:2:\"na\";s:5:\"title\";s:27:\"Posts without focus keyword\";s:5:\"class\";s:15:\"wpseo-glance-na\";s:5:\"count\";s:2:\"20\";}}}", "no");
INSERT INTO `wp_options` VALUES("40718", "_transient_timeout_wc_admin_report", "1444209779", "no");
INSERT INTO `wp_options` VALUES("40719", "_transient_wc_admin_report", "a:1:{s:32:\"d7167b3da108257e43eb4734d1879218\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("40720", "_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1444166586", "no");
INSERT INTO `wp_options` VALUES("40721", "_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	\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:3:{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:\"Thu, 17 Sep 2015 10:36: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: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.4-alpha-34842\";s: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:48:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.3.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:51:\"https://wordpress.org/news/2015/09/wordpress-4-3-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2015/09/wordpress-4-3-1/#respond\";s: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 Sep 2015 15:22: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: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.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3914\";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:439:\"WordPress 4.3.1 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. This release addresses three issues, including two cross-site scripting vulnerabilities and a potential privilege escalation. WordPress versions 4.3 and earlier are vulnerable to a cross-site scripting vulnerability when processing shortcode tags (CVE-2015-5714). Reported by [&#8230;]\";s: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:\"Samuel Sidler\";s: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:4022:\"<div class=\"storycontent\">\n<p>WordPress 4.3.1 is now available. This is a<strong> security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>This release addresses three issues, including two cross-site scripting vulnerabilities and a potential privilege escalation.</p>\n<ul>\n<li>WordPress versions 4.3 and earlier are vulnerable to a cross-site scripting vulnerability when processing shortcode tags (CVE-2015-5714). Reported by Shahar Tal and Netanel Rubin of <a href=\"http://checkpoint.com/\">Check Point</a>.</li>\n<li>A separate cross-site scripting vulnerability was found in the user list table. Reported by Ben Bidner of the WordPress security team.</li>\n<li>Finally, in certain cases, users without proper permissions could publish private posts and make them sticky (CVE-2015-5715). Reported by Shahar Tal and Netanel Rubin of <a href=\"http://checkpoint.com/\">Check Point</a>.</li>\n</ul>\n<p>Our thanks to those who have practiced <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.3.1 also fixes twenty-six bugs. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.3.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.3/?rev=34199&amp;stop_rev=33647\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.3.1</a> 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.3.1.</p>\n</div>\n<p>Thanks to everyone who contributed to 4.3.1:</p>\n<p><a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/extendwings\">Daisuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/DrewAPicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dustinbolton\">dustinbolton</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/hauvong\">hauvong</a>, <a href=\"https://profiles.wordpress.org/macmanx\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jobst\">jobst</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nikeo\">nikeo</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/figureone\">Paul Ryan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/otto42\">Samuel Wood</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/liljimmi\">Tracy Levesque</a>, <a href=\"https://profiles.wordpress.org/umeshnevase\">Umesh Nevase</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/welcher\">welcher</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a></p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/09/wordpress-4-3-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:45:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 4.3 “Billie”\";s: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:42:\"https://wordpress.org/news/2015/08/billie/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/news/2015/08/billie/#respond\";s: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, 18 Aug 2015 19:12: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:8:\"category\";a:2:{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:3:\"4.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3845\";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:352:\"Version 4.3 of WordPress, named &#8220;Billie&#8221; in honor of jazz singer Billie Holiday, is available for download or update in your WordPress dashboard. New features in 4.3 make it even easier to format your content and customize your site. Menus in the Customizer Create your menu, update it, and assign it, all while live-previewing in [&#8230;]\";s: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:22315:\"<p style=\"margin: 0;height: 0\"><img src=\"https://wordpress.org/news/files/2015/08/WordPress-4-3-billie-1024x574.png\" alt=\"WordPress 4.3 - &quot;Billie&quot;\" width=\"692\" height=\"388\" class=\"alignnone size-large wp-image-3896\" style=\"height:0px;width: 0px;margin: 0\" /></p>\n<p>Version 4.3 of WordPress, named &#8220;Billie&#8221; in honor of jazz singer <a href=\"https://en.wikipedia.org/wiki/Billie_Holiday\">Billie Holiday</a>, is available for <a href=\"https://wordpress.org/download/\">download</a> or update in your WordPress dashboard. New features in 4.3 make it even easier to format your content and customize your site.</p>\n<p><iframe width=\'692\' height=\'389\' src=\'https://videopress.com/embed/T54Iy7Tw?hd=1\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script></p>\n<hr />\n<h2>Menus in the Customizer</h2>\n<div><img src=\"//s.w.org/images/core/4.3/menu-customizer.png\" alt=\"\" /></div>\n<p>Create your menu, update it, and assign it, all while live-previewing in the customizer. The streamlined customizer design provides a mobile-friendly and accessible interface. With every release, it becomes easier and faster to make your site just the way you want it.</p>\n<hr />\n<h2>Formatting Shortcuts</h2>\n<div style=\"margin-bottom: 0\"><div style=\"width: 640px; \" class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class=\"wp-video-shortcode\" id=\"video-3845-1\" width=\"640\" height=\"360\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"//s.w.org/images/core/4.3/formatting.mp4?_=1\" /><source type=\"video/webm\" src=\"//s.w.org/images/core/4.3/formatting.webm?_=1\" /><source type=\"video/ogg\" src=\"//s.w.org/images/core/4.3/formatting.ogv?_=1\" /><a href=\"//s.w.org/images/core/4.3/formatting.mp4\">//s.w.org/images/core/4.3/formatting.mp4</a></video></div></div>\n<p>Your writing flow just got faster with new formatting shortcuts in WordPress 4.3. Use asterisks to create lists and number signs to make a heading. No more breaking your flow; your text looks great with a <code>*</code> and a <code>#</code>.</p>\n<hr />\n<h2>Site Icons</h2>\n<p><img src=\"//s.w.org/images/core/4.3/site-icon-customizer.png\" alt=\"\" /><br />\n&nbsp;<br />\nSite icons represent your site in browser tabs, bookmark menus, and on the home screen of mobile devices. Add your unique site icon in the customizer; it will even stay in place when you switch themes. Make your whole site reflect your brand.</p>\n<hr />\n<h2>Better Passwords</h2>\n<p><img src=\"//s.w.org/images/core/4.3/better-passwords.png\" alt=\"\" /><br />\n&nbsp;<br />\nKeep your site more secure with WordPress’ improved approach to passwords. Instead of receiving passwords via email, you’ll get a password reset link. When you add new users to your site or edit a user profile, WordPress will automatically generate a secure password.</p>\n<hr />\n<h2>Other improvements</h2>\n<ul>\n<li><strong>A smoother admin experience</strong> &#8211; Refinements to the list view across the admin make your WordPress more accessible and easier to work with on any device.</li>\n<li><strong>Comments turned off on pages</strong> &#8211; All new pages that you create will have comments turned off. Keep discussions to your blog, right where they’re supposed to happen.</li>\n<li><strong>Customize your site quickly</strong> &#8211; Wherever you are on the front-end, you can click the customize link in the toolbar to swiftly make changes to your site.</li>\n</ul>\n<hr />\n<h2>The Team</h2>\n<p><a class=\"alignleft\" href=\"https://profiles.wordpress.org/obenland\"><img src=\"https://www.gravatar.com/avatar/2370ea5912750f4cb0f3c51ae1cbca55?d=mm&amp;s=180&amp;r=G\" alt=\"Konstantin Obenland\" width=\"80\" height=\"80\" /></a>This release was led by <a href=\"http://konstantin.obenland.it/\">Konstantin Obenland</a>, with the help of these fine individuals. There are 246 contributors with props in this release. Pull up some Billie Holiday on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/mercime\">@mercime</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamkheckler\">Adam Heckler</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Bjorklund</a>, <a href=\"https://profiles.wordpress.org/akirk\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/deconf\">Alin Marcu</a>, <a href=\"https://profiles.wordpress.org/andfinally\">andfinally</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andg\">Andrea Gandino</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/antpb\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/anubisthejackle\">anubisthejackle</a>, <a href=\"https://profiles.wordpress.org/aramzs\">Aram Zucker-Scharff</a>, <a href=\"https://profiles.wordpress.org/arjunskumar\">Arjun S Kumar</a>, <a href=\"https://profiles.wordpress.org/avnarun\">avnarun</a>, <a href=\"https://profiles.wordpress.org/brad2dabone\">Bad Feather</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/binarykitten\">BinaryKitten</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornjohansen\">Bjorn Johansen</a>, <a href=\"https://profiles.wordpress.org/bolo1988\">bolo1988</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradt\">Brad Touesnard</a>, <a href=\"https://profiles.wordpress.org/bramd\">Bram Duvigneau</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/brianlayman\">Brian Layman</a>, <a href=\"https://profiles.wordpress.org/icaleb\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/calevans\">CalEvans</a>, <a href=\"https://profiles.wordpress.org/chasewiseman\">Chase Wiseman</a>, <a href=\"https://profiles.wordpress.org/chipbennett\">Chip Bennett</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/craig-ralston\">Craig Ralston</a>, <a href=\"https://profiles.wordpress.org/extendwings\">Daisuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/redsweater\">Daniel Jalkut (Red Sweater)</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Mte90 Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/daniluk4000\">daniluk4000</a>, <a href=\"https://profiles.wordpress.org/dmchale\">Dave McHale</a>, <a href=\"https://profiles.wordpress.org/daveal\">DaveAl</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/daxelrod\">daxelrod</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/realloc\">Dennis Ploetner</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipesh.kakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dustinbolton\">dustinbolton</a>, <a href=\"https://profiles.wordpress.org/kucrut\">Dzikri Aziz</a>, <a href=\"https://profiles.wordpress.org/eclev91\">eclev91</a>, <a href=\"https://profiles.wordpress.org/eligijus\">eligijus</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ebinnion\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/ericmann\">Eric Mann</a>, <a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/francoeurdavid\">francoeurdavid</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/gabrielperezs\">gabrielperezs</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/glennm\">glennm</a>, <a href=\"https://profiles.wordpress.org/gtuk\">gtuk</a>, <a href=\"https://profiles.wordpress.org/hailin\">hailin</a>, <a href=\"https://profiles.wordpress.org/hauvong\">hauvong</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrikakselsen\">henrikakselsen</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hrishiv90\">Hrishikesh Vaipurkar</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isaacchapman\">isaacchapman</a>, <a href=\"https://profiles.wordpress.org/izem\">izem</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jacklenox\">Jack Lenox</a>, <a href=\"https://profiles.wordpress.org/jadpm\">jadpm</a>, <a href=\"https://profiles.wordpress.org/macmanx\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jamesgol\">jamesgol</a>, <a href=\"https://profiles.wordpress.org/jancbeck\">jancbeck</a>, <a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jmichaelward\">Jeremy Ward</a>, <a href=\"https://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">jipmoors</a>, <a href=\"https://profiles.wordpress.org/eltobiano\">jjberry</a>, <a href=\"https://profiles.wordpress.org/jobst\">Jobst Schmalenbach</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/jkudish\">Joey Kudish</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/picard102\">John Leschinski</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/maxxsnake\">Josh Davis</a>, <a href=\"https://profiles.wordpress.org/jpyper\">Jpyper</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/juliobox\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/ungestaltbar\">Kai</a>, <a href=\"https://profiles.wordpress.org/karinchristen\">karinchristen</a>, <a href=\"https://profiles.wordpress.org/karpstrucking\">karpstrucking</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kevkoeh\">Kevin Koehler</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leogopal\">Leo Gopal</a>, <a href=\"https://profiles.wordpress.org/loushou\">loushou</a>, <a href=\"https://profiles.wordpress.org/lumaraf\">Lumaraf</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/nofearinc\">Mario Peshev</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius (Clorith)</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/marsjaninzmarsa\">marsjaninzmarsa</a>, <a href=\"https://profiles.wordpress.org/martinsachse\">martinsachse</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/nikonratm\">Michael</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michaelryanmcneill\">michaelryanmcneill</a>, <a href=\"https://profiles.wordpress.org/mcguive7\">Mickey Kay</a>, <a href=\"https://profiles.wordpress.org/mihai\">mihai</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mnelson4\">Mike Nelson</a>, <a href=\"https://profiles.wordpress.org/dh-shredder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinic</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mrutz\">mrutz</a>, <a href=\"https://profiles.wordpress.org/nabil_kadimi\">nabil_kadimi</a>, <a href=\"https://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nazmulhossainnihal\">Nazmul Hossain Nihal</a>, <a href=\"https://profiles.wordpress.org/nicholas_io\">nicholas_io</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nickmomrik\">Nick Momrik</a>, <a href=\"https://profiles.wordpress.org/nikeo\">nikeo</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/onnimonni\">Onni Hakala</a>, <a href=\"https://profiles.wordpress.org/ozh\">Ozh</a>, <a href=\"https://profiles.wordpress.org/pareshradadiya-1\">Paresh Radadiya</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/djpaul\">Paul Gibbs</a>, <a href=\"https://profiles.wordpress.org/figureone\">Paul Ryan</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/gungeekatx\">Pete Nelson</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/peterrknight\">PeterRKnight</a>, <a href=\"https://profiles.wordpress.org/philiparthurmoore\">Philip Arthur Moore</a>, <a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/posykrat\">posykrat</a>, <a href=\"https://profiles.wordpress.org/pragunbhutani\">pragunbhutani</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rarylson\">rarylson</a>, <a href=\"https://profiles.wordpress.org/lamosty\">Rastislav Lamos</a>, <a href=\"https://profiles.wordpress.org/rauchg\">rauchg</a>, <a href=\"https://profiles.wordpress.org/ravinderk\">Ravinder Kumar</a>, <a href=\"https://profiles.wordpress.org/rclations\">RC Lations</a>, <a href=\"https://profiles.wordpress.org/greuben\">Reuben Gunday</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/ritteshpatel\">Ritesh Patel</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/rdall\">Robert Dall</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/rhurling\">Rouven Hurling</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/rmarks\">Ryan Marks</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ohryan\">Ryan Neudorf</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sagarjadhav\">Sagar Jadhav</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/santagada\">santagada</a>, <a href=\"https://profiles.wordpress.org/sc0ttkclark\">Scott Kingsley Clark</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/scruffian\">scruffian</a>, <a href=\"https://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sebastiantiede\">Sebastian</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shooper\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/designsimply\">Sheri Bigelow</a>, <a href=\"https://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"https://profiles.wordpress.org/siobhan\">Siobhan</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/stephdau\">Stephane Daury (stephdau)</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevegrunwell\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stuartshields\">stuartshields</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar</a>, <a href=\"https://profiles.wordpress.org/sunnyratilal\">Sunny Ratilal</a>, <a href=\"https://profiles.wordpress.org/taka2\">taka2</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/thorbrink\">Thor Brink</a>, <a href=\"https://profiles.wordpress.org/creativeinfusion\">Tim Smith</a>, <a href=\"https://profiles.wordpress.org/tlexcellent\">tlexcellent</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tomasm\">Tomas Mackevicius</a>, <a href=\"https://profiles.wordpress.org/tomharrigan\">TomHarrigan</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/toru\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/liljimmi\">Tracy (LilJimmi) Levesque</a>, <a href=\"https://profiles.wordpress.org/tryon\">Tryon Eggleston</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/desaiuditd\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/umeshnevase\">Umesh Nevase</a>, <a href=\"https://profiles.wordpress.org/vivekbhusal\">vivekbhusal</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/willnorris\">Will Norris</a>, <a href=\"https://profiles.wordpress.org/willgladstone\">willgladstone</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/willstedt\">willstedt</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/ysalame\">Yuri Salame</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/katzwebdesign\">Zack Katz</a>, and <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>.\n<p>&nbsp;</p>\n<p>Special thanks go to <a href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a> for producing the release video, <a href=\"http://hugobaeta.com/\">Hugo Baeta</a> for the design, and <a href=\"http://jacklenox.com/\">Jack Lenox</a> for the voice-over.</p>\n<p>Finally, thanks to all of the contributors who provided subtitles for the release video, which at last count had been translated into 30 languages!</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.4!</p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/news/2015/08/billie/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:48:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.2.4 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/2015/08/wordpress-4-2-4-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wordpress.org/news/2015/08/wordpress-4-2-4-security-and-maintenance-release/#respond\";s: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, 04 Aug 2015 12:10:40 +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.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3827\";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:397:\"WordPress 4.2.4 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. This release addresses six issues, including three cross-site scripting vulnerabilities and a potential SQL injection that could be used to compromise a site, which were discovered by Marc-Alexandre Montpas of Sucuri, Helen Hou-Sandí [&#8230;]\";s: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:\"Samuel Sidler\";s: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:2011:\"<p>WordPress 4.2.4 is now available. This is a<strong> security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>This release addresses six issues, including three cross-site scripting vulnerabilities and a potential SQL injection that could be used to compromise a site, which were discovered by <a href=\"https://sucuri.net/\">Marc-Alexandre Montpas</a> of Sucuri, <a href=\"http://helenhousandi.com/\">Helen Hou-Sandí</a> of the WordPress security team, <a href=\"http://www.checkpoint.com/\">Netanel Rubin</a> of Check Point, and <a href=\"https://hackerone.com/reactors08\">Ivan Grigorov</a>. It also includes a fix for a potential timing side-channel attack, discovered by <a href=\"http://www.scrutinizer-ci.com/\">Johannes Schmitt</a> of Scrutinizer, and prevents an attacker from locking a post from being edited, discovered by <a href=\"https://www.linkedin.com/in/symbiansymoh\">Mohamed A. Baset</a>.</p>\n<p>Our thanks to those who have practiced <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.2.4 also fixes four bugs. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.2.4\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.2?rev=33573&amp;stop_rev=33396\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.2.4</a> 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.2.4.</p>\n<p><em>Already testing WordPress 4.3? The second release candidate is now available (<a href=\"https://wordpress.org/wordpress-4.3-RC2.zip\">zip</a>) and it contains these fixes. For more on 4.3, see <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-release-candidate/\">the RC 1 announcement post</a>.</em></p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wordpress.org/news/2015/08/wordpress-4-2-4-security-and-maintenance-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:48:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.3 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/2015/07/wordpress-4-3-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/news/2015/07/wordpress-4-3-release-candidate/#respond\";s: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 2015 23: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: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.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3817\";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:340:\"The release candidate for WordPress 4.3 is now available. We&#8217;ve made more than 100 changes since releasing Beta 4 a week ago. 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.3 on Tuesday, August 18, but we [&#8230;]\";s: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:19:\"Konstantin Obenland\";s: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:2256:\"<p>The release candidate for WordPress 4.3 is now available.</p>\n<p>We&#8217;ve made more than <a href=\"https://core.trac.wordpress.org/log/trunk?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=33512&amp;stop_rev=33372&amp;limit=120\">100 changes</a> since releasing Beta 4 a week ago. 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.3 on <strong>Tuesday, August 18</strong>, but we need your help to get there.</p>\n<p>If you haven’t tested 4.3 yet, now is the time!</p>\n<p><strong>Think you&#8217;ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you&#8217;ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>To test WordPress 4.3 RC1, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.3-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, check out the <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.3 and update your plugin&#8217;s <em>Tested up to</em> version in the readme to 4.3 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.</p>\n<p>Be sure to <a href=\"https://make.wordpress.org/core/\">follow along the core development blog</a>, where we&#8217;ll continue to post <a href=\"https://make.wordpress.org/core/tag/dev-notes+4-3/\">notes for developers</a> for 4.3.</p>\n<p><em>Drei Monate Arbeit</em><br />\n<em>Endlich das Ziel vor Augen</em><br />\n<em>Bald hab ich Urlaub!</em></p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2015/07/wordpress-4-3-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:48:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.2.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:51:\"https://wordpress.org/news/2015/07/wordpress-4-2-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2015/07/wordpress-4-2-3/#respond\";s: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, 23 Jul 2015 11:21: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:\"\";}}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.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3807\";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:380:\"WordPress 4.2.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.2.2 and earlier are affected by a cross-site scripting vulnerability, which could allow users with the Contributor or Author role to compromise a site. This was initially reported by Jon Cave and [&#8230;]\";s: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:\"Gary Pendergast\";s: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:2708:\"<p>WordPress 4.2.3 is now available. This is a<strong> security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.2.2 and earlier are affected by a cross-site scripting vulnerability, which could allow users with the Contributor or Author role to compromise a site. This was initially reported by <a href=\"https://profiles.wordpress.org/duck_\">Jon Cave</a> and fixed by <a href=\"http://www.miqrogroove.com/\">Robert Chapin</a>, both of the WordPress security team, and later reported by <a href=\"http://klikki.fi/\">Jouko Pynnönen</a>.</p>\n<p>We also fixed an issue where it was possible for a user with Subscriber permissions to create a draft through Quick Draft. Reported by Netanel Rubin from <a href=\"https://www.checkpoint.com/\">Check Point Software Technologies</a>.</p>\n<p>Our thanks to those who have practiced <a href=\"https://make.wordpress.org/core/handbook/reporting-security-vulnerabilities/\">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.2.3 also contains fixes for 20 bugs from 4.2. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.2.3\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.2?rev=33382&amp;stop_rev=32430\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.2.3</a> 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.2.3.</p>\n<p>Thanks to everyone who contributed to 4.2.3:</p>\n<p><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">Chris Christoff</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/gabrielperezs\">Gabriel Pérez</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Mike Adams</a>, <a href=\"https://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, and <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>.</p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/07/wordpress-4-2-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:48:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.3 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/2015/07/wordpress-4-3-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-4/#respond\";s: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, 22 Jul 2015 21:55: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: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.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3796\";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:337:\"WordPress 4.3 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.3, try the WordPress Beta Tester plugin (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can [&#8230;]\";s: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:19:\"Konstantin Obenland\";s: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:2212:\"<p>WordPress 4.3 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> 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.3, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"https://wordpress.org/wordpress-4.3-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, check out the <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/\">Beta 3</a> blog posts. Some of the changes in Beta 4 include:</p>\n<ul>\n<li><span class=\"s1\">Fixed several bugs and broken flows in the </span><span class=\"s1\"><strong>publish box </strong></span><span class=\"s1\">in the edit screen.</span></li>\n<li>Addressed a number of edge cases for word count in the <strong>editor</strong>.</li>\n<li><span class=\"s1\"><strong>Site icons</strong> </span><span class=\"s1\">can now be previewed within the customizer. The feature has been removed from general settings.</span></li>\n<li><strong>Various bug fixes</strong>. We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log/trunk?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=33369&amp;stop_rev=33289\">more than 60 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=4.3\">everything we’ve fixed</a>.</p>\n<p><em>Few Tickets Remain</em><br />\n<em>Edge Cases Disappearing</em><br />\n<em>You Must Test Today</em></p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-4/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:48:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.3 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/2015/07/wordpress-4-3-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/#respond\";s: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 Jul 2015 21:49: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: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.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3787\";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:337:\"WordPress 4.3 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.3, try the WordPress Beta Tester plugin (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can [&#8230;]\";s: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:19:\"Konstantin Obenland\";s: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:2529:\"<p>WordPress 4.3 Beta 3 is now available!</p>\n<p><strong>This software is still in development,</strong> 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.3, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"https://wordpress.org/wordpress-4.3-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, check out the <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/\">Beta 2</a> blog posts. Some of the changes in Beta 3 include:</p>\n<ul>\n<li>Performance improvements for <strong>Menus in the Customizer</strong>, as well as bug fixes and visual enhancements.</li>\n<li>Added <strong>Site Icon</strong> to the Customizer. The feature is now complete and requires lots of testing. Please help us ensure the site icon feature works well in both Settings and the Customizer.</li>\n<li>The improvements to <strong>Passwords</strong> have been added to the installation flow. When installing and setting up WordPress, a strong password will be suggested to site administrators. Please test and let us know if you encounter issues.</li>\n<li>Improved <strong>accessibility of comments and media list tables</strong>. If you use a screen reader, please let us know if you encounter any issues.</li>\n<li>Lots and lots of code documentation improvements.</li>\n<li><strong>Various other bug fixes</strong>. We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=33286&amp;stop_rev=33141&amp;limit=150\">more than 140 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=4.3\">everything we’ve fixed</a>.</p>\n<p><em>Want to test new things?</em><br />\n<em>Wonder how four three shapes up?</em><br />\n<em>Answer: beta three</em></p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:48:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.3 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/2015/07/wordpress-4-3-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/#respond\";s: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 Jul 2015 22:04:01 +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.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3769\";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:337:\"WordPress 4.3 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.3, try the WordPress Beta Tester plugin (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can [&#8230;]\";s: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:19:\"Konstantin Obenland\";s: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:2876:\"<p>WordPress 4.3 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> 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.3, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"https://wordpress.org/wordpress-4.3-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more information about what’s new in version 4.3, <a href=\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/\">check out the Beta 1 blog post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Fixed an issue in beta 1 where an alert appeared when saving or publishing a new post/page for the first time.</li>\n<li><strong><strong>Customizer</strong></strong> improvements including enhanced accessibility, smoother menu creation and location assignment, and the ability to handle nameless menus. Please help us test menus in the Customizer to fix any remaining edge cases!</li>\n<li>More robust<strong> list tables</strong> with full content support on small screens and a fallback for the primary column for custom list tables. We&#8217;d love to know how these list tables, such as All Posts and Comments, work for you now on small screen devices.</li>\n<li>The <strong>Site Icon</strong> feature has been improved so that cropping is skipped if the image is the exact size (512px square) and the media modal now suggests a minimum icon size. Please let us know how the flow feels and if you encounter any glitches!</li>\n<li>The <strong>toolbar</strong> now has a direct link to the customizer, along with quick access to themes, widgets, and menus in the dashboard.</li>\n<li>We enabled <strong>utf8mb4 for MySQL</strong> extension users, which was previously unintentionally limited to MySQLi users. Please let us know if you run into any issues.</li>\n<li><strong>Various bug fixes</strong>. We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=33138&amp;stop_rev=33046\">almost 100 changes</a> in the last week.</li>\n</ul>\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=4.3&amp;group=component&amp;order=priority\">everything we’ve fixed</a>.</p>\n<p><em>Edges polished up</em><br />\n<em>Features meliorated</em><br />\n<em>Beta Two: go test!</em></p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:48:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordCamps Update\";s: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/news/2015/07/wordcamps-update/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2015/07/wordcamps-update/#respond\";s: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 Jul 2015 16:13: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";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:6:\"Events\";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: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:33:\"http://wordpress.org/news/?p=3758\";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:311:\"Last week saw the halfway point for 2015, yay! This seems like a good time to update you on WordCamp happenings in the first half of this year. There have been 39 WordCamps in 2015 so far, with events organized in 17 different countries and on 5 continents. More than 14,000 people have registered for [&#8230;]\";s: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:\"Andrea Middleton\";s: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:9419:\"<p>Last week saw the halfway point for 2015, yay! This seems like a good time to update you on WordCamp happenings in the first half of this year.</p>\n<p>There have been <a href=\"https://central.wordcamp.org/schedule/past-wordcamps/\">39 WordCamps in 2015</a> so far, with events organized in 17 different countries and on 5 continents. More than 14,000 people have registered for WordCamp tickets so far this year, isn&#8217;t that amazing?</p>\n<p><a href=\"https://europe.wordcamp.org/2015/\">WordCamp Europe</a> was held in Seville, Spain just a few weeks ago, with close to 1,000 registered participants and over 500 live stream participants. You can watch  <a href=\"http://wordpress.tv/2015/07/04/matt-mullenweg-keynote-qanda-wordcamp-europe-2015/\">Matt Mullenweg’s keynote Q&amp;A</a> session from WordCamp Europe right now on WordPress.tv.</p>\n<p>WordPress.tv has published 537 videos so far in 2015 from WordCamps around the world. Some of the more popular 2015 WordCamp talks on WordPress.tv include <a href=\"http://wordpress.tv/2015/03/13/tammie-lister-theme-dont-be-my-everything/\">Tammie Lister: Theme, Don’t Be My Everything </a>from WordCamp Maui, <a href=\"http://wordpress.tv/2015/04/17/jenny-munn-seo-for-2015-whats-in-whats-out-and-how-to-be-in-it-to-win-it-for-good/\">Jenny Munn: SEO for 2015 – What’s In, What’s Out and How to Be In It to Win It (For Good)</a> from WordCamp Atlanta, <a href=\"http://wordpress.tv/2015/02/27/fabrice-ducarme-les-constructeurs-de-page-pour-wordpress/\">Fabrice Ducarme: Les Constructeurs de Page pour WordPress</a> from WordCamp Paris, <a href=\"http://wordpress.tv/2015/06/02/ben-furfie-how-to-value-price-websites/\">Ben Furfie: How to Value Price Websites</a> from WordCamp London, and <a href=\"http://wordpress.tv/2015/06/09/morten-rand-hendriksen-building-themes-from-scratch-using-underscores-_s/\">Morten Rand-Hendriksen: Building Themes From Scratch Using Underscores (_S)</a> from WordCamp Seattle. Check them out!</p>\n<h3>Lots of great WordCamps are still to come</h3>\n<p><a href=\"http://ma.tt/2015/06/wordcamp-us-survey/\">WordCamp US</a> is currently in pre-planning, in the process of deciding on a host city. The following cities have proposed themselves as a great place to host the first WordCamp US: Chattanooga, Chicago, Detroit, Orlando, Philadelphia, and Phoenix. It&#8217;s possible the first WordCamp US will be held in 2016 so we can organize the best first WordCamp US imaginable.</p>\n<p>At this time, there are 28 <a href=\"https://central.wordcamp.org/schedule/\">WordCamps</a>, in 9 different countries, that have announced their dates for the rest of 2015. Twelve of these have tickets on sale:</p>\n<ul>\n<li><a href=\"https://columbus.wordcamp.org/2015/\">WordCamp Columbus</a>, Columbus, Ohio: July 17-18</li>\n<li><a href=\"https://scranton.wordcamp.org/2015/\">WordCamp Scranton</a>, Scranton, Pennsylvania: July 18</li>\n<li><a href=\"https://boston.wordcamp.org/2015/\">WordCamp Boston</a>, Boston, Massachussetts: July 18-19</li>\n<li><a href=\"https://milwaukee.wordcamp.org/2015/\">WordCamp Milwaukee</a>, Milwaukee, Wisconsin: July 24-26</li>\n<li><a href=\"https://asheville.wordcamp.org/2015/\">WordCamp Asheville</a>, Asheville, North Carolina: July 24-26</li>\n<li><a href=\"https://kansai.wordcamp.org/2015/\">WordCamp Kansai</a>, Kansai, Japan: July 25-26</li>\n<li><a href=\"https://fayetteville.wordcamp.org/2015/\">WordCamp Fayetteville</a>, Fayetteville, Arkansas: July 31-August 2</li>\n<li><a href=\"https://brighton.buddycamp.org/2015/\">BuddyCamp Brighton</a>,  Brighton, UK: August 8</li>\n<li><a href=\"https://vancouver.wordcamp.org/2015/\">WordCamp Vancouver, BC,</a> Vancouver, BC, Canada: August 15-16</li>\n<li><a href=\"https://russia.wordcamp.org/2015/\">WordCamp Russia</a>, Moscow, Russia: August 15</li>\n<li><a href=\"https://norrkoping.wordcamp.org/2015/\">WordCamp Norrköping</a>, Norrköping, Sweden: August 28-29</li>\n<li><a href=\"https://croatia.wordcamp.org/2015/\">WordCamp Croatia</a>, Rijeka, Croatia: September 5-6</li>\n<li><a href=\"https://krakow.wordcamp.org/2015/\">WordCamp Krakow,</a>  Krakow, Poland: September 12-13</li>\n<li><a href=\"https://nyc.wordcamp.org/2015/\">WordCamp NYC</a>, New York City, New York: October 30-November 1</li>\n</ul>\n<p>The other 16 events don’t have tickets on sale yet, but they’ve set their dates! Subscribe to the sites to find out when registration opens:</p>\n<ul>\n<li><a href=\"https://pune.wordcamp.org/2015/\">WordCamp Pune</a>, Pune, India: September 6</li>\n<li><a href=\"https://capetown.wordcamp.org/2015/\">WordCamp Cape Town</a>, Cape Town, South Africa: September 10-11</li>\n<li><a href=\"https://baltimore.wordcamp.org/2015/\">WordCamp Baltimore</a>, Baltimore, Maryland: September 12</li>\n<li><a href=\"https://slc.wordcamp.org/2015/\">WordCamp Salt Lake City</a>, Salt Lake City, Utah: September 12</li>\n<li><a href=\"https://lithuania.wordcamp.org/2015/\">WordCamp Lithuania</a>, Vilnius, Lithuania: September 19</li>\n<li><a href=\"https://vegas.wordcamp.org/2015\">WordCamp Vegas</a>, Las Vegas, Nevada: September 19-20</li>\n<li><a href=\"https://switzerland.wordcamp.org/2015/\">WordCamp Switzerland</a>, Zurich, Switzerland: September 19-20</li>\n<li><a href=\"https://tampa.wordcamp.org/2015/\">WordCamp Tampa</a>, Tampa, Florida: September 25-27</li>\n<li><a href=\"https://rhodeisland.wordcamp.org/2015/\">WordCamp Rhode Island</a>,  Providence, Rhode Island: September 25-26</li>\n<li><a href=\"https://la.wordcamp.org/2015/\">WordCamp Los Angeles</a>, Los Angeles, California: September 26-27</li>\n<li><a href=\"https://denmark.wordcamp.org/2015/\">WordCamp Denmark,</a>  Copenhagen, Denmark: October 3-4</li>\n<li><a href=\"https://toronto.wordcamp.org/2015\">WordCamp Toronto</a>, Toronto, Ontario, Canada: October 3-4</li>\n<li><a href=\"https://hamptonroads.wordcamp.org/2015/\">WordCamp Hampton Roads, </a>  Virginia Beach, VA, USA: October 17</li>\n<li><a href=\"https://annarbor.wordcamp.org/2015\">WordCamp Ann Arbor</a>, Ann Arbor, Michigan: October 24</li>\n<li><a href=\"https://portland.wordcamp.org/2015/\">WordCamp Portland</a>,  Portland, OR: October 24-25</li>\n</ul>\n<p>On top of all those exciting community events, there are 26 WordCamps in pre-planning as they look for the right event space.  If you have a great idea for a free or cheap WordCamp venue in any of the below locations, get in touch with the organizers through the WordCamp sites:</p>\n<ul>\n<li><a href=\"https://dfw.wordcamp.org/2015/\">WordCamp DFW</a>:  Dallas/Fort Worth, Texas</li>\n<li><a href=\"https://riodejaneiro.wordcamp.org/2015/\">WordCamp Rio</a>: Rio de Janeiro, Brazil</li>\n<li><a href=\"https://saratoga.wordcamp.org/2015/\">WordCamp Saratoga</a>:  Saratoga Springs, New York</li>\n<li><a href=\"https://sofia.wordcamp.org/2015\">WordCamp Sofia</a>:  Sofia, Bulgaria</li>\n<li><a href=\"https://austin.wordcamp.org/2015/\">WordCamp Austin</a>:  Austin, TX</li>\n<li><a href=\"https://ottawa.wordcamp.org/2015/\">WordCamp Ottawa</a>:  Ottawa, Canada</li>\n<li><a href=\"https://charleston.wordcamp.org/2015/\">WordCamp Charleston</a>:  Charleston, South Carolina</li>\n<li><a href=\"https://chicago.wordcamp.org/2015/\">WordCamp Chicago</a>:  Chicago, Illinois</li>\n<li><a href=\"https://albuquerque.wordcamp.org/2015/\">WordCamp Albuquerque</a>:  Albuquerque, New Mexico</li>\n<li><a href=\"https://prague.wordcamp.org/2015/\">WordCamp Prague</a>:  Prague, Czech Republic</li>\n<li><a href=\"https://seoul.wordcamp.org/2014/\">WordCamp Seoul: </a>Seoul, South Korea</li>\n<li><a href=\"https://louisville.wordcamp.org/2014/\">WordCamp Louisville</a>: Louisville, Kentucky</li>\n<li><a href=\"https://omaha.wordcamp.org/2015/\">WordCamp Omaha</a>:  Omaha, Nebraska</li>\n<li><a href=\"https://grandrapids.wordcamp.org/2015/\">WordCamp Grand Rapids</a>:  Grand Rapids, Michigan</li>\n<li><a href=\"https://easttroy.wordcamp.org/2015/\">WordCamp East Troy</a>:  East Troy, Wisconsin</li>\n<li><a href=\"https://palmademallorca.wordcamp.org/2015\">WordCamp Mallorca</a>: Palma de Mallorca, Spain</li>\n<li><a href=\"https://edinburgh.wordcamp.org/2015/\">WordCamp Edinburgh</a>:  Edinburgh, United Kingdom</li>\n<li><a href=\"https://orlando.wordcamp.org/2015/\">WordCamp Orlando</a>:  Orlando, Florida</li>\n<li><a href=\"https://mexico.wordcamp.org/2015/\">WordCamp Mexico City</a>:  Mexico City, Mexico</li>\n<li><a href=\"https://netherlands.wordcamp.org/2015/\">WordCamp Netherlands</a>:  Utrecht, Netherlands</li>\n<li><a href=\"https://phoenix.wordcamp.org/2016/\">WordCamp Phoenix</a>:  Phoenix, Arizona</li>\n<li><a href=\"https://saopaulo.wordcamp.org/2015/\">WordCamp São Paulo</a>:  São Paulo, Brazil</li>\n<li><a href=\"https://manchester.wordcamp.org/2015/\">WordCamp Manchester</a>:  Manchester, United Kingdom</li>\n<li><a href=\"https://tokyo.wordcamp.org/2015/\">WordCamp Tokyo</a>:  Tokyo, Japan</li>\n<li><a href=\"https://lima.wordcamp.org/2015/\">WordCamp Lima</a>:  Lima, Peru</li>\n<li><a href=\"https://seattle.wordcamp.org/2015-beginner/\">WordCamp Seattle: Beginner</a>: Seattle, WA</li>\n</ul>\n<p>Don’t see your city on the list, but yearning for a local WordCamp? WordCamps are organized by local volunteers from the WordPress community, and we have a whole team of people to support new organizers setting up a first-time WordCamp. If you want to bring WordCamp to town, check out how you can <a href=\"https://central.wordcamp.org/become-an-organizer/\">become a WordCamp organizer</a>!</p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/news/2015/07/wordcamps-update/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:48:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.3 Beta 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/#respond\";s: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 Jul 2015 01:30: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: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.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3738\";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.3 Beta 1 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.3, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s: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:19:\"Konstantin Obenland\";s: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:4352:\"<p>WordPress 4.3 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> 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.3, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.3-beta1.zip\">download the beta here</a> (zip).</p>\n<p>4.3 is due out next month, but to get there, we need your help testing what we&#8217;ve been working on:</p>\n<ul>\n<li><strong>Menus</strong> can now be managed with the <strong>Customizer</strong>, which allows you to live preview changes you’re making without changing your site for visitors until you’re ready. We&#8217;re especially interested to know if this helps streamline the process of setting up your site (<a href=\"https://core.trac.wordpress.org/ticket/32576\">#32576</a>).</li>\n<li>Take control of another piece of your site with the <strong>Site Icon</strong> feature. You can now manage your site’s favicon and app icon from the admin area (<a href=\"https://core.trac.wordpress.org/ticket/16434\">#16434</a>).</li>\n<li>We put a lot of work into <strong>Better Passwords</strong> throughout WordPress. Now, WordPress will limit the life time of password resets, no longer send passwords via email, and generate and suggest secure passwords for you. Try it out and let us know what you think! (<a href=\"https://core.trac.wordpress.org/ticket/32589\">#32589</a>)</li>\n<li>We’ve also added <strong>Editor Improvements</strong>. Certain text patterns are automatically transformed as you type, including <code>*</code> and <code>-</code> transforming into unordered lists, <code>1.</code> and <code>1)</code> for ordered lists, <code>&gt;</code> for blockquotes and two to six number signs (<code>#</code>) for headings (<a href=\"https://core.trac.wordpress.org/ticket/31441\">#31441</a>).</li>\n<li>We’ve improved the <strong>list view</strong> across the admin dashboard. Now, when you view your posts and pages <strong>on small screen devices</strong>, columns are not truncated and can be toggled into view (<a href=\"https://core.trac.wordpress.org/ticket/32395\">#32395</a>).</li>\n</ul>\n<p><strong>Developers</strong>: There have been a few of changes for you to test as well, including:</p>\n<ul>\n<li><strong>Taxonomy Roadmap:</strong> Terms shared across multiple taxonomies will <a href=\"https://make.wordpress.org/core/2015/06/09/eliminating-shared-taxonomy-terms-in-wordpress-4-3/\">now be split</a> into separate terms on update to 4.3. Please let us know if you hit any snags (<a href=\"https://core.trac.wordpress.org/ticket/30261\">#30261</a>).</li>\n<li>Added <code>singular.php</code> to the template hierarchy as a fallback for <code>single.php</code> and <code>page.php</code>. (<a href=\"https://core.trac.wordpress.org/ticket/22314\">#22314</a>).</li>\n<li>The old Distraction Free Writing code was removed (<a href=\"https://core.trac.wordpress.org/ticket/30949\">#30949</a>).</li>\n<li>List tables now can (and often should) have a primary column defined. We’re working on a fallback for existing custom list tables but right now they likely have some breakage in the aforementioned responsive view (<a href=\"https://core.trac.wordpress.org/ticket/25408\">#25408</a>).</li>\n</ul>\n<p>If you want a more in-depth view of what changes have made it into 4.3, <a href=\"https://make.wordpress.org/core/tag/4-3/\">check out all 4.3-tagged posts</a> on the main development blog.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=4.3\">everything we’ve fixed</a> so far.</p>\n<p>Happy testing!</p>\n<p><em>Site icons for all</em><br />\n<em>Live preview menu changes</em><br />\n<em>Four three beta now</em></p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/news/2015/07/wordpress-4-3-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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: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:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 06 Oct 2015 09:23:06 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:13:\"last-modified\";s:29:\"Thu, 17 Sep 2015 10:36:36 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130911020210\";}", "no");
INSERT INTO `wp_options` VALUES("40722", "_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1444166586", "no");
INSERT INTO `wp_options` VALUES("40723", "_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1444123386", "no");
INSERT INTO `wp_options` VALUES("40728", "_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9", "1444166590", "no");
INSERT INTO `wp_options` VALUES("40729", "_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1444166590", "no");
INSERT INTO `wp_options` VALUES("40730", "_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1444123390", "no");
INSERT INTO `wp_options` VALUES("40731", "_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109", "1444166592", "no");
INSERT INTO `wp_options` VALUES("40732", "_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	\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		\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: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, 06 Oct 2015 08:54:39 +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			\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: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:1;a:6:{s:4:\"data\";s:30:\"\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: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:2;a:6:{s:4:\"data\";s:30:\"\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: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:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network 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:3;a:6:{s:4:\"data\";s:30:\"\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: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:4;a:6:{s:4:\"data\";s:30:\"\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: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:5;a:6:{s:4:\"data\";s:30:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WooCommerce - excelling eCommerce\";s: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:6;a:6:{s:4:\"data\";s:30:\"\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: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:7;a:6:{s:4:\"data\";s:30:\"\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: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:71:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG 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:8;a:6:{s:4:\"data\";s:30:\"\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: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:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s: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:9;a:6:{s:4:\"data\";s:30:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s: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:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 13 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:10;a:6:{s:4:\"data\";s:30:\"\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: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:126:\"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.\";s: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:11;a:6:{s:4:\"data\";s:30:\"\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: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:12;a:6:{s:4:\"data\";s:30:\"\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: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:13;a:6:{s:4:\"data\";s:30:\"\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: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:14;a:6:{s:4:\"data\";s:30:\"\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: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:15;a:6:{s:4:\"data\";s:30:\"\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: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:138:\"The Wordfence WordPress security plugin provides free enterprise-class WordPress security, protecting your website from hacks and malware.\";s: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:16;a:6:{s:4:\"data\";s:30:\"\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: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:28:\"Your WordPress, Streamlined.\";s: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:\"Tim Moore\";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			\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Google Analytics by Yoast\";s: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:124:\"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error 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: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:18;a:6:{s:4:\"data\";s:30:\"\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: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:114:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using 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:19;a:6:{s:4:\"data\";s:30:\"\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: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:20;a:6:{s:4:\"data\";s:30:\"\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: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:134:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.\";s: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:21;a:6:{s:4:\"data\";s:30:\"\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: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:22;a:6:{s:4:\"data\";s:30:\"\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: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:23;a:6:{s:4:\"data\";s:30:\"\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: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:150:\"Protect your WordPress site by hiding vital areas of your site, protecting access to important files, preventing brute-force login attempts, detecting\";s: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:\"Chris Wiegman\";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			\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: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:25;a:6:{s:4:\"data\";s:30:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Meta Slider\";s: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/ml-slider/#post-49521\";s: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 Feb 2013 16:56: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:\"49521@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:145:\"Easy to use WordPress slider plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.\";s: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:\"Matcha Labs\";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			\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: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:127:\"Displays Google Analytics reports 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:27;a:6:{s:4:\"data\";s:30:\"\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: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:28;a:6:{s:4:\"data\";s:30:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"UpdraftPlus Backup and Restoration\";s: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:29;a:6:{s:4:\"data\";s:30:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Clef Two-Factor Authentication\";s: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:48:\"https://wordpress.org/plugins/wpclef/#post-47509\";s: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, 27 Dec 2012 01:25: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:36:\"47509@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:\"Secure two-factor that people love to use: strong authentication without passwords or tokens; single sign on/off; magical user experience.\";s: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:\"Dave Ross\";s: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\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 06 Oct 2015 09:23:12 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:7:\"expires\";s:29:\"Tue, 06 Oct 2015 09:29:39 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Tue, 06 Oct 2015 08:54:39 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20130911020210\";}", "no");
INSERT INTO `wp_options` VALUES("40733", "_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109", "1444166592", "no");
INSERT INTO `wp_options` VALUES("40734", "_transient_feed_mod_b9388c83948825c1edaef0d856b7b109", "1444123392", "no");
INSERT INTO `wp_options` VALUES("40735", "_transient_timeout_plugin_slugs", "1444214509", "no");
INSERT INTO `wp_options` VALUES("40736", "_transient_plugin_slugs", "a:16:{i:0;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:1;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:45:\"custom-facebook-feed/custom-facebook-feed.php\";i:4;s:25:\"duplicator/duplicator.php\";i:5;s:19:\"jetpack/jetpack.php\";i:6;s:39:\"siteorigin-panels/siteorigin-panels.php\";i:7;s:33:\"posts-for-page/posts-for-page.php\";i:8;s:43:\"visual-form-builder/visual-form-builder.php\";i:9;s:27:\"woocommerce/woocommerce.php\";i:10;s:47:\"woocommerce-gateway-payfast/gateway-payfast.php\";i:11;s:27:\"woosidebars/woosidebars.php\";i:12;s:39:\"woothemes-updater/woothemes-updater.php\";i:13;s:31:\"wp-lightbox-2/wp-lightbox-2.php\";i:14;s:29:\"wp-menu-cart/wp-menu-cart.php\";i:15;s:24:\"wordpress-seo/wp-seo.php\";}", "no");
INSERT INTO `wp_options` VALUES("40737", "_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b", "1444166592", "no");
INSERT INTO `wp_options` VALUES("40738", "_transient_dash_88ae138922fe95674369b1cb3d215a2b", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2015/09/wordpress-4-3-1/\'>WordPress 4.3.1 Security and Maintenance Release</a> <span class=\"rss-date\">September 15, 2015</span><div class=\"rssSummary\">WordPress 4.3.1 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. This release addresses three issues, including two cross-site scripting vulnerabilities and a potential privilege escalation. WordPress versions 4.3 and earlier are vulnerable to a cross-site scripting vulnerability when processing shortcode tags (CVE-2015-5714). Reported by [&hellip;]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://ma.tt/2015/10/interview-in-french/\'>Matt: Interview in French</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/tom-nowell-on-how-automattic-keeps-workers-healthy-and-happy\'>WPTavern: Tom Nowell on How Automattic Keeps Workers Healthy and Happy</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/how-wordpress-core-development-happens-draft-podcast/\'>Post Status: How WordPress core development happens — Draft podcast</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'https://wordpress.org/plugins/wpclef/\' class=\'dashboard-news-plugin-link\'>Clef Two-Factor Authentication</a>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=wpclef&amp;_wpnonce=d2c91dbe43&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'Clef Two-Factor Authentication\'>Install</a>)</span></li></ul></div>", "no");
INSERT INTO `wp_options` VALUES("40756", "_transient_timeout_jpp_li_69c0e8b3c96e8762bd5f3f2da8da5e2e", "1444128659", "no");
INSERT INTO `wp_options` VALUES("40757", "_transient_jpp_li_69c0e8b3c96e8762bd5f3f2da8da5e2e", "a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (107.181.174.84)\";s:17:\"seconds_remaining\";i:2247;s:16:\"blocked_attempts\";s:3:\"622\";s:6:\"expire\";i:1444128659;}", "no");
INSERT INTO `wp_options` VALUES("40758", "_transient_timeout_jpp_li_08bb346134eed4336033624a9d9a9833", "1444129603", "no");
INSERT INTO `wp_options` VALUES("40759", "_transient_jpp_li_08bb346134eed4336033624a9d9a9833", "a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (109.163.234.7)\";s:17:\"seconds_remaining\";i:3188;s:16:\"blocked_attempts\";s:3:\"623\";s:6:\"expire\";i:1444129603;}", "no");
INSERT INTO `wp_options` VALUES("40765", "_transient_timeout_jpp_li_d15bef49b72bb077f8ad039ef5f7ef8f", "1444129755", "no");
INSERT INTO `wp_options` VALUES("40766", "_transient_jpp_li_d15bef49b72bb077f8ad039ef5f7ef8f", "a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (178.219.245.214)\";s:17:\"seconds_remaining\";i:2342;s:16:\"blocked_attempts\";s:3:\"624\";s:6:\"expire\";i:1444129755;}", "no");
INSERT INTO `wp_options` VALUES("40774", "_transient_timeout_woothemes_helper_updates", "1444128407", "no");
INSERT INTO `wp_options` VALUES("40775", "_transient_woothemes_helper_updates", "O:8:\"stdClass\":3:{s:7:\"plugins\";O:8:\"stdClass\":1:{s:47:\"woocommerce-gateway-payfast/gateway-payfast.php\";O:8:\"stdClass\":6:{s:2:\"id\";i:18596;s:4:\"slug\";s:47:\"woocommerce-gateway-payfast/gateway-payfast.php\";s:11:\"new_version\";s:5:\"1.2.9\";s:14:\"upgrade_notice\";s:67:\"Fix - Removes \"empty()\" call when outputting the description field.\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";}}s:6:\"themes\";O:8:\"stdClass\":1:{s:7:\"mystile\";O:8:\"stdClass\":6:{s:2:\"id\";i:18825;s:4:\"slug\";s:7:\"mystile\";s:11:\"new_version\";s:6:\"1.3.10\";s:14:\"upgrade_notice\";s:82:\"Fix - Padding on the top search input field is now consistent across all browsers.\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";}}s:6:\"helper\";O:8:\"stdClass\":1:{s:39:\"woothemes-updater/woothemes-updater.php\";O:8:\"stdClass\":1:{s:9:\"no_update\";s:30:\"Already on the latest version.\";}}}", "no");
INSERT INTO `wp_options` VALUES("40776", "duplicator_package_active", "O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:19:\"20151006_chequerbox\";s:4:\"Hash\";N;s:8:\"NameHash\";s:20:\"20151006_chequerbox_\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/chequpkb/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://chequerbox.co.za/wp-snapshots/\";s:8:\"ScanFile\";s:30:\"20151006_chequerbox__scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:26:\"/home/chequpkb/public_html\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:19:\"20151006_chequerbox\";s:4:\"Hash\";N;s:8:\"NameHash\";s:20:\"20151006_chequerbox_\";s:7:\"Version\";s:6:\"0.5.30\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:43:\"/home/chequpkb/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://chequerbox.co.za/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:45;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:45;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:9:\"Installer\";r:60;s:8:\"Database\";r:73;}", "yes");
INSERT INTO `wp_options` VALUES("40781", "_transient_timeout_wc_related_4_8221436967645", "1446720315", "no");
INSERT INTO `wp_options` VALUES("40782", "_transient_wc_related_4_8221436967645", "a:4:{i:0;s:3:\"812\";i:1;s:3:\"820\";i:2;s:3:\"821\";i:3;s:3:\"872\";}", "no");
INSERT INTO `wp_options` VALUES("40788", "_transient_timeout_jpp_li_d8049e64169b37b1171b6373510bb1cc", "1444132637", "no");
INSERT INTO `wp_options` VALUES("40789", "_transient_jpp_li_d8049e64169b37b1171b6373510bb1cc", "a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (85.25.103.119)\";s:17:\"seconds_remaining\";i:3450;s:16:\"blocked_attempts\";s:3:\"625\";s:6:\"expire\";i:1444132637;}", "no");
INSERT INTO `wp_options` VALUES("40796", "_transient_timeout_cff_f_17258003957477117258003957477110ot", "1444134268", "no");
INSERT INTO `wp_options` VALUES("40797", "_transient_cff_f_17258003957477117258003957477110ot", "{\"data\":[{\"id\":\"172580039574771_504648916367880\",\"from\":{\"name\":\"Chequerbox Photo Booths\",\"category\":\"Product\\/Service\",\"id\":\"172580039574771\"},\"story\":\"Chequerbox Photo Booths updated their profile picture.\",\"story_tags\":{\"0\":[{\"id\":\"172580039574771\",\"name\":\"Chequerbox Photo Booths\",\"type\":\"page\",\"offset\":0,\"length\":23}]},\"link\":\"https:\\/\\/www.facebook.com\\/chequerboxphotobooths\\/photos\\/a.172594586239983.1073741825.172580039574771\\/504648916367880\\/?type=3\",\"name\":\"Chequerbox Photo Booths\",\"type\":\"photo\",\"status_type\":\"added_photos\",\"object_id\":\"504648916367880\",\"created_time\":\"2015-09-18T11:02:20+0000\"},{\"id\":\"172580039574771_504648813034557\",\"from\":{\"name\":\"Chequerbox Photo Booths\",\"category\":\"Product\\/Service\",\"id\":\"172580039574771\"},\"story\":\"Chequerbox Photo Booths updated their cover photo.\",\"story_tags\":{\"0\":[{\"id\":\"172580039574771\",\"name\":\"Chequerbox Photo Booths\",\"type\":\"page\",\"offset\":0,\"length\":23}]},\"link\":\"https:\\/\\/www.facebook.com\\/chequerboxphotobooths\\/photos\\/a.172654822900626.1073741827.172580039574771\\/504648789701226\\/?type=3\",\"name\":\"Chequerbox Photo Booths\'s cover photo\",\"type\":\"photo\",\"status_type\":\"added_photos\",\"object_id\":\"504648789701226\",\"created_time\":\"2015-09-18T11:01:57+0000\"},{\"id\":\"172580039574771_504591479706957\",\"from\":{\"name\":\"Chequerbox Photo Booths\",\"category\":\"Product\\/Service\",\"id\":\"172580039574771\"},\"message\":\"We have a new website dedicated to our photo booth & event photography services!  \\nhttp:\\/\\/chequerboxphotobooths.co.za\\/\",\"link\":\"http:\\/\\/chequerboxphotobooths.co.za\\/\",\"name\":\"Chequerbox Photobooths -\",\"caption\":\"chequerboxphotobooths.co.za\",\"description\":\"  Traditional Photobooths A traditional photobooth remains great fun for any party, wedding or corporate function.  There is something about getting dressed up with silly or cute props and getting into a photobooth to have some fun.  This is the per...\",\"type\":\"link\",\"status_type\":\"shared_story\",\"created_time\":\"2015-09-18T07:38:07+0000\"},{\"id\":\"172580039574771_503218156510956\",\"from\":{\"name\":\"Chequerbox Photo Booths\",\"category\":\"Product\\/Service\",\"id\":\"172580039574771\"},\"message\":\"Receive a Wedding DIY Album for your guests to complete when you book a ChequerBox photo booth for your wedding\",\"link\":\"https:\\/\\/www.facebook.com\\/chequerboxphotobooths\\/photos\\/a.294668834032557.1073741845.172580039574771\\/503218156510956\\/?type=3\",\"name\":\"Timeline Photos\",\"type\":\"photo\",\"status_type\":\"added_photos\",\"object_id\":\"503218156510956\",\"created_time\":\"2015-09-14T15:51:40+0000\"},{\"id\":\"172580039574771_503207999845305\",\"from\":{\"name\":\"Chequerbox Photo Booths\",\"category\":\"Product\\/Service\",\"id\":\"172580039574771\"},\"message\":\"We had great fun at #SowetoWineRevolution  and #DurbanSummer \\nContact ChequerBox for more information on our photographer and on-site printing services\",\"story\":\"Chequerbox Photo Booths added 2 new photos.\",\"story_tags\":{\"0\":[{\"id\":\"172580039574771\",\"name\":\"Chequerbox Photo Booths\",\"type\":\"page\",\"offset\":0,\"length\":23}]},\"link\":\"https:\\/\\/www.facebook.com\\/chequerboxphotobooths\\/photos\\/a.294668834032557.1073741845.172580039574771\\/503200536512718\\/?type=3\",\"name\":\"Photos from Chequerbox Photo Booths\'s post\",\"type\":\"photo\",\"status_type\":\"added_photos\",\"object_id\":\"503200536512718\",\"created_time\":\"2015-09-14T15:22:45+0000\"},{\"id\":\"172580039574771_501102936722478\",\"from\":{\"name\":\"Chequerbox Photo Booths\",\"category\":\"Product\\/Service\",\"id\":\"172580039574771\"},\"message\":\"September deal for Photographer & Prints \\nReceive a free DIY Album Kit when you book our 2 hour Photographer & Prints option for a children\'s party\",\"story\":\"Chequerbox Photo Booths added 3 new photos to the album: Photographer & Prints.\",\"story_tags\":{\"0\":[{\"id\":\"172580039574771\",\"name\":\"Chequerbox Photo Booths\",\"type\":\"page\",\"offset\":0,\"length\":23}]},\"link\":\"https:\\/\\/www.facebook.com\\/chequerboxphotobooths\\/photos\\/a.501102233389215.1073741847.172580039574771\\/501102936722478\\/?type=3\",\"name\":\"Photographer & Prints\",\"caption\":\"September deal for Photographer & Prints \\nReceive a free DIY Album Kit when you book our 2 hour Photographer & Prints option for a children\'s party\",\"type\":\"photo\",\"status_type\":\"added_photos\",\"object_id\":\"501102936722478\",\"created_time\":\"2015-09-09T09:06:33+0000\"},{\"id\":\"172580039574771_496635167169255\",\"from\":{\"name\":\"Chequerbox Photo Booths\",\"category\":\"Product\\/Service\",\"id\":\"172580039574771\"},\"message\":\"Love these cute speech bubbles from MRP Home \\/ Mr Price Home. Perfect wedding props!\",\"message_tags\":{\"36\":[{\"id\":\"354947864548196\",\"name\":\"MRP Home \\/ Mr Price Home\",\"type\":\"page\",\"offset\":36,\"length\":24}]},\"link\":\"https:\\/\\/www.facebook.com\\/chequerboxphotobooths\\/photos\\/a.294668834032557.1073741845.172580039574771\\/496635167169255\\/?type=3\",\"name\":\"Timeline Photos\",\"type\":\"photo\",\"status_type\":\"added_photos\",\"object_id\":\"496635167169255\",\"created_time\":\"2015-08-28T12:59:11+0000\"},{\"id\":\"172580039574771_480856252080480\",\"from\":{\"name\":\"Chequerbox Photo Booths\",\"category\":\"Product\\/Service\",\"id\":\"172580039574771\"},\"message\":\"We are loving the pink themed photobooth strips designed for Ren\\u00e9 and Mila\'s 14th birthday party by our graphic designer Nicol.\",\"link\":\"https:\\/\\/www.facebook.com\\/chequerboxphotobooths\\/photos\\/a.294668834032557.1073741845.172580039574771\\/480856252080480\\/?type=3\",\"name\":\"Timeline Photos\",\"type\":\"photo\",\"status_type\":\"added_photos\",\"object_id\":\"480856252080480\",\"created_time\":\"2015-07-15T13:44:46+0000\"},{\"id\":\"172580039574771_473199202846185\",\"from\":{\"name\":\"Chequerbox Photo Booths\",\"category\":\"Product\\/Service\",\"id\":\"172580039574771\"},\"message\":\"Winter Wedding Photo Booth Special!\",\"link\":\"https:\\/\\/www.facebook.com\\/chequerboxphotobooths\\/photos\\/a.294668834032557.1073741845.172580039574771\\/473199202846185\\/?type=3\",\"name\":\"Timeline Photos\",\"type\":\"photo\",\"status_type\":\"added_photos\",\"object_id\":\"473199202846185\",\"created_time\":\"2015-06-26T06:39:08+0000\"},{\"id\":\"172580039574771_473199119512860\",\"from\":{\"name\":\"Chequerbox Photo Booths\",\"category\":\"Product\\/Service\",\"id\":\"172580039574771\"},\"story\":\"Chequerbox Photo Booths shared Melisha Reddy\'s post.\",\"story_tags\":{\"0\":[{\"id\":\"172580039574771\",\"name\":\"Chequerbox Photo Booths\",\"type\":\"page\",\"offset\":0,\"length\":23}],\"31\":[{\"id\":\"529982243824435\",\"name\":\"Melisha Reddy\",\"type\":\"user\",\"offset\":31,\"length\":13}]},\"link\":\"https:\\/\\/www.facebook.com\\/chequerboxphotobooths\\/posts\\/472836032882502\",\"name\":\"Melisha\",\"description\":\"Thank you for making our wedding so special! Your photobooth was amazing and you always add your touch of perfection to everything! Thank you so much Joleen Eden! Much appreciated!\",\"type\":\"link\",\"status_type\":\"shared_story\",\"created_time\":\"2015-06-26T06:37:55+0000\"}],\"paging\":{\"previous\":\"https:\\/\\/graph.facebook.com\\/v2.3\\/172580039574771\\/feed?fields=id,from,message,message_tags,story,story_tags,link,source,name,caption,description,type,status_type,object_id,created_time&limit=10&locale=en_US&since=1442574140&access_token=1444667452511509|wU7tzWiuj6NadfpHfgkIGLGO86o&__paging_token=enc_AdBT3AjGXwOB7bPmfveJIo9coC7YhZBHwRZBAByQ8ZCWzNk74uhOJ10DP4fPM4AUcS2jU11V69Fu5pZBGvQ9oikCnIBTr3h3E1gNDN4H178WbBNtVgZDZD&__previous=1\",\"next\":\"https:\\/\\/graph.facebook.com\\/v2.3\\/172580039574771\\/feed?fields=id,from,message,message_tags,story,story_tags,link,source,name,caption,description,type,status_type,object_id,created_time&limit=10&locale=en_US&access_token=1444667452511509|wU7tzWiuj6NadfpHfgkIGLGO86o&until=1435300675&__paging_token=enc_AdAmiuWqNrUlFBlAN1mq6bzhMbMpfHUmU1tJ93WdT7Th6BxSzkocbnwYO4DgAoh0wZCJVGIYfvUuklCAXZAsU7uAkbwPoLYUlJS5fi1ZBhvMD7mVwZDZD\"}}", "no");
INSERT INTO `wp_options` VALUES("40822", "_site_transient_timeout_theme_roots", "1444139685", "yes");
INSERT INTO `wp_options` VALUES("40823", "_site_transient_theme_roots", "a:8:{s:15:\"accesspress-ray\";s:7:\"/themes\";s:7:\"mystile\";s:7:\"/themes\";s:11:\"new-mystile\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}", "yes");
INSERT INTO `wp_options` VALUES("40824", "_site_transient_timeout_security_report_performed_recently", "1444138891", "yes");
INSERT INTO `wp_options` VALUES("40825", "_site_transient_security_report_performed_recently", "1", "yes");

/* INSERT TABLE DATA: wp_postmeta */
INSERT INTO `wp_postmeta` VALUES("2", "4", "_wp_attached_file", "2015/02/Logo_Text_converted-to-ouline.jpg");
INSERT INTO `wp_postmeta` VALUES("3", "4", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:76;s:4:\"file\";s:41:\"2015/02/Logo_Text_converted-to-ouline.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Logo_Text_converted-to-ouline-150x76.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Logo_Text_converted-to-ouline-300x76.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:40:\"Logo_Text_converted-to-ouline-150x38.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:39:\"Logo_Text_converted-to-ouline-67x17.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:17;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("4", "5", "_wp_attached_file", "2015/02/Logo_Text_converted-to-ouline1.jpg");
INSERT INTO `wp_postmeta` VALUES("5", "5", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:854;s:6:\"height\";i:295;s:4:\"file\";s:42:\"2015/02/Logo_Text_converted-to-ouline1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Logo_Text_converted-to-ouline1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Logo_Text_converted-to-ouline1-300x104.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:41:\"Logo_Text_converted-to-ouline1-150x52.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:40:\"Logo_Text_converted-to-ouline1-67x23.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:23;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:42:\"Logo_Text_converted-to-ouline1-366x126.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("8", "73", "_wp_attached_file", "2013/05/Denel-Admin_Apr13.jpg");
INSERT INTO `wp_postmeta` VALUES("9", "73", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2448;s:6:\"height\";i:3264;s:4:\"file\";s:29:\"2013/05/Denel-Admin_Apr13.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Denel-Admin_Apr13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Denel-Admin_Apr13-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Denel-Admin_Apr13-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:27:\"Denel-Admin_Apr13-65x87.jpg\";s:5:\"width\";i:65;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:27:\"Denel-Admin_Apr13-29x39.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:29:\"Denel-Admin_Apr13-116x155.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:29:\"Denel-Admin_Apr13-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("10", "73", "_wpsc_selected_image_size", "medium-single-product");
INSERT INTO `wp_postmeta` VALUES("11", "73", "_wpsc_custom_thumb_w", "");
INSERT INTO `wp_postmeta` VALUES("12", "73", "_wpsc_custom_thumb_h", "");
INSERT INTO `wp_postmeta` VALUES("13", "95", "_wp_attached_file", "2013/05/photo-booth.jpg");
INSERT INTO `wp_postmeta` VALUES("14", "95", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:301;s:4:\"file\";s:23:\"2013/05/photo-booth.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"photo-booth-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"photo-booth-300x226.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:22:\"photo-booth-116x87.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:21:\"photo-booth-52x39.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:23:\"photo-booth-206x155.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("15", "95", "_wpsc_custom_thumb_w", "");
INSERT INTO `wp_postmeta` VALUES("16", "95", "_wpsc_custom_thumb_h", "");
INSERT INTO `wp_postmeta` VALUES("17", "95", "_wpsc_selected_image_size", "medium-single-product");
INSERT INTO `wp_postmeta` VALUES("18", "127", "_wp_attached_file", "2013/05/Baby-Aid_Top.jpg");
INSERT INTO `wp_postmeta` VALUES("19", "127", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:567;s:6:\"height\";i:322;s:4:\"file\";s:24:\"2013/05/Baby-Aid_Top.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Baby-Aid_Top-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Baby-Aid_Top-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"Baby-Aid_Top-150x85.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:22:\"Baby-Aid_Top-67x39.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"Baby-Aid_Top-273x155.jpg\";s:5:\"width\";i:273;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("20", "127", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21", "150", "_wp_attached_file", "2013/05/Denel-Admin_Apr131.jpg");
INSERT INTO `wp_postmeta` VALUES("22", "150", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2448;s:6:\"height\";i:3264;s:4:\"file\";s:30:\"2013/05/Denel-Admin_Apr131.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Denel-Admin_Apr131-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Denel-Admin_Apr131-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Denel-Admin_Apr131-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:28:\"Denel-Admin_Apr131-65x87.jpg\";s:5:\"width\";i:65;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:28:\"Denel-Admin_Apr131-29x39.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:30:\"Denel-Admin_Apr131-116x155.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:30:\"Denel-Admin_Apr131-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("23", "151", "_wp_attached_file", "2013/05/Denel-Factory_Apr13.jpg");
INSERT INTO `wp_postmeta` VALUES("24", "151", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2019;s:6:\"height\";i:2449;s:4:\"file\";s:31:\"2013/05/Denel-Factory_Apr13.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Denel-Factory_Apr13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Denel-Factory_Apr13-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Denel-Factory_Apr13-844x1024.jpg\";s:5:\"width\";i:844;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:29:\"Denel-Factory_Apr13-72x87.jpg\";s:5:\"width\";i:72;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:29:\"Denel-Factory_Apr13-32x39.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:31:\"Denel-Factory_Apr13-128x155.jpg\";s:5:\"width\";i:128;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:31:\"Denel-Factory_Apr13-660x800.jpg\";s:5:\"width\";i:660;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1365601043;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("25", "152", "_wp_attached_file", "2013/05/Denel-PMP_Apr13.jpg");
INSERT INTO `wp_postmeta` VALUES("26", "152", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1691;s:6:\"height\";i:2473;s:4:\"file\";s:27:\"2013/05/Denel-PMP_Apr13.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Denel-PMP_Apr13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Denel-PMP_Apr13-205x300.jpg\";s:5:\"width\";i:205;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Denel-PMP_Apr13-700x1024.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:25:\"Denel-PMP_Apr13-59x87.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:25:\"Denel-PMP_Apr13-27x39.jpg\";s:5:\"width\";i:27;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:27:\"Denel-PMP_Apr13-106x155.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:27:\"Denel-PMP_Apr13-547x800.jpg\";s:5:\"width\";i:547;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1365598510;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("27", "159", "_wp_attached_file", "2013/05/Baby-Aid_Front_v2.jpg");
INSERT INTO `wp_postmeta` VALUES("28", "159", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1535;s:6:\"height\";i:1230;s:4:\"file\";s:29:\"2013/05/Baby-Aid_Front_v2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Baby-Aid_Front_v2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Baby-Aid_Front_v2-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Baby-Aid_Front_v2-1024x821.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:821;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:28:\"Baby-Aid_Front_v2-109x87.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:27:\"Baby-Aid_Front_v2-49x39.jpg\";s:5:\"width\";i:49;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:29:\"Baby-Aid_Front_v2-193x155.jpg\";s:5:\"width\";i:193;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:29:\"Baby-Aid_Front_v2-998x800.jpg\";s:5:\"width\";i:998;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("29", "159", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("30", "161", "_wp_attached_file", "2013/05/Wedding-Survival-Kit_Front.jpg");
INSERT INTO `wp_postmeta` VALUES("31", "161", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1240;s:6:\"height\";i:1754;s:4:\"file\";s:38:\"2013/05/Wedding-Survival-Kit_Front.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Wedding-Survival-Kit_Front-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Wedding-Survival-Kit_Front-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Wedding-Survival-Kit_Front-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Front-62x87.jpg\";s:5:\"width\";i:62;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Front-28x39.jpg\";s:5:\"width\";i:28;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:38:\"Wedding-Survival-Kit_Front-110x155.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:38:\"Wedding-Survival-Kit_Front-566x800.jpg\";s:5:\"width\";i:566;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("32", "161", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("33", "163", "_wp_attached_file", "2013/05/Wedding-Survival-Kit_Top.jpg");
INSERT INTO `wp_postmeta` VALUES("34", "163", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:769;s:6:\"height\";i:616;s:4:\"file\";s:36:\"2013/05/Wedding-Survival-Kit_Top.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Top-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Top-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:35:\"Wedding-Survival-Kit_Top-109x87.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:34:\"Wedding-Survival-Kit_Top-49x39.jpg\";s:5:\"width\";i:49;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Top-193x155.jpg\";s:5:\"width\";i:193;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("35", "163", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("36", "166", "_wp_attached_file", "2013/05/Wedding-Kit_Hold-All-Bag-Jade.jpg");
INSERT INTO `wp_postmeta` VALUES("37", "166", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1240;s:6:\"height\";i:1754;s:4:\"file\";s:41:\"2013/05/Wedding-Kit_Hold-All-Bag-Jade.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag-Jade-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag-Jade-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Wedding-Kit_Hold-All-Bag-Jade-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:39:\"Wedding-Kit_Hold-All-Bag-Jade-62x87.jpg\";s:5:\"width\";i:62;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:39:\"Wedding-Kit_Hold-All-Bag-Jade-28x39.jpg\";s:5:\"width\";i:28;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag-Jade-110x155.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag-Jade-566x800.jpg\";s:5:\"width\";i:566;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("38", "166", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("39", "167", "_wp_attached_file", "2013/05/Wedding-Kit_Hold-All-Bag-Jade_Front_v1.jpg");
INSERT INTO `wp_postmeta` VALUES("40", "167", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:992;s:6:\"height\";i:933;s:4:\"file\";s:50:\"2013/05/Wedding-Kit_Hold-All-Bag-Jade_Front_v1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag-Jade_Front_v1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag-Jade_Front_v1-300x282.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:48:\"Wedding-Kit_Hold-All-Bag-Jade_Front_v1-93x87.jpg\";s:5:\"width\";i:93;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:48:\"Wedding-Kit_Hold-All-Bag-Jade_Front_v1-41x39.jpg\";s:5:\"width\";i:41;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag-Jade_Front_v1-165x155.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag-Jade_Front_v1-851x800.jpg\";s:5:\"width\";i:851;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("41", "168", "_wp_attached_file", "2013/05/Wedding-Kit_Hold-All-Bag_Navy.jpg");
INSERT INTO `wp_postmeta` VALUES("42", "168", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1240;s:6:\"height\";i:1754;s:4:\"file\";s:41:\"2013/05/Wedding-Kit_Hold-All-Bag_Navy.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag_Navy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag_Navy-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Wedding-Kit_Hold-All-Bag_Navy-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:39:\"Wedding-Kit_Hold-All-Bag_Navy-62x87.jpg\";s:5:\"width\";i:62;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:39:\"Wedding-Kit_Hold-All-Bag_Navy-28x39.jpg\";s:5:\"width\";i:28;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag_Navy-110x155.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag_Navy-566x800.jpg\";s:5:\"width\";i:566;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("43", "168", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("44", "169", "_wp_attached_file", "2013/05/Wedding-Kit_Hold-All-Bag_Navy_Front_v1.jpg");
INSERT INTO `wp_postmeta` VALUES("45", "169", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1029;s:6:\"height\";i:862;s:4:\"file\";s:50:\"2013/05/Wedding-Kit_Hold-All-Bag_Navy_Front_v1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag_Navy_Front_v1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag_Navy_Front_v1-300x251.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Wedding-Kit_Hold-All-Bag_Navy_Front_v1-1024x858.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:858;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:49:\"Wedding-Kit_Hold-All-Bag_Navy_Front_v1-104x87.jpg\";s:5:\"width\";i:104;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:48:\"Wedding-Kit_Hold-All-Bag_Navy_Front_v1-47x39.jpg\";s:5:\"width\";i:47;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag_Navy_Front_v1-185x155.jpg\";s:5:\"width\";i:185;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag_Navy_Front_v1-955x800.jpg\";s:5:\"width\";i:955;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("46", "173", "_wp_attached_file", "2013/05/Wedding-Day_Weekender-Bag-Jade.jpg");
INSERT INTO `wp_postmeta` VALUES("47", "173", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1015;s:6:\"height\";i:748;s:4:\"file\";s:42:\"2013/05/Wedding-Day_Weekender-Bag-Jade.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Wedding-Day_Weekender-Bag-Jade-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Wedding-Day_Weekender-Bag-Jade-300x221.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:41:\"Wedding-Day_Weekender-Bag-Jade-118x87.jpg\";s:5:\"width\";i:118;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:40:\"Wedding-Day_Weekender-Bag-Jade-53x39.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:42:\"Wedding-Day_Weekender-Bag-Jade-210x155.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("48", "177", "_wp_attached_file", "2013/05/Bryanston_May13.jpg");
INSERT INTO `wp_postmeta` VALUES("49", "177", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:382;s:6:\"height\";i:510;s:4:\"file\";s:27:\"2013/05/Bryanston_May13.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Bryanston_May13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Bryanston_May13-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:25:\"Bryanston_May13-65x87.jpg\";s:5:\"width\";i:65;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:25:\"Bryanston_May13-29x39.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:27:\"Bryanston_May13-116x155.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("50", "180", "_wp_attached_file", "2013/05/Photo-Booth_Guest-Books-All_v1.jpg");
INSERT INTO `wp_postmeta` VALUES("51", "180", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2478;s:6:\"height\";i:1329;s:4:\"file\";s:42:\"2013/05/Photo-Booth_Guest-Books-All_v1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Photo-Booth_Guest-Books-All_v1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Photo-Booth_Guest-Books-All_v1-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Photo-Booth_Guest-Books-All_v1-1024x549.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:41:\"Photo-Booth_Guest-Books-All_v1-150x80.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:40:\"Photo-Booth_Guest-Books-All_v1-67x36.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:42:\"Photo-Booth_Guest-Books-All_v1-289x155.jpg\";s:5:\"width\";i:289;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:43:\"Photo-Booth_Guest-Books-All_v1-1170x627.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("52", "181", "_wp_attached_file", "2013/05/Photo-Booth_Bird-Guestbook_v1.jpg");
INSERT INTO `wp_postmeta` VALUES("53", "181", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2032;s:6:\"height\";i:1560;s:4:\"file\";s:41:\"2013/05/Photo-Booth_Bird-Guestbook_v1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Photo-Booth_Bird-Guestbook_v1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Photo-Booth_Bird-Guestbook_v1-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Photo-Booth_Bird-Guestbook_v1-1024x786.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:786;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:40:\"Photo-Booth_Bird-Guestbook_v1-113x87.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:39:\"Photo-Booth_Bird-Guestbook_v1-51x39.jpg\";s:5:\"width\";i:51;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:41:\"Photo-Booth_Bird-Guestbook_v1-202x155.jpg\";s:5:\"width\";i:202;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:42:\"Photo-Booth_Bird-Guestbook_v1-1042x800.jpg\";s:5:\"width\";i:1042;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("54", "182", "_wp_attached_file", "2013/05/Photo-Booth_Butterfly-guest-book_v1.jpg");
INSERT INTO `wp_postmeta` VALUES("55", "182", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1861;s:6:\"height\";i:1626;s:4:\"file\";s:47:\"2013/05/Photo-Booth_Butterfly-guest-book_v1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Photo-Booth_Butterfly-guest-book_v1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Photo-Booth_Butterfly-guest-book_v1-300x262.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Photo-Booth_Butterfly-guest-book_v1-1024x895.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:895;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:46:\"Photo-Booth_Butterfly-guest-book_v1-100x87.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:45:\"Photo-Booth_Butterfly-guest-book_v1-45x39.jpg\";s:5:\"width\";i:45;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:47:\"Photo-Booth_Butterfly-guest-book_v1-177x155.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:47:\"Photo-Booth_Butterfly-guest-book_v1-916x800.jpg\";s:5:\"width\";i:916;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("56", "183", "_wp_attached_file", "2013/05/Photo-Booth_Heart-Guestbook_v1.jpg");
INSERT INTO `wp_postmeta` VALUES("57", "183", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2122;s:6:\"height\";i:1590;s:4:\"file\";s:42:\"2013/05/Photo-Booth_Heart-Guestbook_v1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Photo-Booth_Heart-Guestbook_v1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Photo-Booth_Heart-Guestbook_v1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Photo-Booth_Heart-Guestbook_v1-1024x767.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:41:\"Photo-Booth_Heart-Guestbook_v1-116x87.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:40:\"Photo-Booth_Heart-Guestbook_v1-52x39.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:42:\"Photo-Booth_Heart-Guestbook_v1-207x155.jpg\";s:5:\"width\";i:207;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:43:\"Photo-Booth_Heart-Guestbook_v1-1068x800.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("58", "184", "_wp_attached_file", "2013/05/Photo-Booth_Prop-Display_v1.jpg");
INSERT INTO `wp_postmeta` VALUES("59", "184", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2472;s:6:\"height\";i:2336;s:4:\"file\";s:39:\"2013/05/Photo-Booth_Prop-Display_v1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Photo-Booth_Prop-Display_v1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Photo-Booth_Prop-Display_v1-300x283.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Photo-Booth_Prop-Display_v1-1024x968.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:968;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:37:\"Photo-Booth_Prop-Display_v1-92x87.jpg\";s:5:\"width\";i:92;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:37:\"Photo-Booth_Prop-Display_v1-41x39.jpg\";s:5:\"width\";i:41;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:39:\"Photo-Booth_Prop-Display_v1-164x155.jpg\";s:5:\"width\";i:164;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:39:\"Photo-Booth_Prop-Display_v1-847x800.jpg\";s:5:\"width\";i:847;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("60", "203", "_wp_attached_file", "2013/06/IMG_0450.jpg");
INSERT INTO `wp_postmeta` VALUES("61", "203", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:438;s:6:\"height\";i:859;s:4:\"file\";s:20:\"2013/06/IMG_0450.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0450-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0450-153x300.jpg\";s:5:\"width\";i:153;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0450-44x87.jpg\";s:5:\"width\";i:44;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0450-20x39.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0450-79x155.jpg\";s:5:\"width\";i:79;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:20:\"IMG_0450-408x800.jpg\";s:5:\"width\";i:408;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("62", "203", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("63", "208", "_wp_attached_file", "2013/06/Photo-Booth-Front-Cover_v2.jpg");
INSERT INTO `wp_postmeta` VALUES("64", "208", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2598;s:6:\"height\";i:1073;s:4:\"file\";s:38:\"2013/06/Photo-Booth-Front-Cover_v2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Photo-Booth-Front-Cover_v2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Photo-Booth-Front-Cover_v2-300x124.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Photo-Booth-Front-Cover_v2-1024x423.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:37:\"Photo-Booth-Front-Cover_v2-150x62.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:62;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:36:\"Photo-Booth-Front-Cover_v2-67x28.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:28;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:38:\"Photo-Booth-Front-Cover_v2-366x151.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:39:\"Photo-Booth-Front-Cover_v2-1170x483.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("65", "214", "_wp_attached_file", "2013/06/Background_Light-Hearts_v1.jpg");
INSERT INTO `wp_postmeta` VALUES("66", "214", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:167;s:6:\"height\";i:499;s:4:\"file\";s:38:\"2013/06/Background_Light-Hearts_v1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Background_Light-Hearts_v1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Background_Light-Hearts_v1-100x300.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:36:\"Background_Light-Hearts_v1-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:36:\"Background_Light-Hearts_v1-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:37:\"Background_Light-Hearts_v1-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("67", "215", "_wp_attached_file", "2013/06/Background_Red-Polka-Dots_v1.jpg");
INSERT INTO `wp_postmeta` VALUES("68", "215", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:167;s:6:\"height\";i:499;s:4:\"file\";s:40:\"2013/06/Background_Red-Polka-Dots_v1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Background_Red-Polka-Dots_v1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Background_Red-Polka-Dots_v1-100x300.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:38:\"Background_Red-Polka-Dots_v1-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:38:\"Background_Red-Polka-Dots_v1-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:39:\"Background_Red-Polka-Dots_v1-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("69", "216", "_wp_attached_file", "2013/06/Background_Teal_v1.jpg");
INSERT INTO `wp_postmeta` VALUES("70", "216", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:167;s:6:\"height\";i:499;s:4:\"file\";s:30:\"2013/06/Background_Teal_v1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Background_Teal_v1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Background_Teal_v1-100x300.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:28:\"Background_Teal_v1-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:28:\"Background_Teal_v1-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:29:\"Background_Teal_v1-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("71", "217", "_wp_attached_file", "2013/05/funky-props_1.jpg");
INSERT INTO `wp_postmeta` VALUES("72", "217", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:537;s:6:\"height\";i:700;s:4:\"file\";s:25:\"2013/05/funky-props_1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"funky-props_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"funky-props_1-230x300.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"funky-props_1-67x87.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"funky-props_1-30x39.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"funky-props_1-119x155.jpg\";s:5:\"width\";i:119;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("73", "218", "_wp_attached_file", "2013/05/Photo-Booth_Prop-Display_v11.jpg");
INSERT INTO `wp_postmeta` VALUES("74", "218", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2472;s:6:\"height\";i:2336;s:4:\"file\";s:40:\"2013/05/Photo-Booth_Prop-Display_v11.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Photo-Booth_Prop-Display_v11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Photo-Booth_Prop-Display_v11-300x283.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Photo-Booth_Prop-Display_v11-1024x968.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:968;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:38:\"Photo-Booth_Prop-Display_v11-92x87.jpg\";s:5:\"width\";i:92;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:38:\"Photo-Booth_Prop-Display_v11-41x39.jpg\";s:5:\"width\";i:41;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:40:\"Photo-Booth_Prop-Display_v11-164x155.jpg\";s:5:\"width\";i:164;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:40:\"Photo-Booth_Prop-Display_v11-847x800.jpg\";s:5:\"width\";i:847;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("75", "219", "_wp_attached_file", "2013/05/Photo-Booth_Butterfly-guest-book_v11.jpg");
INSERT INTO `wp_postmeta` VALUES("76", "219", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1861;s:6:\"height\";i:1626;s:4:\"file\";s:48:\"2013/05/Photo-Booth_Butterfly-guest-book_v11.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Photo-Booth_Butterfly-guest-book_v11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Photo-Booth_Butterfly-guest-book_v11-300x262.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Photo-Booth_Butterfly-guest-book_v11-1024x895.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:895;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:47:\"Photo-Booth_Butterfly-guest-book_v11-100x87.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:46:\"Photo-Booth_Butterfly-guest-book_v11-45x39.jpg\";s:5:\"width\";i:45;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:48:\"Photo-Booth_Butterfly-guest-book_v11-177x155.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:48:\"Photo-Booth_Butterfly-guest-book_v11-916x800.jpg\";s:5:\"width\";i:916;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("77", "220", "_wp_attached_file", "2013/05/Photo-Booth_Bird-Guestbook_v11.jpg");
INSERT INTO `wp_postmeta` VALUES("78", "220", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2032;s:6:\"height\";i:1560;s:4:\"file\";s:42:\"2013/05/Photo-Booth_Bird-Guestbook_v11.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Photo-Booth_Bird-Guestbook_v11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Photo-Booth_Bird-Guestbook_v11-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Photo-Booth_Bird-Guestbook_v11-1024x786.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:786;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:41:\"Photo-Booth_Bird-Guestbook_v11-113x87.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:40:\"Photo-Booth_Bird-Guestbook_v11-51x39.jpg\";s:5:\"width\";i:51;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:42:\"Photo-Booth_Bird-Guestbook_v11-202x155.jpg\";s:5:\"width\";i:202;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:43:\"Photo-Booth_Bird-Guestbook_v11-1042x800.jpg\";s:5:\"width\";i:1042;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("79", "221", "_wp_attached_file", "2013/05/Photo-Booth_Heart-Guestbook_v11.jpg");
INSERT INTO `wp_postmeta` VALUES("80", "221", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2122;s:6:\"height\";i:1590;s:4:\"file\";s:43:\"2013/05/Photo-Booth_Heart-Guestbook_v11.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Photo-Booth_Heart-Guestbook_v11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Photo-Booth_Heart-Guestbook_v11-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Photo-Booth_Heart-Guestbook_v11-1024x767.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:42:\"Photo-Booth_Heart-Guestbook_v11-116x87.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:41:\"Photo-Booth_Heart-Guestbook_v11-52x39.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:43:\"Photo-Booth_Heart-Guestbook_v11-207x155.jpg\";s:5:\"width\";i:207;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:44:\"Photo-Booth_Heart-Guestbook_v11-1068x800.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("81", "222", "_wp_attached_file", "2013/05/Photo-Booth_Guest-Books-All_v11.jpg");
INSERT INTO `wp_postmeta` VALUES("82", "222", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2478;s:6:\"height\";i:1329;s:4:\"file\";s:43:\"2013/05/Photo-Booth_Guest-Books-All_v11.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Photo-Booth_Guest-Books-All_v11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Photo-Booth_Guest-Books-All_v11-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Photo-Booth_Guest-Books-All_v11-1024x549.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:42:\"Photo-Booth_Guest-Books-All_v11-150x80.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:41:\"Photo-Booth_Guest-Books-All_v11-67x36.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:43:\"Photo-Booth_Guest-Books-All_v11-289x155.jpg\";s:5:\"width\";i:289;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:44:\"Photo-Booth_Guest-Books-All_v11-1170x627.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("83", "251", "_wp_attached_file", "2013/06/IMG_0049.jpg");
INSERT INTO `wp_postmeta` VALUES("84", "251", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:648;s:6:\"height\";i:432;s:4:\"file\";s:20:\"2013/06/IMG_0049.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0049-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0049-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0049-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0049-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0049-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("85", "252", "_wp_attached_file", "2013/06/IMG_0082.jpg");
INSERT INTO `wp_postmeta` VALUES("86", "252", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:648;s:6:\"height\";i:432;s:4:\"file\";s:20:\"2013/06/IMG_0082.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0082-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0082-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0082-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0082-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0082-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("87", "253", "_wp_attached_file", "2013/06/IMG_0136.jpg");
INSERT INTO `wp_postmeta` VALUES("88", "253", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:648;s:6:\"height\";i:432;s:4:\"file\";s:20:\"2013/06/IMG_0136.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0136-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0136-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0136-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0136-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0136-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("89", "255", "_wp_attached_file", "2013/06/IMG_0114.jpg");
INSERT INTO `wp_postmeta` VALUES("90", "255", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:648;s:6:\"height\";i:432;s:4:\"file\";s:20:\"2013/06/IMG_0114.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0114-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0114-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0114-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0114-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0114-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("91", "316", "_wp_attached_file", "2013/07/130623_153348.jpg");
INSERT INTO `wp_postmeta` VALUES("92", "316", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:615;s:6:\"height\";i:1820;s:4:\"file\";s:25:\"2013/07/130623_153348.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130623_153348-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130623_153348-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"130623_153348-346x1024.jpg\";s:5:\"width\";i:346;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130623_153348-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130623_153348-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130623_153348-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130623_153348-270x800.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372001663;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("93", "429", "_wp_attached_file", "2013/07/Hold-All-Bag_Navy.jpg");
INSERT INTO `wp_postmeta` VALUES("94", "429", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:862;s:4:\"file\";s:29:\"2013/07/Hold-All-Bag_Navy.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Hold-All-Bag_Navy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Hold-All-Bag_Navy-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Hold-All-Bag_Navy-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:28:\"Hold-All-Bag_Navy-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:27:\"Hold-All-Bag_Navy-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:29:\"Hold-All-Bag_Navy-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:30:\"Hold-All-Bag_Navy-1170x778.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:778;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("95", "430", "_wp_attached_file", "2013/07/Hold-All-Bag-Complete_Navy.jpg");
INSERT INTO `wp_postmeta` VALUES("96", "430", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:862;s:4:\"file\";s:38:\"2013/07/Hold-All-Bag-Complete_Navy.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Hold-All-Bag-Complete_Navy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Hold-All-Bag-Complete_Navy-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Hold-All-Bag-Complete_Navy-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:37:\"Hold-All-Bag-Complete_Navy-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:36:\"Hold-All-Bag-Complete_Navy-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:38:\"Hold-All-Bag-Complete_Navy-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:39:\"Hold-All-Bag-Complete_Navy-1170x778.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:778;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("97", "431", "_wp_attached_file", "2013/07/Hold-All-Bag_Jade.jpg");
INSERT INTO `wp_postmeta` VALUES("98", "431", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:862;s:4:\"file\";s:29:\"2013/07/Hold-All-Bag_Jade.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Hold-All-Bag_Jade-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Hold-All-Bag_Jade-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Hold-All-Bag_Jade-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:28:\"Hold-All-Bag_Jade-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:27:\"Hold-All-Bag_Jade-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:29:\"Hold-All-Bag_Jade-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:30:\"Hold-All-Bag_Jade-1170x778.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:778;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("99", "432", "_wp_attached_file", "2013/07/Hold-All-Bag-Complete_Jade.jpg");
INSERT INTO `wp_postmeta` VALUES("100", "432", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:862;s:4:\"file\";s:38:\"2013/07/Hold-All-Bag-Complete_Jade.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Hold-All-Bag-Complete_Jade-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Hold-All-Bag-Complete_Jade-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Hold-All-Bag-Complete_Jade-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:37:\"Hold-All-Bag-Complete_Jade-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:36:\"Hold-All-Bag-Complete_Jade-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:38:\"Hold-All-Bag-Complete_Jade-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:39:\"Hold-All-Bag-Complete_Jade-1170x778.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:778;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("101", "433", "_wp_attached_file", "2013/07/Dressing-Gown.jpg");
INSERT INTO `wp_postmeta` VALUES("102", "433", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:862;s:6:\"height\";i:1296;s:4:\"file\";s:25:\"2013/07/Dressing-Gown.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Dressing-Gown-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Dressing-Gown-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Dressing-Gown-681x1024.jpg\";s:5:\"width\";i:681;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"Dressing-Gown-58x87.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"Dressing-Gown-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"Dressing-Gown-103x155.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"Dressing-Gown-532x800.jpg\";s:5:\"width\";i:532;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("103", "437", "_wp_attached_file", "2013/07/Logo.jpg");
INSERT INTO `wp_postmeta` VALUES("104", "437", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1061;s:6:\"height\";i:378;s:4:\"file\";s:16:\"2013/07/Logo.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"Logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"Logo-300x107.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"Logo-1024x365.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:15:\"Logo-150x53.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:53;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:14:\"Logo-67x24.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:24;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:16:\"Logo-366x130.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:16:\"Option 1_smaller\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("105", "438", "_wp_attached_file", "2013/06/Wedding-Survival-Kit_Front.jpg");
INSERT INTO `wp_postmeta` VALUES("106", "438", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1091;s:6:\"height\";i:995;s:4:\"file\";s:38:\"2013/06/Wedding-Survival-Kit_Front.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Wedding-Survival-Kit_Front-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Wedding-Survival-Kit_Front-300x274.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Wedding-Survival-Kit_Front-1024x934.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:934;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Front-95x87.jpg\";s:5:\"width\";i:95;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Front-43x39.jpg\";s:5:\"width\";i:43;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:38:\"Wedding-Survival-Kit_Front-170x155.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:38:\"Wedding-Survival-Kit_Front-877x800.jpg\";s:5:\"width\";i:877;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("107", "438", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("108", "454", "_wp_attached_file", "2013/07/130623_1533481.jpg");
INSERT INTO `wp_postmeta` VALUES("109", "454", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:308;s:6:\"height\";i:910;s:4:\"file\";s:26:\"2013/07/130623_1533481.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"130623_1533481-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"130623_1533481-102x300.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:24:\"130623_1533481-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:24:\"130623_1533481-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"130623_1533481-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:26:\"130623_1533481-271x800.jpg\";s:5:\"width\";i:271;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372001663;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("110", "455", "_wp_attached_file", "2013/07/130623_153746.jpg");
INSERT INTO `wp_postmeta` VALUES("111", "455", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:308;s:6:\"height\";i:910;s:4:\"file\";s:25:\"2013/07/130623_153746.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130623_153746-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130623_153746-102x300.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130623_153746-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130623_153746-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130623_153746-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130623_153746-271x800.jpg\";s:5:\"width\";i:271;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372001900;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("112", "456", "_wp_attached_file", "2013/07/130623_154142.jpg");
INSERT INTO `wp_postmeta` VALUES("113", "456", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:306;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/07/130623_154142.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130623_154142-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130623_154142-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130623_154142-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130623_154142-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130623_154142-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130623_154142-268x800.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372002136;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("114", "457", "_wp_attached_file", "2013/07/130623_154514.jpg");
INSERT INTO `wp_postmeta` VALUES("115", "457", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:307;s:6:\"height\";i:911;s:4:\"file\";s:25:\"2013/07/130623_154514.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130623_154514-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130623_154514-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130623_154514-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130623_154514-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130623_154514-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130623_154514-270x800.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372002348;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("116", "458", "_wp_attached_file", "2013/07/130623_154750.jpg");
INSERT INTO `wp_postmeta` VALUES("117", "458", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:306;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/07/130623_154750.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130623_154750-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130623_154750-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130623_154750-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130623_154750-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130623_154750-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130623_154750-268x800.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372002504;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("118", "459", "_wp_attached_file", "2013/07/130623_155319.jpg");
INSERT INTO `wp_postmeta` VALUES("119", "459", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:306;s:6:\"height\";i:910;s:4:\"file\";s:25:\"2013/07/130623_155319.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130623_155319-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130623_155319-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130623_155319-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130623_155319-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130623_155319-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130623_155319-269x800.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372002834;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("120", "460", "_wp_attached_file", "2013/07/130623_155953.jpg");
INSERT INTO `wp_postmeta` VALUES("121", "460", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:305;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/07/130623_155953.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130623_155953-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130623_155953-100x300.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130623_155953-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130623_155953-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130623_155953-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130623_155953-268x800.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372003228;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("122", "461", "_wp_attached_file", "2013/07/130623_160335.jpg");
INSERT INTO `wp_postmeta` VALUES("123", "461", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:306;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/07/130623_160335.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130623_160335-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130623_160335-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130623_160335-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130623_160335-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130623_160335-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130623_160335-268x800.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372003449;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("124", "462", "_wp_attached_file", "2013/07/130623_160447.jpg");
INSERT INTO `wp_postmeta` VALUES("125", "462", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:305;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/07/130623_160447.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130623_160447-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130623_160447-100x300.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130623_160447-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130623_160447-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130623_160447-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130623_160447-268x800.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372003521;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("126", "463", "_wp_attached_file", "2013/07/130623_160729.jpg");
INSERT INTO `wp_postmeta` VALUES("127", "463", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:305;s:6:\"height\";i:910;s:4:\"file\";s:25:\"2013/07/130623_160729.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130623_160729-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130623_160729-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130623_160729-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130623_160729-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130623_160729-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130623_160729-268x800.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372003683;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("128", "464", "_wp_attached_file", "2013/07/130623_161954.jpg");
INSERT INTO `wp_postmeta` VALUES("129", "464", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:306;s:6:\"height\";i:910;s:4:\"file\";s:25:\"2013/07/130623_161954.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130623_161954-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130623_161954-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130623_161954-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130623_161954-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130623_161954-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130623_161954-269x800.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372004428;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("130", "465", "_wp_attached_file", "2013/07/130623_162101.jpg");
INSERT INTO `wp_postmeta` VALUES("131", "465", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:307;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/07/130623_162101.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130623_162101-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130623_162101-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130623_162101-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130623_162101-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130623_162101-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130623_162101-269x800.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372004495;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("132", "466", "_wp_attached_file", "2013/07/IMG_0021.jpg");
INSERT INTO `wp_postmeta` VALUES("133", "466", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:20:\"2013/07/IMG_0021.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0021-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0021-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0021-150x84.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0021-67x39.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0021-276x155.jpg\";s:5:\"width\";i:276;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:21:\"IMG_0021-1170x657.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("134", "469", "_wp_attached_file", "2013/08/130629_212957.jpg");
INSERT INTO `wp_postmeta` VALUES("135", "469", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:305;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130629_212957.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130629_212957-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130629_212957-100x300.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130629_212957-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130629_212957-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130629_212957-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130629_212957-268x800.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372541421;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("136", "470", "_wp_attached_file", "2013/08/130629_213043.jpg");
INSERT INTO `wp_postmeta` VALUES("137", "470", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:305;s:6:\"height\";i:911;s:4:\"file\";s:25:\"2013/08/130629_213043.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130629_213043-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130629_213043-100x300.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130629_213043-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130629_213043-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130629_213043-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130629_213043-268x800.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372541466;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("138", "471", "_wp_attached_file", "2013/08/130629_213159.jpg");
INSERT INTO `wp_postmeta` VALUES("139", "471", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:307;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130629_213159.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130629_213159-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130629_213159-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130629_213159-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130629_213159-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130629_213159-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130629_213159-269x800.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372541543;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("140", "472", "_wp_attached_file", "2013/08/130629_214207.jpg");
INSERT INTO `wp_postmeta` VALUES("141", "472", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:305;s:6:\"height\";i:911;s:4:\"file\";s:25:\"2013/08/130629_214207.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130629_214207-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130629_214207-100x300.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130629_214207-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130629_214207-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130629_214207-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130629_214207-268x800.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372542150;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("142", "473", "_wp_attached_file", "2013/08/130629_220512.jpg");
INSERT INTO `wp_postmeta` VALUES("143", "473", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:304;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130629_220512.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130629_220512-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130629_220512-100x300.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130629_220512-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130629_220512-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130629_220512-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130629_220512-267x800.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372543536;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("144", "474", "_wp_attached_file", "2013/08/130629_220658.jpg");
INSERT INTO `wp_postmeta` VALUES("145", "474", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:307;s:6:\"height\";i:907;s:4:\"file\";s:25:\"2013/08/130629_220658.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130629_220658-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130629_220658-102x300.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130629_220658-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130629_220658-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130629_220658-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130629_220658-271x800.jpg\";s:5:\"width\";i:271;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372543642;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("146", "475", "_wp_attached_file", "2013/08/130629_220948.jpg");
INSERT INTO `wp_postmeta` VALUES("147", "475", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:305;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130629_220948.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130629_220948-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130629_220948-100x300.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130629_220948-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130629_220948-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130629_220948-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130629_220948-268x800.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372543811;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("148", "476", "_wp_attached_file", "2013/08/130629_221034.jpg");
INSERT INTO `wp_postmeta` VALUES("149", "476", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:306;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130629_221034.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130629_221034-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130629_221034-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130629_221034-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130629_221034-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130629_221034-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130629_221034-268x800.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372543858;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("150", "477", "_wp_attached_file", "2013/08/130629_222237.jpg");
INSERT INTO `wp_postmeta` VALUES("151", "477", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:306;s:6:\"height\";i:911;s:4:\"file\";s:25:\"2013/08/130629_222237.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130629_222237-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130629_222237-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130629_222237-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130629_222237-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130629_222237-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130629_222237-269x800.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372544581;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("152", "478", "_wp_attached_file", "2013/08/130629_223145.jpg");
INSERT INTO `wp_postmeta` VALUES("153", "478", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:306;s:6:\"height\";i:911;s:4:\"file\";s:25:\"2013/08/130629_223145.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130629_223145-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130629_223145-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130629_223145-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130629_223145-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130629_223145-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130629_223145-269x800.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372545129;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("154", "479", "_wp_attached_file", "2013/08/130629_223243.jpg");
INSERT INTO `wp_postmeta` VALUES("155", "479", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:309;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130629_223243.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130629_223243-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130629_223243-102x300.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130629_223243-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130629_223243-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130629_223243-53x155.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130629_223243-271x800.jpg\";s:5:\"width\";i:271;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372545186;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("156", "480", "_wp_attached_file", "2013/08/130629_224000.jpg");
INSERT INTO `wp_postmeta` VALUES("157", "480", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:307;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130629_224000.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130629_224000-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130629_224000-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130629_224000-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130629_224000-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130629_224000-52x155.jpg\";s:5:\"width\";i:52;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130629_224000-269x800.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1372545623;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("158", "481", "_wp_attached_file", "2013/08/130629_224234.jpg");
INSERT INTO `wp_postmeta` VALUES("159", "481", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:616;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130629_224234.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130629_224234-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130629_224234-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130629_224234-59x87.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130629_224234-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"130629_224234-105x155.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130629_224234-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("160", "485", "_wp_attached_file", "2013/08/130706_183926.jpg");
INSERT INTO `wp_postmeta` VALUES("161", "485", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:296;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130706_183926.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130706_183926-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"130706_183926-97x300.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130706_183926-28x87.jpg\";s:5:\"width\";i:28;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130706_183926-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130706_183926-50x155.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130706_183926-260x800.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1373135988;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("162", "486", "_wp_attached_file", "2013/08/130706_184111.jpg");
INSERT INTO `wp_postmeta` VALUES("163", "486", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:299;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130706_184111.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130706_184111-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"130706_184111-98x300.jpg\";s:5:\"width\";i:98;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130706_184111-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130706_184111-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130706_184111-51x155.jpg\";s:5:\"width\";i:51;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130706_184111-262x800.jpg\";s:5:\"width\";i:262;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1373136093;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("164", "487", "_wp_attached_file", "2013/08/130706_185041.jpg");
INSERT INTO `wp_postmeta` VALUES("165", "487", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:911;s:4:\"file\";s:25:\"2013/08/130706_185041.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130706_185041-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"130706_185041-99x300.jpg\";s:5:\"width\";i:99;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130706_185041-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130706_185041-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130706_185041-51x155.jpg\";s:5:\"width\";i:51;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130706_185041-263x800.jpg\";s:5:\"width\";i:263;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1373136663;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("166", "488", "_wp_attached_file", "2013/08/130706_190608.jpg");
INSERT INTO `wp_postmeta` VALUES("167", "488", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:298;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130706_190608.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130706_190608-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"130706_190608-98x300.jpg\";s:5:\"width\";i:98;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130706_190608-28x87.jpg\";s:5:\"width\";i:28;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130706_190608-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130706_190608-51x155.jpg\";s:5:\"width\";i:51;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130706_190608-261x800.jpg\";s:5:\"width\";i:261;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1373137593;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("168", "489", "_wp_attached_file", "2013/08/130706_193218.jpg");
INSERT INTO `wp_postmeta` VALUES("169", "489", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:299;s:6:\"height\";i:911;s:4:\"file\";s:25:\"2013/08/130706_193218.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130706_193218-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"130706_193218-98x300.jpg\";s:5:\"width\";i:98;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130706_193218-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130706_193218-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130706_193218-51x155.jpg\";s:5:\"width\";i:51;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130706_193218-263x800.jpg\";s:5:\"width\";i:263;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1373139162;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("170", "490", "_wp_attached_file", "2013/08/130706_195329.jpg");
INSERT INTO `wp_postmeta` VALUES("171", "490", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:301;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130706_195329.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130706_195329-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"130706_195329-99x300.jpg\";s:5:\"width\";i:99;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130706_195329-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130706_195329-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130706_195329-51x155.jpg\";s:5:\"width\";i:51;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130706_195329-264x800.jpg\";s:5:\"width\";i:264;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1373140434;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("172", "491", "_wp_attached_file", "2013/08/130706_203419.jpg");
INSERT INTO `wp_postmeta` VALUES("173", "491", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130706_203419.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130706_203419-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"130706_203419-99x300.jpg\";s:5:\"width\";i:99;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130706_203419-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130706_203419-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130706_203419-51x155.jpg\";s:5:\"width\";i:51;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130706_203419-263x800.jpg\";s:5:\"width\";i:263;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1373142884;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("174", "492", "_wp_attached_file", "2013/08/130706_203934.jpg");
INSERT INTO `wp_postmeta` VALUES("175", "492", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:301;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130706_203934.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130706_203934-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"130706_203934-99x300.jpg\";s:5:\"width\";i:99;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130706_203934-29x87.jpg\";s:5:\"width\";i:29;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130706_203934-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130706_203934-51x155.jpg\";s:5:\"width\";i:51;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130706_203934-264x800.jpg\";s:5:\"width\";i:264;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1373143199;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("176", "493", "_wp_attached_file", "2013/08/130706_205542.jpg");
INSERT INTO `wp_postmeta` VALUES("177", "493", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:295;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130706_205542.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130706_205542-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"130706_205542-97x300.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130706_205542-28x87.jpg\";s:5:\"width\";i:28;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130706_205542-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130706_205542-50x155.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130706_205542-259x800.jpg\";s:5:\"width\";i:259;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1373144166;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("178", "494", "_wp_attached_file", "2013/08/130706_210745.jpg");
INSERT INTO `wp_postmeta` VALUES("179", "494", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:296;s:6:\"height\";i:910;s:4:\"file\";s:25:\"2013/08/130706_210745.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130706_210745-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"130706_210745-98x300.jpg\";s:5:\"width\";i:98;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130706_210745-28x87.jpg\";s:5:\"width\";i:28;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130706_210745-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130706_210745-50x155.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130706_210745-260x800.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1373144889;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("180", "495", "_wp_attached_file", "2013/08/130706_212526.jpg");
INSERT INTO `wp_postmeta` VALUES("181", "495", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:297;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130706_212526.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130706_212526-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"130706_212526-98x300.jpg\";s:5:\"width\";i:98;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130706_212526-28x87.jpg\";s:5:\"width\";i:28;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130706_212526-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130706_212526-50x155.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130706_212526-261x800.jpg\";s:5:\"width\";i:261;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1373145951;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("182", "497", "_wp_attached_file", "2013/08/IMG_0022.jpg");
INSERT INTO `wp_postmeta` VALUES("183", "497", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1944;s:6:\"height\";i:1296;s:4:\"file\";s:20:\"2013/08/IMG_0022.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0022-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0022-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0022-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0022-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0022-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0022-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:21:\"IMG_0022-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("184", "510", "_wp_attached_file", "2013/05/Option-1.jpg");
INSERT INTO `wp_postmeta` VALUES("185", "510", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:591;s:6:\"height\";i:173;s:4:\"file\";s:20:\"2013/05/Option-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Option-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Option-1-300x88.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"Option-1-150x44.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"Option-1-67x20.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"Option-1-366x107.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:8:\"Option 1\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("186", "511", "_wp_attached_file", "2013/08/Website-banner_v6.jpg");
INSERT INTO `wp_postmeta` VALUES("187", "511", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3780;s:6:\"height\";i:834;s:4:\"file\";s:29:\"2013/08/Website-banner_v6.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Website-banner_v6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Website-banner_v6-300x66.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Website-banner_v6-1024x226.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:28:\"Website-banner_v6-150x33.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:33;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:27:\"Website-banner_v6-67x15.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:15;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:28:\"Website-banner_v6-366x81.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:81;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:30:\"Website-banner_v6-1170x258.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("188", "513", "_wp_attached_file", "2013/08/IMG_0157.jpg");
INSERT INTO `wp_postmeta` VALUES("189", "513", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1162;s:6:\"height\";i:863;s:4:\"file\";s:20:\"2013/08/IMG_0157.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0157-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0157-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0157-1024x761.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:761;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0157-117x87.jpg\";s:5:\"width\";i:117;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0157-53x39.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0157-209x155.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:21:\"IMG_0157-1077x800.jpg\";s:5:\"width\";i:1077;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("190", "516", "_wp_attached_file", "2013/08/IMG_0021.jpg");
INSERT INTO `wp_postmeta` VALUES("191", "516", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:864;s:4:\"file\";s:20:\"2013/08/IMG_0021.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0021-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0021-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0021-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0021-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0021-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:21:\"IMG_0021-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("192", "517", "_wp_attached_file", "2013/08/IMG_0032.jpg");
INSERT INTO `wp_postmeta` VALUES("193", "517", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:864;s:4:\"file\";s:20:\"2013/08/IMG_0032.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0032-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0032-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0032-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0032-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0032-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0032-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:21:\"IMG_0032-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("194", "519", "_wp_attached_file", "2013/08/IMG_0069.jpg");
INSERT INTO `wp_postmeta` VALUES("195", "519", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:864;s:4:\"file\";s:20:\"2013/08/IMG_0069.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0069-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0069-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0069-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0069-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0069-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0069-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:21:\"IMG_0069-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("196", "520", "_wp_attached_file", "2013/08/IMG_0124.jpg");
INSERT INTO `wp_postmeta` VALUES("197", "520", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:864;s:4:\"file\";s:20:\"2013/08/IMG_0124.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0124-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0124-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0124-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0124-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0124-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0124-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:21:\"IMG_0124-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("198", "521", "_wp_attached_file", "2013/08/IMG_0159.jpg");
INSERT INTO `wp_postmeta` VALUES("199", "521", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:864;s:4:\"file\";s:20:\"2013/08/IMG_0159.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0159-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0159-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0159-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0159-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0159-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0159-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:21:\"IMG_0159-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("200", "522", "_wp_attached_file", "2013/08/IMG_0171.jpg");
INSERT INTO `wp_postmeta` VALUES("201", "522", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:864;s:4:\"file\";s:20:\"2013/08/IMG_0171.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0171-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0171-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0171-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0171-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0171-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0171-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:21:\"IMG_0171-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("202", "526", "_wp_attached_file", "2013/08/130803_153624.jpg");
INSERT INTO `wp_postmeta` VALUES("203", "526", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:616;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130803_153624.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130803_153624-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130803_153624-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130803_153624-59x87.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130803_153624-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"130803_153624-105x155.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130803_153624-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("204", "527", "_wp_attached_file", "2013/08/130803_153937.jpg");
INSERT INTO `wp_postmeta` VALUES("205", "527", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:616;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130803_153937.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130803_153937-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130803_153937-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130803_153937-59x87.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130803_153937-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"130803_153937-105x155.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130803_153937-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("206", "528", "_wp_attached_file", "2013/08/130803_161949.jpg");
INSERT INTO `wp_postmeta` VALUES("207", "528", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:616;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130803_161949.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130803_161949-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130803_161949-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130803_161949-59x87.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130803_161949-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"130803_161949-105x155.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130803_161949-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("208", "529", "_wp_attached_file", "2013/08/130803_162149.jpg");
INSERT INTO `wp_postmeta` VALUES("209", "529", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:616;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130803_162149.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130803_162149-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130803_162149-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130803_162149-59x87.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130803_162149-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"130803_162149-105x155.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130803_162149-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("210", "530", "_wp_attached_file", "2013/08/130803_162438.jpg");
INSERT INTO `wp_postmeta` VALUES("211", "530", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:616;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130803_162438.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130803_162438-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130803_162438-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130803_162438-59x87.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130803_162438-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"130803_162438-105x155.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130803_162438-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("212", "531", "_wp_attached_file", "2013/08/130803_163247.jpg");
INSERT INTO `wp_postmeta` VALUES("213", "531", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:616;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130803_163247.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130803_163247-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130803_163247-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130803_163247-59x87.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130803_163247-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"130803_163247-105x155.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130803_163247-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("214", "532", "_wp_attached_file", "2013/08/130803_171756.jpg");
INSERT INTO `wp_postmeta` VALUES("215", "532", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:616;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130803_171756.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130803_171756-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130803_171756-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130803_171756-59x87.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130803_171756-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"130803_171756-105x155.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130803_171756-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("216", "533", "_wp_attached_file", "2013/08/130803_173558.jpg");
INSERT INTO `wp_postmeta` VALUES("217", "533", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:616;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130803_173558.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130803_173558-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130803_173558-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130803_173558-59x87.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130803_173558-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"130803_173558-105x155.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130803_173558-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("218", "534", "_wp_attached_file", "2013/08/130803_173934.jpg");
INSERT INTO `wp_postmeta` VALUES("219", "534", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:616;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130803_173934.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130803_173934-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130803_173934-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130803_173934-59x87.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130803_173934-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"130803_173934-105x155.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130803_173934-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("220", "535", "_wp_attached_file", "2013/08/130803_174433.jpg");
INSERT INTO `wp_postmeta` VALUES("221", "535", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:616;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130803_174433.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130803_174433-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130803_174433-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130803_174433-59x87.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130803_174433-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"130803_174433-105x155.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130803_174433-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("222", "536", "_wp_attached_file", "2013/08/130803_182924.jpg");
INSERT INTO `wp_postmeta` VALUES("223", "536", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:616;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130803_182924.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130803_182924-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130803_182924-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130803_182924-59x87.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130803_182924-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"130803_182924-105x155.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130803_182924-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("224", "537", "_wp_attached_file", "2013/08/130803_183330.jpg");
INSERT INTO `wp_postmeta` VALUES("225", "537", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:616;s:6:\"height\";i:912;s:4:\"file\";s:25:\"2013/08/130803_183330.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130803_183330-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130803_183330-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130803_183330-59x87.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130803_183330-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:25:\"130803_183330-105x155.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130803_183330-540x800.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("226", "538", "_wp_attached_file", "2013/08/IMG_0111.jpg");
INSERT INTO `wp_postmeta` VALUES("227", "538", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1458;s:6:\"height\";i:972;s:4:\"file\";s:20:\"2013/08/IMG_0111.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0111-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0111-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0111-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0111-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0111-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0111-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:21:\"IMG_0111-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("228", "600", "_wp_attached_file", "2013/08/Web1.jpg");
INSERT INTO `wp_postmeta` VALUES("229", "600", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:4961;s:6:\"height\";i:1417;s:4:\"file\";s:16:\"2013/08/Web1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"Web1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"Web1-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"Web1-1024x292.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:15:\"Web1-150x43.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:43;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:14:\"Web1-67x19.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:19;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:16:\"Web1-366x105.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:105;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:17:\"Web1-1170x334.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("230", "600", "_wp_attachment_image_alt", "ChequerBox Solutions Boxed");
INSERT INTO `wp_postmeta` VALUES("231", "603", "_wp_attached_file", "2013/06/Vending-Machine-Banner1.jpg");
INSERT INTO `wp_postmeta` VALUES("232", "603", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:445;s:4:\"file\";s:35:\"2013/06/Vending-Machine-Banner1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Vending-Machine-Banner1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Vending-Machine-Banner1-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Vending-Machine-Banner1-1024x351.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:351;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:34:\"Vending-Machine-Banner1-150x51.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:51;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:33:\"Vending-Machine-Banner1-67x23.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:23;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:35:\"Vending-Machine-Banner1-366x125.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:36:\"Vending-Machine-Banner1-1170x401.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("233", "606", "_wp_attached_file", "2013/08/Signature1.jpg");
INSERT INTO `wp_postmeta` VALUES("234", "606", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1326;s:6:\"height\";i:472;s:4:\"file\";s:22:\"2013/08/Signature1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Signature1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Signature1-300x107.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Signature1-1024x365.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:21:\"Signature1-150x53.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:53;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:20:\"Signature1-67x24.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:24;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:22:\"Signature1-366x130.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:23:\"Signature1-1170x416.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:16:\"Option 1_smaller\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("235", "621", "_wp_attached_file", "2013/08/Baby-Medi-Aid_Trade-Presenter.jpg");
INSERT INTO `wp_postmeta` VALUES("236", "621", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1819;s:6:\"height\";i:2551;s:4:\"file\";s:41:\"2013/08/Baby-Medi-Aid_Trade-Presenter.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Baby-Medi-Aid_Trade-Presenter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Baby-Medi-Aid_Trade-Presenter-214x300.jpg\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Baby-Medi-Aid_Trade-Presenter-730x1024.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:39:\"Baby-Medi-Aid_Trade-Presenter-62x87.jpg\";s:5:\"width\";i:62;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:39:\"Baby-Medi-Aid_Trade-Presenter-28x39.jpg\";s:5:\"width\";i:28;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:41:\"Baby-Medi-Aid_Trade-Presenter-111x155.jpg\";s:5:\"width\";i:111;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:41:\"Baby-Medi-Aid_Trade-Presenter-570x800.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("237", "623", "_wp_attached_file", "2013/08/Baby-Medi-Aid-Logo.jpg");
INSERT INTO `wp_postmeta` VALUES("238", "623", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1168;s:6:\"height\";i:556;s:4:\"file\";s:30:\"2013/08/Baby-Medi-Aid-Logo.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Baby-Medi-Aid-Logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Baby-Medi-Aid-Logo-300x143.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Baby-Medi-Aid-Logo-1024x487.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:487;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:29:\"Baby-Medi-Aid-Logo-150x71.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:71;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:28:\"Baby-Medi-Aid-Logo-67x32.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:30:\"Baby-Medi-Aid-Logo-326x155.jpg\";s:5:\"width\";i:326;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("239", "623", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("240", "623", "_wp_attachment_image_alt", "medi kit for babies");
INSERT INTO `wp_postmeta` VALUES("241", "630", "_wp_attached_file", "2013/08/BOBBIYO-BABY-STEPS-MAY-2013-v3-2-1.jpg");
INSERT INTO `wp_postmeta` VALUES("242", "630", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2329;s:6:\"height\";i:1510;s:4:\"file\";s:46:\"2013/08/BOBBIYO-BABY-STEPS-MAY-2013-v3-2-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"BOBBIYO-BABY-STEPS-MAY-2013-v3-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"BOBBIYO-BABY-STEPS-MAY-2013-v3-2-1-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"BOBBIYO-BABY-STEPS-MAY-2013-v3-2-1-1024x664.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:45:\"BOBBIYO-BABY-STEPS-MAY-2013-v3-2-1-134x87.jpg\";s:5:\"width\";i:134;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:44:\"BOBBIYO-BABY-STEPS-MAY-2013-v3-2-1-60x39.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:46:\"BOBBIYO-BABY-STEPS-MAY-2013-v3-2-1-239x155.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:47:\"BOBBIYO-BABY-STEPS-MAY-2013-v3-2-1-1170x759.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:759;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:32:\"BOBBIYO BABY STEPS MAY 2013.indd\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("243", "635", "_wp_attached_file", "2013/08/49.jpg");
INSERT INTO `wp_postmeta` VALUES("244", "635", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:967;s:6:\"height\";i:645;s:4:\"file\";s:14:\"2013/08/49.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"49-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"49-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:13:\"49-130x87.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:12:\"49-58x39.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:14:\"49-232x155.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("245", "643", "_wp_attached_file", "2013/09/85.jpg");
INSERT INTO `wp_postmeta` VALUES("246", "643", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1756;s:6:\"height\";i:1171;s:4:\"file\";s:14:\"2013/09/85.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"85-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"85-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"85-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:13:\"85-130x87.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:12:\"85-58x39.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:14:\"85-232x155.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:15:\"85-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("247", "643", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("248", "643", "_wp_attachment_image_alt", "");
INSERT INTO `wp_postmeta` VALUES("249", "644", "_wp_attached_file", "2013/09/86.jpg");
INSERT INTO `wp_postmeta` VALUES("250", "644", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1632;s:6:\"height\";i:1088;s:4:\"file\";s:14:\"2013/09/86.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"86-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"86-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"86-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:13:\"86-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:12:\"86-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:14:\"86-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:15:\"86-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("251", "644", "_wp_attachment_image_alt", "");
INSERT INTO `wp_postmeta` VALUES("252", "646", "_wp_attached_file", "2013/09/87.jpg");
INSERT INTO `wp_postmeta` VALUES("253", "646", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1719;s:6:\"height\";i:1146;s:4:\"file\";s:14:\"2013/09/87.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"87-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"87-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"87-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:13:\"87-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:12:\"87-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:14:\"87-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:15:\"87-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("254", "646", "_wp_attachment_image_alt", "");
INSERT INTO `wp_postmeta` VALUES("255", "647", "_wp_attached_file", "2013/09/90.jpg");
INSERT INTO `wp_postmeta` VALUES("256", "647", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1584;s:6:\"height\";i:1056;s:4:\"file\";s:14:\"2013/09/90.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"90-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"90-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"90-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:13:\"90-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:12:\"90-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:14:\"90-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:15:\"90-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("257", "647", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("258", "647", "_wp_attachment_image_alt", "");
INSERT INTO `wp_postmeta` VALUES("259", "648", "_wp_attached_file", "2013/09/91.jpg");
INSERT INTO `wp_postmeta` VALUES("260", "648", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1802;s:6:\"height\";i:1201;s:4:\"file\";s:14:\"2013/09/91.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"91-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"91-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"91-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:13:\"91-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:12:\"91-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:14:\"91-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:15:\"91-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("261", "648", "_wp_attachment_image_alt", "");
INSERT INTO `wp_postmeta` VALUES("262", "648", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("263", "649", "_wp_attached_file", "2013/09/Ciara.jpg");
INSERT INTO `wp_postmeta` VALUES("264", "649", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:551;s:6:\"height\";i:468;s:4:\"file\";s:17:\"2013/09/Ciara.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Ciara-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Ciara-300x255.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:16:\"Ciara-102x87.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:15:\"Ciara-46x39.jpg\";s:5:\"width\";i:46;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:17:\"Ciara-182x155.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("265", "649", "_wp_attachment_image_alt", "");
INSERT INTO `wp_postmeta` VALUES("266", "649", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("267", "653", "_wp_attached_file", "2013/09/Jenam-Shopper-Bag-Polka-Dot.jpg");
INSERT INTO `wp_postmeta` VALUES("268", "653", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:701;s:6:\"height\";i:701;s:4:\"file\";s:39:\"2013/09/Jenam-Shopper-Bag-Polka-Dot.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Jenam-Shopper-Bag-Polka-Dot-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Jenam-Shopper-Bag-Polka-Dot-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:37:\"Jenam-Shopper-Bag-Polka-Dot-87x87.jpg\";s:5:\"width\";i:87;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:37:\"Jenam-Shopper-Bag-Polka-Dot-39x39.jpg\";s:5:\"width\";i:39;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:39:\"Jenam-Shopper-Bag-Polka-Dot-155x155.jpg\";s:5:\"width\";i:155;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("269", "681", "_wp_attached_file", "2013/09/Jenam-Shopper-Bag-Floral.jpg");
INSERT INTO `wp_postmeta` VALUES("270", "681", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:701;s:6:\"height\";i:701;s:4:\"file\";s:36:\"2013/09/Jenam-Shopper-Bag-Floral.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Jenam-Shopper-Bag-Floral-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Jenam-Shopper-Bag-Floral-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:34:\"Jenam-Shopper-Bag-Floral-87x87.jpg\";s:5:\"width\";i:87;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:34:\"Jenam-Shopper-Bag-Floral-39x39.jpg\";s:5:\"width\";i:39;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:36:\"Jenam-Shopper-Bag-Floral-155x155.jpg\";s:5:\"width\";i:155;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("271", "682", "_wp_attached_file", "2013/09/Jenam-Weekender-Bag.jpg");
INSERT INTO `wp_postmeta` VALUES("272", "682", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:701;s:6:\"height\";i:701;s:4:\"file\";s:31:\"2013/09/Jenam-Weekender-Bag.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Jenam-Weekender-Bag-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Jenam-Weekender-Bag-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:29:\"Jenam-Weekender-Bag-87x87.jpg\";s:5:\"width\";i:87;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:29:\"Jenam-Weekender-Bag-39x39.jpg\";s:5:\"width\";i:39;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:31:\"Jenam-Weekender-Bag-155x155.jpg\";s:5:\"width\";i:155;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("273", "683", "_wp_attached_file", "2013/09/Wedding-Kit_Hold-All-Bag-Jade_Front_v1.jpg");
INSERT INTO `wp_postmeta` VALUES("274", "683", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:992;s:6:\"height\";i:933;s:4:\"file\";s:50:\"2013/09/Wedding-Kit_Hold-All-Bag-Jade_Front_v1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag-Jade_Front_v1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag-Jade_Front_v1-300x282.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:48:\"Wedding-Kit_Hold-All-Bag-Jade_Front_v1-93x87.jpg\";s:5:\"width\";i:93;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:48:\"Wedding-Kit_Hold-All-Bag-Jade_Front_v1-41x39.jpg\";s:5:\"width\";i:41;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag-Jade_Front_v1-165x155.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag-Jade_Front_v1-851x800.jpg\";s:5:\"width\";i:851;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("275", "684", "_wp_attached_file", "2013/09/Wedding-Kit_Hold-All-Bag_Navy_Front_v1.jpg");
INSERT INTO `wp_postmeta` VALUES("276", "684", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1029;s:6:\"height\";i:862;s:4:\"file\";s:50:\"2013/09/Wedding-Kit_Hold-All-Bag_Navy_Front_v1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag_Navy_Front_v1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag_Navy_Front_v1-300x251.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Wedding-Kit_Hold-All-Bag_Navy_Front_v1-1024x858.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:858;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:49:\"Wedding-Kit_Hold-All-Bag_Navy_Front_v1-104x87.jpg\";s:5:\"width\";i:104;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:48:\"Wedding-Kit_Hold-All-Bag_Navy_Front_v1-47x39.jpg\";s:5:\"width\";i:47;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag_Navy_Front_v1-185x155.jpg\";s:5:\"width\";i:185;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:50:\"Wedding-Kit_Hold-All-Bag_Navy_Front_v1-955x800.jpg\";s:5:\"width\";i:955;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("277", "685", "_wp_attached_file", "2013/09/Baby-Aid-Bag_Front_v1.jpg");
INSERT INTO `wp_postmeta` VALUES("278", "685", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2080;s:6:\"height\";i:1701;s:4:\"file\";s:33:\"2013/09/Baby-Aid-Bag_Front_v1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Baby-Aid-Bag_Front_v1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Baby-Aid-Bag_Front_v1-300x245.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Baby-Aid-Bag_Front_v1-1024x837.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:837;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:32:\"Baby-Aid-Bag_Front_v1-106x87.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:31:\"Baby-Aid-Bag_Front_v1-48x39.jpg\";s:5:\"width\";i:48;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:33:\"Baby-Aid-Bag_Front_v1-190x155.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:33:\"Baby-Aid-Bag_Front_v1-978x800.jpg\";s:5:\"width\";i:978;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("279", "713", "_wp_attached_file", "2013/09/WebLogo.jpg");
INSERT INTO `wp_postmeta` VALUES("280", "713", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:591;s:6:\"height\";i:173;s:4:\"file\";s:19:\"2013/09/WebLogo.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"WebLogo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"WebLogo-300x88.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:18:\"WebLogo-150x44.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:17:\"WebLogo-67x20.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:19:\"WebLogo-366x107.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("281", "725", "_wp_attached_file", "2013/09/130914_190158.jpg");
INSERT INTO `wp_postmeta` VALUES("282", "725", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:453;s:6:\"height\";i:1332;s:4:\"file\";s:25:\"2013/09/130914_190158.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130914_190158-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130914_190158-102x300.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"130914_190158-348x1024.jpg\";s:5:\"width\";i:348;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130914_190158-30x87.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130914_190158-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130914_190158-53x155.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130914_190158-272x800.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("283", "726", "_wp_attached_file", "2013/09/130914_190414.jpg");
INSERT INTO `wp_postmeta` VALUES("284", "726", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:457;s:6:\"height\";i:1332;s:4:\"file\";s:25:\"2013/09/130914_190414.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130914_190414-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130914_190414-103x300.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"130914_190414-351x1024.jpg\";s:5:\"width\";i:351;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130914_190414-30x87.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130914_190414-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130914_190414-53x155.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130914_190414-274x800.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("285", "727", "_wp_attached_file", "2013/09/130914_191124.jpg");
INSERT INTO `wp_postmeta` VALUES("286", "727", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:457;s:6:\"height\";i:1328;s:4:\"file\";s:25:\"2013/09/130914_191124.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130914_191124-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130914_191124-103x300.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"130914_191124-352x1024.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130914_191124-30x87.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130914_191124-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130914_191124-53x155.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130914_191124-275x800.jpg\";s:5:\"width\";i:275;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("287", "728", "_wp_attached_file", "2013/09/130914_192002.jpg");
INSERT INTO `wp_postmeta` VALUES("288", "728", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:455;s:6:\"height\";i:1326;s:4:\"file\";s:25:\"2013/09/130914_192002.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130914_192002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130914_192002-103x300.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"130914_192002-351x1024.jpg\";s:5:\"width\";i:351;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130914_192002-30x87.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130914_192002-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130914_192002-53x155.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130914_192002-275x800.jpg\";s:5:\"width\";i:275;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("289", "729", "_wp_attached_file", "2013/09/130914_192510.jpg");
INSERT INTO `wp_postmeta` VALUES("290", "729", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:447;s:6:\"height\";i:1315;s:4:\"file\";s:25:\"2013/09/130914_192510.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130914_192510-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130914_192510-102x300.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"130914_192510-348x1024.jpg\";s:5:\"width\";i:348;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130914_192510-30x87.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130914_192510-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130914_192510-53x155.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130914_192510-272x800.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("291", "730", "_wp_attached_file", "2013/09/130914_192549.jpg");
INSERT INTO `wp_postmeta` VALUES("292", "730", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:457;s:6:\"height\";i:1332;s:4:\"file\";s:25:\"2013/09/130914_192549.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130914_192549-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130914_192549-103x300.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"130914_192549-351x1024.jpg\";s:5:\"width\";i:351;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130914_192549-30x87.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130914_192549-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130914_192549-53x155.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130914_192549-274x800.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("293", "731", "_wp_attached_file", "2013/09/130914_193404.jpg");
INSERT INTO `wp_postmeta` VALUES("294", "731", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:455;s:6:\"height\";i:1328;s:4:\"file\";s:25:\"2013/09/130914_193404.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130914_193404-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130914_193404-103x300.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"130914_193404-351x1024.jpg\";s:5:\"width\";i:351;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130914_193404-30x87.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130914_193404-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130914_193404-53x155.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130914_193404-274x800.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("295", "732", "_wp_attached_file", "2013/09/130914_193923.jpg");
INSERT INTO `wp_postmeta` VALUES("296", "732", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:455;s:6:\"height\";i:1328;s:4:\"file\";s:25:\"2013/09/130914_193923.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130914_193923-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130914_193923-103x300.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"130914_193923-351x1024.jpg\";s:5:\"width\";i:351;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130914_193923-30x87.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130914_193923-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130914_193923-53x155.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130914_193923-274x800.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("297", "733", "_wp_attached_file", "2013/09/130914_195354.jpg");
INSERT INTO `wp_postmeta` VALUES("298", "733", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:453;s:6:\"height\";i:1332;s:4:\"file\";s:25:\"2013/09/130914_195354.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130914_195354-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130914_195354-102x300.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"130914_195354-348x1024.jpg\";s:5:\"width\";i:348;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130914_195354-30x87.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130914_195354-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130914_195354-53x155.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130914_195354-272x800.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("299", "734", "_wp_attached_file", "2013/09/130914_200447.jpg");
INSERT INTO `wp_postmeta` VALUES("300", "734", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:459;s:6:\"height\";i:1328;s:4:\"file\";s:25:\"2013/09/130914_200447.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"130914_200447-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"130914_200447-104x300.jpg\";s:5:\"width\";i:104;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"130914_200447-354x1024.jpg\";s:5:\"width\";i:354;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:23:\"130914_200447-30x87.jpg\";s:5:\"width\";i:30;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:23:\"130914_200447-13x39.jpg\";s:5:\"width\";i:13;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:24:\"130914_200447-54x155.jpg\";s:5:\"width\";i:54;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:25:\"130914_200447-277x800.jpg\";s:5:\"width\";i:277;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("301", "735", "_wp_attached_file", "2013/09/IMG_0115.jpg");
INSERT INTO `wp_postmeta` VALUES("302", "735", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:864;s:4:\"file\";s:20:\"2013/09/IMG_0115.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0115-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0115-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0115-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"IMG_0115-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"IMG_0115-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_0115-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:21:\"IMG_0115-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("303", "740", "_wp_attached_file", "2013/09/Ewan-pictured-in-a-Bobbiyo.jpg");
INSERT INTO `wp_postmeta` VALUES("304", "740", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:511;s:6:\"height\";i:768;s:4:\"file\";s:38:\"2013/09/Ewan-pictured-in-a-Bobbiyo.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Ewan-pictured-in-a-Bobbiyo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Ewan-pictured-in-a-Bobbiyo-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:36:\"Ewan-pictured-in-a-Bobbiyo-58x87.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:36:\"Ewan-pictured-in-a-Bobbiyo-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:38:\"Ewan-pictured-in-a-Bobbiyo-103x155.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("305", "743", "_wp_attached_file", "2013/10/130928_180140.jpg");
INSERT INTO `wp_postmeta` VALUES("310", "746", "_wp_attached_file", "2015/02/weddingkits2_436px-x-273px.png");
INSERT INTO `wp_postmeta` VALUES("311", "746", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:436;s:6:\"height\";i:273;s:4:\"file\";s:38:\"2015/02/weddingkits2_436px-x-273px.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"weddingkits2_436px-x-273px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"weddingkits2_436px-x-273px-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:37:\"weddingkits2_436px-x-273px-139x87.png\";s:5:\"width\";i:139;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:36:\"weddingkits2_436px-x-273px-62x39.png\";s:5:\"width\";i:62;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:38:\"weddingkits2_436px-x-273px-248x155.png\";s:5:\"width\";i:248;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("312", "747", "_wp_attached_file", "2015/02/slider-1-366x146.jpg");
INSERT INTO `wp_postmeta` VALUES("313", "747", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:366;s:6:\"height\";i:146;s:4:\"file\";s:28:\"2015/02/slider-1-366x146.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"slider-1-366x146-150x146.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"slider-1-366x146-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:27:\"slider-1-366x146-150x60.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:26:\"slider-1-366x146-67x27.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:27;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:28:\"slider-1-366x146-366x146.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("314", "748", "_wp_attached_file", "2015/02/slider-2-366x146.jpg");
INSERT INTO `wp_postmeta` VALUES("315", "748", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:366;s:6:\"height\";i:146;s:4:\"file\";s:28:\"2015/02/slider-2-366x146.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"slider-2-366x146-150x146.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"slider-2-366x146-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:27:\"slider-2-366x146-150x60.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:26:\"slider-2-366x146-67x27.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:27;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:28:\"slider-2-366x146-366x146.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("316", "749", "_wp_attached_file", "2015/02/slider-3-366x146.jpg");
INSERT INTO `wp_postmeta` VALUES("317", "749", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:366;s:6:\"height\";i:146;s:4:\"file\";s:28:\"2015/02/slider-3-366x146.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"slider-3-366x146-150x146.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"slider-3-366x146-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:27:\"slider-3-366x146-150x60.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:26:\"slider-3-366x146-67x27.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:27;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:28:\"slider-3-366x146-366x146.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("318", "750", "_wp_attached_file", "2015/02/slider-1.jpg");
INSERT INTO `wp_postmeta` VALUES("319", "750", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2015/02/slider-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"slider-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"slider-1-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"slider-1-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"slider-1-150x60.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"slider-1-67x27.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:27;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"slider-1-366x146.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:21:\"slider-1-1170x468.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("320", "751", "_wp_attached_file", "2015/02/Web_3-1024x207_01.jpg");
INSERT INTO `wp_postmeta` VALUES("321", "751", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:270;s:6:\"height\";i:157;s:4:\"file\";s:29:\"2015/02/Web_3-1024x207_01.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Web_3-1024x207_01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:28:\"Web_3-1024x207_01-150x87.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:27:\"Web_3-1024x207_01-67x39.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:29:\"Web_3-1024x207_01-267x155.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("322", "752", "_wp_attached_file", "2015/02/Web_3-1024x207_02.jpg");
INSERT INTO `wp_postmeta` VALUES("323", "752", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:270;s:6:\"height\";i:157;s:4:\"file\";s:29:\"2015/02/Web_3-1024x207_02.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Web_3-1024x207_02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:28:\"Web_3-1024x207_02-150x87.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:27:\"Web_3-1024x207_02-67x39.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:29:\"Web_3-1024x207_02-267x155.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("324", "753", "_wp_attached_file", "2015/02/Web_3-1024x207_03.jpg");
INSERT INTO `wp_postmeta` VALUES("325", "753", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:270;s:6:\"height\";i:157;s:4:\"file\";s:29:\"2015/02/Web_3-1024x207_03.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Web_3-1024x207_03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:28:\"Web_3-1024x207_03-150x87.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:27:\"Web_3-1024x207_03-67x39.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:29:\"Web_3-1024x207_03-267x155.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("326", "754", "_wp_attached_file", "2015/02/Web_3-1024x207_04.jpg");
INSERT INTO `wp_postmeta` VALUES("327", "754", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:270;s:6:\"height\";i:157;s:4:\"file\";s:29:\"2015/02/Web_3-1024x207_04.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Web_3-1024x207_04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:28:\"Web_3-1024x207_04-150x87.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:27:\"Web_3-1024x207_04-67x39.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:29:\"Web_3-1024x207_04-267x155.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("328", "755", "_wp_attached_file", "2015/02/Web_3-1024x207_021.jpg");
INSERT INTO `wp_postmeta` VALUES("329", "755", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:270;s:6:\"height\";i:157;s:4:\"file\";s:30:\"2015/02/Web_3-1024x207_021.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:29:\"Web_3-1024x207_021-150x87.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:28:\"Web_3-1024x207_021-67x39.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_021-267x155.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("330", "756", "_wp_attached_file", "2015/02/85-250x250.jpg");
INSERT INTO `wp_postmeta` VALUES("331", "756", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2015/02/85-250x250.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"85-250x250-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:20:\"85-250x250-87x87.jpg\";s:5:\"width\";i:87;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:20:\"85-250x250-39x39.jpg\";s:5:\"width\";i:39;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:22:\"85-250x250-155x155.jpg\";s:5:\"width\";i:155;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("332", "757", "_wp_attached_file", "2015/02/Baby-Aid_Front_v2-250x250.jpg");
INSERT INTO `wp_postmeta` VALUES("333", "757", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:37:\"2015/02/Baby-Aid_Front_v2-250x250.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Baby-Aid_Front_v2-250x250-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:35:\"Baby-Aid_Front_v2-250x250-87x87.jpg\";s:5:\"width\";i:87;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:35:\"Baby-Aid_Front_v2-250x250-39x39.jpg\";s:5:\"width\";i:39;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:37:\"Baby-Aid_Front_v2-250x250-155x155.jpg\";s:5:\"width\";i:155;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("334", "758", "_wp_attached_file", "2015/02/Jenam-Shopper-Bag-Polka-Dot-250x250.jpg");
INSERT INTO `wp_postmeta` VALUES("335", "758", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:47:\"2015/02/Jenam-Shopper-Bag-Polka-Dot-250x250.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Jenam-Shopper-Bag-Polka-Dot-250x250-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:45:\"Jenam-Shopper-Bag-Polka-Dot-250x250-87x87.jpg\";s:5:\"width\";i:87;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:45:\"Jenam-Shopper-Bag-Polka-Dot-250x250-39x39.jpg\";s:5:\"width\";i:39;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:47:\"Jenam-Shopper-Bag-Polka-Dot-250x250-155x155.jpg\";s:5:\"width\";i:155;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("336", "759", "_wp_attached_file", "2015/02/Wedding-Survival-Kit_Top-250x250.jpg");
INSERT INTO `wp_postmeta` VALUES("337", "759", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:44:\"2015/02/Wedding-Survival-Kit_Top-250x250.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Wedding-Survival-Kit_Top-250x250-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:42:\"Wedding-Survival-Kit_Top-250x250-87x87.jpg\";s:5:\"width\";i:87;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:42:\"Wedding-Survival-Kit_Top-250x250-39x39.jpg\";s:5:\"width\";i:39;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:44:\"Wedding-Survival-Kit_Top-250x250-155x155.jpg\";s:5:\"width\";i:155;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("338", "760", "_wp_attached_file", "2015/02/85-250x2501.jpg");
INSERT INTO `wp_postmeta` VALUES("339", "760", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:470;s:6:\"height\";i:250;s:4:\"file\";s:23:\"2015/02/85-250x2501.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"85-250x2501-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"85-250x2501-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:22:\"85-250x2501-150x80.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:21:\"85-250x2501-67x36.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:23:\"85-250x2501-291x155.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("340", "761", "_wp_attached_file", "2015/02/Baby-Aid_Front_v2-250x2501.jpg");
INSERT INTO `wp_postmeta` VALUES("341", "761", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:470;s:6:\"height\";i:250;s:4:\"file\";s:38:\"2015/02/Baby-Aid_Front_v2-250x2501.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Baby-Aid_Front_v2-250x2501-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Baby-Aid_Front_v2-250x2501-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:37:\"Baby-Aid_Front_v2-250x2501-150x80.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:36:\"Baby-Aid_Front_v2-250x2501-67x36.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:38:\"Baby-Aid_Front_v2-250x2501-291x155.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("342", "762", "_wp_attached_file", "2015/02/Jenam-Shopper-Bag-Polka-Dot-250x2501.jpg");
INSERT INTO `wp_postmeta` VALUES("343", "762", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:470;s:6:\"height\";i:250;s:4:\"file\";s:48:\"2015/02/Jenam-Shopper-Bag-Polka-Dot-250x2501.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Jenam-Shopper-Bag-Polka-Dot-250x2501-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Jenam-Shopper-Bag-Polka-Dot-250x2501-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:47:\"Jenam-Shopper-Bag-Polka-Dot-250x2501-150x80.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:46:\"Jenam-Shopper-Bag-Polka-Dot-250x2501-67x36.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:48:\"Jenam-Shopper-Bag-Polka-Dot-250x2501-291x155.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("344", "763", "_wp_attached_file", "2015/02/Wedding-Survival-Kit_Top-250x2501.jpg");
INSERT INTO `wp_postmeta` VALUES("345", "763", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:470;s:6:\"height\";i:250;s:4:\"file\";s:45:\"2015/02/Wedding-Survival-Kit_Top-250x2501.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Wedding-Survival-Kit_Top-250x2501-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Wedding-Survival-Kit_Top-250x2501-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:44:\"Wedding-Survival-Kit_Top-250x2501-150x80.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:43:\"Wedding-Survival-Kit_Top-250x2501-67x36.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:45:\"Wedding-Survival-Kit_Top-250x2501-291x155.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("346", "764", "_wp_attached_file", "2015/02/Web_3-1024x207_041.jpg");
INSERT INTO `wp_postmeta` VALUES("347", "764", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:270;s:6:\"height\";i:157;s:4:\"file\";s:30:\"2015/02/Web_3-1024x207_041.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_041-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:29:\"Web_3-1024x207_041-150x87.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:28:\"Web_3-1024x207_041-67x39.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_041-267x155.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("348", "765", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("349", "766", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("350", "767", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("351", "768", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("352", "769", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("353", "769", "_edit_lock", "1427306421:1");
INSERT INTO `wp_postmeta` VALUES("354", "769", "_product_attributes", "a:1:{s:6:\"colour\";a:6:{s:4:\"name\";s:6:\"Colour\";s:5:\"value\";s:23:\"Turquoise | Blue | Pink\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("355", "770", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("359", "771", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("360", "772", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("361", "773", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("362", "774", "_wp_attached_file", "2015/02/admin-ajax.jpg");
INSERT INTO `wp_postmeta` VALUES("363", "774", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:266;s:6:\"height\";i:400;s:4:\"file\";s:22:\"2015/02/admin-ajax.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"admin-ajax-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"admin-ajax-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:20:\"admin-ajax-58x87.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:20:\"admin-ajax-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:22:\"admin-ajax-103x155.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"admin-ajax-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"admin-ajax-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"admin-ajax-266x300.jpg\";s:5:\"width\";i:266;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("364", "775", "_wp_attached_file", "2015/02/86.jpg");
INSERT INTO `wp_postmeta` VALUES("365", "775", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1632;s:6:\"height\";i:1088;s:4:\"file\";s:14:\"2015/02/86.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"86-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"86-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"86-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:13:\"86-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:12:\"86-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:14:\"86-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:15:\"86-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:12:\"86-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:14:\"86-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:14:\"86-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("366", "776", "_wp_attached_file", "2015/02/87.jpg");
INSERT INTO `wp_postmeta` VALUES("367", "776", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1719;s:6:\"height\";i:1146;s:4:\"file\";s:14:\"2015/02/87.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"87-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"87-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"87-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:13:\"87-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:12:\"87-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:14:\"87-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:15:\"87-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:12:\"87-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:14:\"87-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:14:\"87-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("368", "777", "_wp_attached_file", "2015/02/90.jpg");
INSERT INTO `wp_postmeta` VALUES("369", "777", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1584;s:6:\"height\";i:1056;s:4:\"file\";s:14:\"2015/02/90.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"90-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"90-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"90-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:13:\"90-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:12:\"90-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:14:\"90-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:15:\"90-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:12:\"90-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:14:\"90-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:14:\"90-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("370", "778", "_wp_attached_file", "2015/02/91.jpg");
INSERT INTO `wp_postmeta` VALUES("371", "778", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1802;s:6:\"height\";i:1201;s:4:\"file\";s:14:\"2015/02/91.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"91-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"91-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"91-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:13:\"91-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:12:\"91-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:14:\"91-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:15:\"91-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:12:\"91-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:14:\"91-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:14:\"91-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("372", "779", "_wp_attached_file", "2015/02/Ciara.jpg");
INSERT INTO `wp_postmeta` VALUES("373", "779", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:551;s:6:\"height\";i:468;s:4:\"file\";s:17:\"2015/02/Ciara.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Ciara-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Ciara-300x255.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:16:\"Ciara-102x87.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:15:\"Ciara-46x39.jpg\";s:5:\"width\";i:46;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:17:\"Ciara-182x155.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"Ciara-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"Ciara-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"Ciara-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("374", "780", "_wp_attached_file", "2015/02/Ewan-pictured-in-a-Bobbiyo.jpg");
INSERT INTO `wp_postmeta` VALUES("375", "780", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:511;s:6:\"height\";i:768;s:4:\"file\";s:38:\"2015/02/Ewan-pictured-in-a-Bobbiyo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Ewan-pictured-in-a-Bobbiyo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Ewan-pictured-in-a-Bobbiyo-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:36:\"Ewan-pictured-in-a-Bobbiyo-58x87.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:36:\"Ewan-pictured-in-a-Bobbiyo-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:38:\"Ewan-pictured-in-a-Bobbiyo-103x155.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"Ewan-pictured-in-a-Bobbiyo-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:38:\"Ewan-pictured-in-a-Bobbiyo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:38:\"Ewan-pictured-in-a-Bobbiyo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("376", "769", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("377", "769", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("378", "769", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("379", "769", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("380", "769", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("381", "769", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("382", "769", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("383", "769", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("384", "769", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("385", "769", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("386", "769", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("387", "769", "_length", "");
INSERT INTO `wp_postmeta` VALUES("388", "769", "_width", "");
INSERT INTO `wp_postmeta` VALUES("389", "769", "_height", "");
INSERT INTO `wp_postmeta` VALUES("390", "769", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("391", "769", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("392", "769", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("393", "769", "_price", "349");
INSERT INTO `wp_postmeta` VALUES("394", "769", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("395", "769", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("396", "769", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("397", "769", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("398", "770", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("399", "770", "_thumbnail_id", "0");
INSERT INTO `wp_postmeta` VALUES("400", "770", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("401", "770", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("402", "770", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("403", "770", "_length", "");
INSERT INTO `wp_postmeta` VALUES("404", "770", "_width", "");
INSERT INTO `wp_postmeta` VALUES("405", "770", "_height", "");
INSERT INTO `wp_postmeta` VALUES("406", "770", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("407", "770", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("408", "770", "_regular_price", "349");
INSERT INTO `wp_postmeta` VALUES("409", "770", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("410", "770", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("411", "770", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("412", "770", "_price", "349");
INSERT INTO `wp_postmeta` VALUES("413", "770", "_download_limit", "");
INSERT INTO `wp_postmeta` VALUES("414", "770", "_download_expiry", "");
INSERT INTO `wp_postmeta` VALUES("415", "770", "_downloadable_files", "");
INSERT INTO `wp_postmeta` VALUES("416", "770", "attribute_colour", "");
INSERT INTO `wp_postmeta` VALUES("417", "771", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("418", "771", "_thumbnail_id", "0");
INSERT INTO `wp_postmeta` VALUES("419", "771", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("420", "771", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("421", "771", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("422", "771", "_length", "");
INSERT INTO `wp_postmeta` VALUES("423", "771", "_width", "");
INSERT INTO `wp_postmeta` VALUES("424", "771", "_height", "");
INSERT INTO `wp_postmeta` VALUES("425", "771", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("426", "771", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("427", "771", "_regular_price", "349");
INSERT INTO `wp_postmeta` VALUES("428", "771", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("429", "771", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("430", "771", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("431", "771", "_price", "349");
INSERT INTO `wp_postmeta` VALUES("432", "771", "_download_limit", "");
INSERT INTO `wp_postmeta` VALUES("433", "771", "_download_expiry", "");
INSERT INTO `wp_postmeta` VALUES("434", "771", "_downloadable_files", "");
INSERT INTO `wp_postmeta` VALUES("435", "771", "attribute_colour", "blue");
INSERT INTO `wp_postmeta` VALUES("436", "772", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("437", "772", "_thumbnail_id", "0");
INSERT INTO `wp_postmeta` VALUES("438", "772", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("439", "772", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("440", "772", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("441", "772", "_length", "");
INSERT INTO `wp_postmeta` VALUES("442", "772", "_width", "");
INSERT INTO `wp_postmeta` VALUES("443", "772", "_height", "");
INSERT INTO `wp_postmeta` VALUES("444", "772", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("445", "772", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("446", "772", "_regular_price", "349");
INSERT INTO `wp_postmeta` VALUES("447", "772", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("448", "772", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("449", "772", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("450", "772", "_price", "349");
INSERT INTO `wp_postmeta` VALUES("451", "772", "_download_limit", "");
INSERT INTO `wp_postmeta` VALUES("452", "772", "_download_expiry", "");
INSERT INTO `wp_postmeta` VALUES("453", "772", "_downloadable_files", "");
INSERT INTO `wp_postmeta` VALUES("454", "772", "attribute_colour", "pink");
INSERT INTO `wp_postmeta` VALUES("455", "773", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("456", "773", "_thumbnail_id", "0");
INSERT INTO `wp_postmeta` VALUES("457", "773", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("458", "773", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("459", "773", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("460", "773", "_length", "");
INSERT INTO `wp_postmeta` VALUES("461", "773", "_width", "");
INSERT INTO `wp_postmeta` VALUES("462", "773", "_height", "");
INSERT INTO `wp_postmeta` VALUES("463", "773", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("464", "773", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("465", "773", "_regular_price", "349");
INSERT INTO `wp_postmeta` VALUES("466", "773", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("467", "773", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("468", "773", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("469", "773", "_price", "349");
INSERT INTO `wp_postmeta` VALUES("470", "773", "_download_limit", "");
INSERT INTO `wp_postmeta` VALUES("471", "773", "_download_expiry", "");
INSERT INTO `wp_postmeta` VALUES("472", "773", "_downloadable_files", "");
INSERT INTO `wp_postmeta` VALUES("473", "773", "attribute_colour", "");
INSERT INTO `wp_postmeta` VALUES("474", "769", "_min_variation_price", "349");
INSERT INTO `wp_postmeta` VALUES("475", "769", "_max_variation_price", "349");
INSERT INTO `wp_postmeta` VALUES("476", "769", "_min_price_variation_id", "773");
INSERT INTO `wp_postmeta` VALUES("477", "769", "_max_price_variation_id", "773");
INSERT INTO `wp_postmeta` VALUES("478", "769", "_min_variation_regular_price", "349");
INSERT INTO `wp_postmeta` VALUES("479", "769", "_max_variation_regular_price", "349");
INSERT INTO `wp_postmeta` VALUES("480", "769", "_min_regular_price_variation_id", "773");
INSERT INTO `wp_postmeta` VALUES("481", "769", "_max_regular_price_variation_id", "773");
INSERT INTO `wp_postmeta` VALUES("482", "769", "_min_variation_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("483", "769", "_max_variation_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("484", "769", "_min_sale_price_variation_id", "");
INSERT INTO `wp_postmeta` VALUES("485", "769", "_max_sale_price_variation_id", "");
INSERT INTO `wp_postmeta` VALUES("486", "769", "_default_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("487", "769", "_product_image_gallery", "775,777,778,779,780,1110");
INSERT INTO `wp_postmeta` VALUES("488", "769", "banner_description", "");
INSERT INTO `wp_postmeta` VALUES("489", "769", "heading_one", "");
INSERT INTO `wp_postmeta` VALUES("490", "769", "heading_two", "");
INSERT INTO `wp_postmeta` VALUES("492", "781", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("493", "781", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("494", "781", "_menu_item_object_id", "765");
INSERT INTO `wp_postmeta` VALUES("495", "781", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("496", "781", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("497", "781", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("498", "781", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("499", "781", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("510", "781", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("511", "783", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("512", "783", "_edit_lock", "1435139542:2");
INSERT INTO `wp_postmeta` VALUES("513", "784", "_wp_attached_file", "2015/02/IMG_0450-152x300.jpg");
INSERT INTO `wp_postmeta` VALUES("514", "784", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:152;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2015/02/IMG_0450-152x300.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("515", "783", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("516", "783", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("517", "783", "banner_description", "");
INSERT INTO `wp_postmeta` VALUES("518", "783", "heading_one", "");
INSERT INTO `wp_postmeta` VALUES("519", "783", "heading_two", "");
INSERT INTO `wp_postmeta` VALUES("520", "787", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("521", "787", "_edit_lock", "1426363312:1");
INSERT INTO `wp_postmeta` VALUES("522", "787", "_wp_page_template", "blog.php");
INSERT INTO `wp_postmeta` VALUES("523", "787", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("524", "787", "banner_description", "");
INSERT INTO `wp_postmeta` VALUES("525", "787", "heading_one", "");
INSERT INTO `wp_postmeta` VALUES("526", "787", "heading_two", "");
INSERT INTO `wp_postmeta` VALUES("527", "789", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("528", "789", "_edit_lock", "1435083992:1");
INSERT INTO `wp_postmeta` VALUES("529", "789", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("530", "789", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("531", "789", "banner_description", "");
INSERT INTO `wp_postmeta` VALUES("532", "789", "heading_one", "");
INSERT INTO `wp_postmeta` VALUES("533", "789", "heading_two", "");
INSERT INTO `wp_postmeta` VALUES("534", "792", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("535", "792", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("536", "792", "_menu_item_object_id", "789");
INSERT INTO `wp_postmeta` VALUES("537", "792", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("538", "792", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("539", "792", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("540", "792", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("541", "792", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("543", "793", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("544", "793", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("545", "793", "_menu_item_object_id", "787");
INSERT INTO `wp_postmeta` VALUES("546", "793", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("547", "793", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("548", "793", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("549", "793", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("550", "793", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("552", "794", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("553", "794", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("554", "794", "_menu_item_object_id", "783");
INSERT INTO `wp_postmeta` VALUES("555", "794", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("556", "794", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("557", "794", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("558", "794", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("559", "794", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("561", "794", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("562", "793", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("563", "792", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("572", "800", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("573", "800", "ml-slider_settings", "a:35:{s:4:\"type\";s:4:\"flex\";s:6:\"random\";s:5:\"false\";s:8:\"cssClass\";s:0:\"\";s:8:\"printCss\";s:4:\"true\";s:7:\"printJs\";s:4:\"true\";s:5:\"width\";s:4:\"1583\";s:6:\"height\";s:3:\"633\";s:3:\"spw\";i:7;s:3:\"sph\";i:5;s:5:\"delay\";s:4:\"3000\";s:6:\"sDelay\";i:30;s:7:\"opacity\";d:0.6999999999999999555910790149937383830547332763671875;s:10:\"titleSpeed\";i:500;s:6:\"effect\";s:4:\"fade\";s:10:\"navigation\";s:4:\"true\";s:5:\"links\";s:4:\"true\";s:10:\"hoverPause\";s:4:\"true\";s:5:\"theme\";s:7:\"default\";s:9:\"direction\";s:10:\"horizontal\";s:7:\"reverse\";s:5:\"false\";s:14:\"animationSpeed\";s:3:\"600\";s:8:\"prevText\";s:1:\"<\";s:8:\"nextText\";s:1:\">\";s:6:\"slices\";i:15;s:6:\"center\";s:5:\"false\";s:9:\"smartCrop\";s:4:\"true\";s:12:\"carouselMode\";s:5:\"false\";s:14:\"carouselMargin\";s:1:\"5\";s:6:\"easing\";s:6:\"linear\";s:8:\"autoPlay\";s:4:\"true\";s:11:\"thumb_width\";i:150;s:12:\"thumb_height\";i:100;s:9:\"fullWidth\";s:5:\"false\";s:10:\"noConflict\";s:4:\"true\";s:12:\"smoothHeight\";s:5:\"false\";}");
INSERT INTO `wp_postmeta` VALUES("586", "801", "_wp_attached_file", "2015/02/WebLogo.jpg");
INSERT INTO `wp_postmeta` VALUES("587", "801", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:117;s:4:\"file\";s:19:\"2015/02/WebLogo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"WebLogo-150x117.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"WebLogo-300x88.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:18:\"WebLogo-150x44.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:44;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:17:\"WebLogo-67x20.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:19:\"WebLogo-366x107.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"WebLogo-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"WebLogo-150x117.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"WebLogo-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("592", "804", "_wp_attached_file", "2015/02/Snappi_300px-x-195px.png");
INSERT INTO `wp_postmeta` VALUES("593", "804", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:195;s:4:\"file\";s:32:\"2015/02/Snappi_300px-x-195px.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Snappi_300px-x-195px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Snappi_300px-x-195px-300x195.png\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:31:\"Snappi_300px-x-195px-134x87.png\";s:5:\"width\";i:134;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:30:\"Snappi_300px-x-195px-60x39.png\";s:5:\"width\";i:60;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:32:\"Snappi_300px-x-195px-238x155.png\";s:5:\"width\";i:238;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"Snappi_300px-x-195px-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"Snappi_300px-x-195px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"Snappi_300px-x-195px-300x195.png\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("594", "805", "_wp_attached_file", "2015/02/BabyBox_436px-x-273px.png");
INSERT INTO `wp_postmeta` VALUES("595", "805", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:436;s:6:\"height\";i:273;s:4:\"file\";s:33:\"2015/02/BabyBox_436px-x-273px.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"BabyBox_436px-x-273px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"BabyBox_436px-x-273px-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:32:\"BabyBox_436px-x-273px-139x87.png\";s:5:\"width\";i:139;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:31:\"BabyBox_436px-x-273px-62x39.png\";s:5:\"width\";i:62;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:33:\"BabyBox_436px-x-273px-248x155.png\";s:5:\"width\";i:248;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"BabyBox_436px-x-273px-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"BabyBox_436px-x-273px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"BabyBox_436px-x-273px-300x273.png\";s:5:\"width\";i:300;s:6:\"height\";i:273;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("596", "806", "_wp_attached_file", "2015/02/weekender-bag_436px-x-273px.png");
INSERT INTO `wp_postmeta` VALUES("597", "806", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:436;s:6:\"height\";i:273;s:4:\"file\";s:39:\"2015/02/weekender-bag_436px-x-273px.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"weekender-bag_436px-x-273px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"weekender-bag_436px-x-273px-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:38:\"weekender-bag_436px-x-273px-139x87.png\";s:5:\"width\";i:139;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:37:\"weekender-bag_436px-x-273px-62x39.png\";s:5:\"width\";i:62;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:39:\"weekender-bag_436px-x-273px-248x155.png\";s:5:\"width\";i:248;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"weekender-bag_436px-x-273px-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:39:\"weekender-bag_436px-x-273px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:39:\"weekender-bag_436px-x-273px-300x273.png\";s:5:\"width\";i:300;s:6:\"height\";i:273;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("598", "807", "_wp_attached_file", "2015/02/weddingkits_300px-x-195px.png");
INSERT INTO `wp_postmeta` VALUES("599", "807", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:195;s:4:\"file\";s:37:\"2015/02/weddingkits_300px-x-195px.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"weddingkits_300px-x-195px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"weddingkits_300px-x-195px-300x195.png\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:36:\"weddingkits_300px-x-195px-134x87.png\";s:5:\"width\";i:134;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:35:\"weddingkits_300px-x-195px-60x39.png\";s:5:\"width\";i:60;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:37:\"weddingkits_300px-x-195px-238x155.png\";s:5:\"width\";i:238;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"weddingkits_300px-x-195px-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:37:\"weddingkits_300px-x-195px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"weddingkits_300px-x-195px-300x195.png\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("600", "808", "_wp_attached_file", "2015/02/weddingkits2_436px-x-273px1.png");
INSERT INTO `wp_postmeta` VALUES("601", "808", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:436;s:6:\"height\";i:273;s:4:\"file\";s:39:\"2015/02/weddingkits2_436px-x-273px1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"weddingkits2_436px-x-273px1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"weddingkits2_436px-x-273px1-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:38:\"weddingkits2_436px-x-273px1-139x87.png\";s:5:\"width\";i:139;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:37:\"weddingkits2_436px-x-273px1-62x39.png\";s:5:\"width\";i:62;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:39:\"weddingkits2_436px-x-273px1-248x155.png\";s:5:\"width\";i:248;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"weddingkits2_436px-x-273px1-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:39:\"weddingkits2_436px-x-273px1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:39:\"weddingkits2_436px-x-273px1-300x273.png\";s:5:\"width\";i:300;s:6:\"height\";i:273;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("602", "810", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("603", "810", "_edit_lock", "1427393936:1");
INSERT INTO `wp_postmeta` VALUES("607", "810", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("608", "810", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("609", "810", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("610", "810", "total_sales", "1");
INSERT INTO `wp_postmeta` VALUES("611", "810", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("612", "810", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("613", "810", "_regular_price", "595");
INSERT INTO `wp_postmeta` VALUES("614", "810", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("615", "810", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("616", "810", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("617", "810", "_weight", "2");
INSERT INTO `wp_postmeta` VALUES("618", "810", "_length", "");
INSERT INTO `wp_postmeta` VALUES("619", "810", "_width", "");
INSERT INTO `wp_postmeta` VALUES("620", "810", "_height", "");
INSERT INTO `wp_postmeta` VALUES("621", "810", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("622", "810", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("623", "810", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("624", "810", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("625", "810", "_price", "595");
INSERT INTO `wp_postmeta` VALUES("626", "810", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("627", "810", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("628", "810", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("629", "810", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("630", "810", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("631", "810", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("632", "810", "_product_image_gallery", "1172,1143,1170,1171");
INSERT INTO `wp_postmeta` VALUES("633", "810", "banner_description", "");
INSERT INTO `wp_postmeta` VALUES("634", "810", "heading_one", "");
INSERT INTO `wp_postmeta` VALUES("635", "810", "heading_two", "");
INSERT INTO `wp_postmeta` VALUES("638", "812", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("639", "812", "_edit_lock", "1427396937:1");
INSERT INTO `wp_postmeta` VALUES("640", "812", "_product_attributes", "a:1:{s:6:\"colour\";a:6:{s:4:\"name\";s:6:\"Colour\";s:5:\"value\";s:31:\"Navy Polka Dot | Jade Polka Dot\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("641", "813", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("642", "813", "attribute_colour", "navy-polka-dot");
INSERT INTO `wp_postmeta` VALUES("643", "814", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("644", "814", "attribute_colour", "jade-polka-dot");
INSERT INTO `wp_postmeta` VALUES("645", "812", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("646", "812", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("647", "812", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("648", "812", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("649", "812", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("650", "812", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("651", "812", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("652", "812", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("653", "812", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("654", "812", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("655", "812", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("656", "812", "_length", "");
INSERT INTO `wp_postmeta` VALUES("657", "812", "_width", "");
INSERT INTO `wp_postmeta` VALUES("658", "812", "_height", "");
INSERT INTO `wp_postmeta` VALUES("659", "812", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("660", "812", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("661", "812", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("662", "812", "_price", "200");
INSERT INTO `wp_postmeta` VALUES("663", "812", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("664", "812", "_manage_stock", "yes");
INSERT INTO `wp_postmeta` VALUES("665", "812", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("666", "812", "_stock", "3.000000");
INSERT INTO `wp_postmeta` VALUES("667", "813", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("668", "814", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("669", "812", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("670", "812", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("671", "813", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("672", "813", "_thumbnail_id", "0");
INSERT INTO `wp_postmeta` VALUES("673", "813", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("674", "813", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("675", "813", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("676", "813", "_length", "");
INSERT INTO `wp_postmeta` VALUES("677", "813", "_width", "");
INSERT INTO `wp_postmeta` VALUES("678", "813", "_height", "");
INSERT INTO `wp_postmeta` VALUES("679", "813", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("680", "813", "_regular_price", "200");
INSERT INTO `wp_postmeta` VALUES("681", "813", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("682", "813", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("683", "813", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("684", "813", "_price", "200");
INSERT INTO `wp_postmeta` VALUES("685", "813", "_download_limit", "");
INSERT INTO `wp_postmeta` VALUES("686", "813", "_download_expiry", "");
INSERT INTO `wp_postmeta` VALUES("687", "813", "_downloadable_files", "");
INSERT INTO `wp_postmeta` VALUES("688", "814", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("689", "814", "_thumbnail_id", "0");
INSERT INTO `wp_postmeta` VALUES("690", "814", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("691", "814", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("692", "814", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("693", "814", "_length", "");
INSERT INTO `wp_postmeta` VALUES("694", "814", "_width", "");
INSERT INTO `wp_postmeta` VALUES("695", "814", "_height", "");
INSERT INTO `wp_postmeta` VALUES("696", "814", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("697", "814", "_regular_price", "200");
INSERT INTO `wp_postmeta` VALUES("698", "814", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("699", "814", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("700", "814", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("701", "814", "_price", "200");
INSERT INTO `wp_postmeta` VALUES("702", "814", "_download_limit", "");
INSERT INTO `wp_postmeta` VALUES("703", "814", "_download_expiry", "");
INSERT INTO `wp_postmeta` VALUES("704", "814", "_downloadable_files", "");
INSERT INTO `wp_postmeta` VALUES("705", "812", "_min_variation_price", "200");
INSERT INTO `wp_postmeta` VALUES("706", "812", "_max_variation_price", "200");
INSERT INTO `wp_postmeta` VALUES("707", "812", "_min_price_variation_id", "813");
INSERT INTO `wp_postmeta` VALUES("708", "812", "_max_price_variation_id", "813");
INSERT INTO `wp_postmeta` VALUES("709", "812", "_min_variation_regular_price", "200");
INSERT INTO `wp_postmeta` VALUES("710", "812", "_max_variation_regular_price", "200");
INSERT INTO `wp_postmeta` VALUES("711", "812", "_min_regular_price_variation_id", "813");
INSERT INTO `wp_postmeta` VALUES("712", "812", "_max_regular_price_variation_id", "813");
INSERT INTO `wp_postmeta` VALUES("713", "812", "_min_variation_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("714", "812", "_max_variation_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("715", "812", "_min_sale_price_variation_id", "");
INSERT INTO `wp_postmeta` VALUES("716", "812", "_max_sale_price_variation_id", "");
INSERT INTO `wp_postmeta` VALUES("717", "812", "_default_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("718", "812", "_product_image_gallery", "871,1167");
INSERT INTO `wp_postmeta` VALUES("719", "812", "banner_description", "");
INSERT INTO `wp_postmeta` VALUES("720", "812", "heading_one", "");
INSERT INTO `wp_postmeta` VALUES("721", "812", "heading_two", "");
INSERT INTO `wp_postmeta` VALUES("722", "815", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("723", "815", "_menu_item_menu_item_parent", "781");
INSERT INTO `wp_postmeta` VALUES("724", "815", "_menu_item_object_id", "815");
INSERT INTO `wp_postmeta` VALUES("725", "815", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("726", "815", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("727", "815", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("728", "815", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("729", "815", "_menu_item_url", "http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/");
INSERT INTO `wp_postmeta` VALUES("740", "817", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("741", "817", "_menu_item_menu_item_parent", "781");
INSERT INTO `wp_postmeta` VALUES("742", "817", "_menu_item_object_id", "817");
INSERT INTO `wp_postmeta` VALUES("743", "817", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("744", "817", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("745", "817", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("746", "817", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("747", "817", "_menu_item_url", "http://chequerbox.co.za/product-category/wedding-day-kits/");
INSERT INTO `wp_postmeta` VALUES("759", "815", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("761", "817", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("762", "820", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("763", "820", "_edit_lock", "1427397266:1");
INSERT INTO `wp_postmeta` VALUES("764", "820", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("765", "820", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("766", "820", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("767", "820", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("768", "820", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("769", "820", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("770", "820", "_regular_price", "150");
INSERT INTO `wp_postmeta` VALUES("771", "820", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("772", "820", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("773", "820", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("774", "820", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("775", "820", "_length", "");
INSERT INTO `wp_postmeta` VALUES("776", "820", "_width", "");
INSERT INTO `wp_postmeta` VALUES("777", "820", "_height", "");
INSERT INTO `wp_postmeta` VALUES("778", "820", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("779", "820", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("780", "820", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("781", "820", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("782", "820", "_price", "150");
INSERT INTO `wp_postmeta` VALUES("783", "820", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("784", "820", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("785", "820", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("786", "820", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("787", "820", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("788", "820", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("789", "820", "_product_image_gallery", "870,806");
INSERT INTO `wp_postmeta` VALUES("790", "820", "banner_description", "");
INSERT INTO `wp_postmeta` VALUES("791", "820", "heading_one", "");
INSERT INTO `wp_postmeta` VALUES("792", "820", "heading_two", "");
INSERT INTO `wp_postmeta` VALUES("793", "821", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("794", "821", "_edit_lock", "1427393123:1");
INSERT INTO `wp_postmeta` VALUES("795", "821", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("796", "821", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("797", "821", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("798", "821", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("799", "821", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("800", "821", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("801", "821", "_regular_price", "280");
INSERT INTO `wp_postmeta` VALUES("802", "821", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("803", "821", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("804", "821", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("805", "821", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("806", "821", "_length", "");
INSERT INTO `wp_postmeta` VALUES("807", "821", "_width", "");
INSERT INTO `wp_postmeta` VALUES("808", "821", "_height", "");
INSERT INTO `wp_postmeta` VALUES("809", "821", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("810", "821", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("811", "821", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("812", "821", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("813", "821", "_price", "280");
INSERT INTO `wp_postmeta` VALUES("814", "821", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("815", "821", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("816", "821", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("817", "821", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("818", "821", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("819", "821", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("820", "821", "_product_image_gallery", "");
INSERT INTO `wp_postmeta` VALUES("821", "821", "banner_description", "");
INSERT INTO `wp_postmeta` VALUES("822", "821", "heading_one", "");
INSERT INTO `wp_postmeta` VALUES("823", "821", "heading_two", "");
INSERT INTO `wp_postmeta` VALUES("824", "822", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("825", "822", "_edit_lock", "1436968300:2");
INSERT INTO `wp_postmeta` VALUES("826", "822", "_product_attributes", "a:1:{s:6:\"colour\";a:6:{s:4:\"name\";s:6:\"Colour\";s:5:\"value\";s:23:\"Floral | Jade Polka Dot\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("827", "823", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("828", "823", "attribute_colour", "floral");
INSERT INTO `wp_postmeta` VALUES("829", "824", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("830", "824", "attribute_colour", "jade-polka-dot");
INSERT INTO `wp_postmeta` VALUES("831", "822", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("832", "822", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("833", "822", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("834", "822", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("835", "822", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("836", "822", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("837", "822", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("838", "822", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("839", "822", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("840", "822", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("841", "822", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("842", "822", "_length", "");
INSERT INTO `wp_postmeta` VALUES("843", "822", "_width", "");
INSERT INTO `wp_postmeta` VALUES("844", "822", "_height", "");
INSERT INTO `wp_postmeta` VALUES("845", "822", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("846", "822", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("847", "822", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("848", "822", "_price", "200");
INSERT INTO `wp_postmeta` VALUES("849", "822", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("850", "822", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("851", "822", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("852", "822", "_stock", "");
INSERT INTO `wp_postmeta` VALUES("853", "822", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("854", "822", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("855", "823", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("856", "823", "_thumbnail_id", "0");
INSERT INTO `wp_postmeta` VALUES("857", "823", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("858", "823", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("859", "823", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("860", "823", "_length", "");
INSERT INTO `wp_postmeta` VALUES("861", "823", "_width", "");
INSERT INTO `wp_postmeta` VALUES("862", "823", "_height", "");
INSERT INTO `wp_postmeta` VALUES("863", "823", "_manage_stock", "yes");
INSERT INTO `wp_postmeta` VALUES("864", "823", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("865", "823", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("866", "823", "_stock", "1");
INSERT INTO `wp_postmeta` VALUES("867", "822", "_min_variation_price", "200");
INSERT INTO `wp_postmeta` VALUES("868", "822", "_max_variation_price", "200");
INSERT INTO `wp_postmeta` VALUES("869", "822", "_min_price_variation_id", "823");
INSERT INTO `wp_postmeta` VALUES("870", "822", "_max_price_variation_id", "823");
INSERT INTO `wp_postmeta` VALUES("871", "822", "_min_variation_regular_price", "200");
INSERT INTO `wp_postmeta` VALUES("872", "822", "_max_variation_regular_price", "200");
INSERT INTO `wp_postmeta` VALUES("873", "822", "_min_regular_price_variation_id", "823");
INSERT INTO `wp_postmeta` VALUES("874", "822", "_max_regular_price_variation_id", "823");
INSERT INTO `wp_postmeta` VALUES("875", "822", "_min_variation_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("876", "822", "_max_variation_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("877", "822", "_min_sale_price_variation_id", "");
INSERT INTO `wp_postmeta` VALUES("878", "822", "_max_sale_price_variation_id", "");
INSERT INTO `wp_postmeta` VALUES("879", "823", "_regular_price", "200");
INSERT INTO `wp_postmeta` VALUES("880", "823", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("881", "823", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("882", "823", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("883", "823", "_price", "200");
INSERT INTO `wp_postmeta` VALUES("884", "823", "_download_limit", "");
INSERT INTO `wp_postmeta` VALUES("885", "823", "_download_expiry", "");
INSERT INTO `wp_postmeta` VALUES("886", "823", "_downloadable_files", "");
INSERT INTO `wp_postmeta` VALUES("887", "824", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("888", "824", "_thumbnail_id", "0");
INSERT INTO `wp_postmeta` VALUES("889", "824", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("890", "824", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("891", "824", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("892", "824", "_length", "");
INSERT INTO `wp_postmeta` VALUES("893", "824", "_width", "");
INSERT INTO `wp_postmeta` VALUES("894", "824", "_height", "");
INSERT INTO `wp_postmeta` VALUES("895", "824", "_manage_stock", "yes");
INSERT INTO `wp_postmeta` VALUES("896", "824", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("897", "824", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("898", "824", "_stock", "2");
INSERT INTO `wp_postmeta` VALUES("899", "824", "_regular_price", "200");
INSERT INTO `wp_postmeta` VALUES("900", "824", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("901", "824", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("902", "824", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("903", "824", "_price", "200");
INSERT INTO `wp_postmeta` VALUES("904", "824", "_download_limit", "");
INSERT INTO `wp_postmeta` VALUES("905", "824", "_download_expiry", "");
INSERT INTO `wp_postmeta` VALUES("906", "824", "_downloadable_files", "");
INSERT INTO `wp_postmeta` VALUES("907", "822", "_default_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("908", "822", "_product_image_gallery", "681");
INSERT INTO `wp_postmeta` VALUES("909", "822", "banner_description", "");
INSERT INTO `wp_postmeta` VALUES("910", "822", "heading_one", "");
INSERT INTO `wp_postmeta` VALUES("911", "822", "heading_two", "");
INSERT INTO `wp_postmeta` VALUES("925", "830", "_wp_attached_file", "2015/02/copy-WebLogo.jpg");
INSERT INTO `wp_postmeta` VALUES("926", "830", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("927", "830", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:117;s:4:\"file\";s:24:\"2015/02/copy-WebLogo.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"copy-WebLogo-150x117.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"copy-WebLogo-300x88.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"copy-WebLogo-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"copy-WebLogo-150x117.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"copy-WebLogo-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"team-thumbnail\";a:4:{s:4:\"file\";s:24:\"copy-WebLogo-380x117.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("928", "830", "_wp_attachment_is_custom_header", "accesspress-parallax");
INSERT INTO `wp_postmeta` VALUES("938", "834", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("939", "834", "_edit_lock", "1425585497:1");
INSERT INTO `wp_postmeta` VALUES("943", "834", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("944", "836", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("945", "836", "_edit_lock", "1425642297:1");
INSERT INTO `wp_postmeta` VALUES("949", "836", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("950", "838", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("951", "838", "_edit_lock", "1425585559:1");
INSERT INTO `wp_postmeta` VALUES("955", "838", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("956", "840", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("957", "840", "_edit_lock", "1425585531:1");
INSERT INTO `wp_postmeta` VALUES("961", "840", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("962", "836", "_my_meta", "a:2:{s:11:\"heading_one\";s:13:\"Baby Medi Box\";s:4:\"link\";s:55:\"http://chequerbox.co.za/product-category/baby-medi-aid/\";}");
INSERT INTO `wp_postmeta` VALUES("963", "842", "_wp_attached_file", "2015/03/Baby.jpg");
INSERT INTO `wp_postmeta` VALUES("964", "842", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1583;s:6:\"height\";i:780;s:4:\"file\";s:16:\"2015/03/Baby.jpg\";s:5:\"sizes\";a:1:{s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:16:\"Baby-315x155.jpg\";s:5:\"width\";i:315;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("965", "843", "_wp_attached_file", "2015/03/Photobooth.jpg");
INSERT INTO `wp_postmeta` VALUES("966", "843", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1583;s:6:\"height\";i:780;s:4:\"file\";s:22:\"2015/03/Photobooth.jpg\";s:5:\"sizes\";a:1:{s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:22:\"Photobooth-315x155.jpg\";s:5:\"width\";i:315;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("967", "844", "_wp_attached_file", "2015/03/Vending2.jpg");
INSERT INTO `wp_postmeta` VALUES("968", "844", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1583;s:6:\"height\";i:780;s:4:\"file\";s:20:\"2015/03/Vending2.jpg\";s:5:\"sizes\";a:1:{s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"Vending2-315x155.jpg\";s:5:\"width\";i:315;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("969", "845", "_wp_attached_file", "2015/03/Wedding.jpg");
INSERT INTO `wp_postmeta` VALUES("970", "845", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1583;s:6:\"height\";i:780;s:4:\"file\";s:19:\"2015/03/Wedding.jpg\";s:5:\"sizes\";a:1:{s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:19:\"Wedding-315x155.jpg\";s:5:\"width\";i:315;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("975", "846", "_wp_attached_file", "2015/03/FavIcon.png");
INSERT INTO `wp_postmeta` VALUES("976", "846", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:104;s:6:\"height\";i:69;s:4:\"file\";s:19:\"2015/03/FavIcon.png\";s:5:\"sizes\";a:3:{s:20:\"product-widget-thumb\";a:4:{s:4:\"file\";s:17:\"FavIcon-59x39.png\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:17:\"FavIcon-59x39.png\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"FavIcon-90x69.png\";s:5:\"width\";i:90;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("977", "847", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("978", "847", "_edit_lock", "1425320310:1");
INSERT INTO `wp_postmeta` VALUES("980", "847", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("981", "847", "sharing_disabled", "1");
INSERT INTO `wp_postmeta` VALUES("982", "847", "_my_meta", "a:2:{s:11:\"Designation\";s:42:\"A marketing graduate from Wits University.\";s:11:\"description\";s:222:\"After graduating, Joleen worked in sales & trade marketing before embarking on a two year stint in the UK.  She returned to complete her honors at Wits University and gained a few years’ experience in marketing research.\";}");
INSERT INTO `wp_postmeta` VALUES("983", "849", "_wp_attached_file", "2015/03/Joleen.png");
INSERT INTO `wp_postmeta` VALUES("984", "849", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:18:\"2015/03/Joleen.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("985", "847", "_thumbnail_id", "849");
INSERT INTO `wp_postmeta` VALUES("986", "850", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("987", "850", "_edit_lock", "1436193393:2");
INSERT INTO `wp_postmeta` VALUES("988", "850", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("989", "850", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("990", "852", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("991", "852", "_menu_item_menu_item_parent", "904");
INSERT INTO `wp_postmeta` VALUES("992", "852", "_menu_item_object_id", "850");
INSERT INTO `wp_postmeta` VALUES("993", "852", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("994", "852", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("995", "852", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("996", "852", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("997", "852", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("999", "852", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1000", "853", "_webhook_pending_delivery", "1");
INSERT INTO `wp_postmeta` VALUES("1001", "854", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1002", "854", "_edit_lock", "1435083324:1");
INSERT INTO `wp_postmeta` VALUES("1003", "854", "_wp_page_template", "page-right-sidebar.php");
INSERT INTO `wp_postmeta` VALUES("1004", "854", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1005", "838", "_my_meta", "a:1:{s:4:\"link\";s:69:\"http://chequerbox.co.za/photo-booth-green-screen-photo-booth-rentals/\";}");
INSERT INTO `wp_postmeta` VALUES("1006", "868", "_wp_attached_file", "2015/02/DSC_0722.jpg");
INSERT INTO `wp_postmeta` VALUES("1007", "868", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2464;s:6:\"height\";i:1632;s:4:\"file\";s:20:\"2015/02/DSC_0722.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0722-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0722-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0722-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"service-home-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0722-237x157.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"service-about-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0722-229x152.jpg\";s:5:\"width\";i:229;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-one-thumb\";a:4:{s:4:\"file\";s:19:\"DSC_0722-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-two-thumb\";a:4:{s:4:\"file\";s:19:\"DSC_0722-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"product-home-image\";a:4:{s:4:\"file\";s:20:\"DSC_0722-232x154.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"product-widget-thumb\";a:4:{s:4:\"file\";s:18:\"DSC_0722-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"DSC_0722-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"DSC_0722-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0722-234x155.jpg\";s:5:\"width\";i:234;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"aboutus-team-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0722-180x119.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:21:\"DSC_0722-1170x775.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:775;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"DSC_0722-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0722-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0722-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1009", "869", "_wp_attached_file", "2015/02/DSC_0794.jpg");
INSERT INTO `wp_postmeta` VALUES("1010", "869", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2464;s:6:\"height\";i:1632;s:4:\"file\";s:20:\"2015/02/DSC_0794.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0794-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0794-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0794-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"service-home-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0794-237x157.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"service-about-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0794-229x152.jpg\";s:5:\"width\";i:229;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-one-thumb\";a:4:{s:4:\"file\";s:19:\"DSC_0794-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-two-thumb\";a:4:{s:4:\"file\";s:19:\"DSC_0794-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"product-home-image\";a:4:{s:4:\"file\";s:20:\"DSC_0794-232x154.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"product-widget-thumb\";a:4:{s:4:\"file\";s:18:\"DSC_0794-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:19:\"DSC_0794-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"DSC_0794-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0794-234x155.jpg\";s:5:\"width\";i:234;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"aboutus-team-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0794-180x119.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:21:\"DSC_0794-1170x775.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:775;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"DSC_0794-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0794-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0794-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1011", "821", "_thumbnail_id", "682");
INSERT INTO `wp_postmeta` VALUES("1013", "870", "_wp_attached_file", "2015/02/DSC_0754.jpg");
INSERT INTO `wp_postmeta` VALUES("1014", "870", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1632;s:6:\"height\";i:2464;s:4:\"file\";s:20:\"2015/02/DSC_0754.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0754-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0754-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0754-678x1024.jpg\";s:5:\"width\";i:678;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"service-home-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0754-104x157.jpg\";s:5:\"width\";i:104;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"service-about-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0754-101x152.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-one-thumb\";a:4:{s:4:\"file\";s:18:\"DSC_0754-58x87.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-two-thumb\";a:4:{s:4:\"file\";s:18:\"DSC_0754-58x87.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"product-home-image\";a:4:{s:4:\"file\";s:20:\"DSC_0754-156x236.jpg\";s:5:\"width\";i:156;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"product-widget-thumb\";a:4:{s:4:\"file\";s:18:\"DSC_0754-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:18:\"DSC_0754-58x87.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"DSC_0754-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0754-103x155.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"aboutus-team-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0754-119x180.jpg\";s:5:\"width\";i:119;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:20:\"DSC_0754-530x800.jpg\";s:5:\"width\";i:530;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"DSC_0754-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0754-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0754-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1016", "871", "_wp_attached_file", "2015/02/DSC_0766.jpg");
INSERT INTO `wp_postmeta` VALUES("1017", "871", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1632;s:6:\"height\";i:2464;s:4:\"file\";s:20:\"2015/02/DSC_0766.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0766-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0766-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0766-678x1024.jpg\";s:5:\"width\";i:678;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"service-home-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0766-104x157.jpg\";s:5:\"width\";i:104;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"service-about-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0766-101x152.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-one-thumb\";a:4:{s:4:\"file\";s:18:\"DSC_0766-58x87.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-two-thumb\";a:4:{s:4:\"file\";s:18:\"DSC_0766-58x87.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"product-home-image\";a:4:{s:4:\"file\";s:20:\"DSC_0766-156x236.jpg\";s:5:\"width\";i:156;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"product-widget-thumb\";a:4:{s:4:\"file\";s:18:\"DSC_0766-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:18:\"DSC_0766-58x87.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:18:\"DSC_0766-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0766-103x155.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"aboutus-team-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0766-119x180.jpg\";s:5:\"width\";i:119;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:20:\"DSC_0766-530x800.jpg\";s:5:\"width\";i:530;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"DSC_0766-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0766-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0766-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1018", "769", "_thumbnail_id", "780");
INSERT INTO `wp_postmeta` VALUES("1019", "769", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1020", "769", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1021", "872", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1022", "872", "_edit_lock", "1427463437:1");
INSERT INTO `wp_postmeta` VALUES("1023", "872", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1024", "872", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1025", "872", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1026", "872", "total_sales", "1");
INSERT INTO `wp_postmeta` VALUES("1027", "872", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1028", "872", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1029", "872", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1030", "872", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1031", "872", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1032", "872", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1033", "872", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1034", "872", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1035", "872", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1036", "872", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1037", "872", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1038", "872", "_product_attributes", "a:1:{s:6:\"colour\";a:6:{s:4:\"name\";s:6:\"Colour\";s:5:\"value\";s:33:\"Navy Polka Dots | Jade Polka Dots\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1039", "872", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1040", "872", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1041", "872", "_price", "450");
INSERT INTO `wp_postmeta` VALUES("1042", "872", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1043", "872", "_manage_stock", "yes");
INSERT INTO `wp_postmeta` VALUES("1044", "872", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1045", "872", "_stock", "9");
INSERT INTO `wp_postmeta` VALUES("1046", "872", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1047", "872", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1048", "872", "_product_image_gallery", "653,875,1161,1162,1163");
INSERT INTO `wp_postmeta` VALUES("1049", "873", "_wp_attached_file", "2015/03/Hold-All-Bag-Complete_Navy-1024x681.jpg");
INSERT INTO `wp_postmeta` VALUES("1050", "873", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:47:\"2015/03/Hold-All-Bag-Complete_Navy-1024x681.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Hold-All-Bag-Complete_Navy-1024x681-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Hold-All-Bag-Complete_Navy-1024x681-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Hold-All-Bag-Complete_Navy-1024x681-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"service-home-thumb\";a:4:{s:4:\"file\";s:47:\"Hold-All-Bag-Complete_Navy-1024x681-236x157.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"service-about-thumb\";a:4:{s:4:\"file\";s:47:\"Hold-All-Bag-Complete_Navy-1024x681-229x152.jpg\";s:5:\"width\";i:229;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-one-thumb\";a:4:{s:4:\"file\";s:46:\"Hold-All-Bag-Complete_Navy-1024x681-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-two-thumb\";a:4:{s:4:\"file\";s:46:\"Hold-All-Bag-Complete_Navy-1024x681-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"product-home-image\";a:4:{s:4:\"file\";s:47:\"Hold-All-Bag-Complete_Navy-1024x681-232x154.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"product-widget-thumb\";a:4:{s:4:\"file\";s:45:\"Hold-All-Bag-Complete_Navy-1024x681-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:46:\"Hold-All-Bag-Complete_Navy-1024x681-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:45:\"Hold-All-Bag-Complete_Navy-1024x681-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:47:\"Hold-All-Bag-Complete_Navy-1024x681-233x155.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"aboutus-team-thumb\";a:4:{s:4:\"file\";s:47:\"Hold-All-Bag-Complete_Navy-1024x681-180x120.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"Hold-All-Bag-Complete_Navy-1024x681-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:47:\"Hold-All-Bag-Complete_Navy-1024x681-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:47:\"Hold-All-Bag-Complete_Navy-1024x681-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1052", "875", "_wp_attached_file", "2015/03/Dressing-Gown-681x1024.jpg");
INSERT INTO `wp_postmeta` VALUES("1053", "875", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:681;s:6:\"height\";i:1024;s:4:\"file\";s:34:\"2015/03/Dressing-Gown-681x1024.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Dressing-Gown-681x1024-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Dressing-Gown-681x1024-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Dressing-Gown-681x1024-681x1024.jpg\";s:5:\"width\";i:681;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"service-home-thumb\";a:4:{s:4:\"file\";s:34:\"Dressing-Gown-681x1024-104x157.jpg\";s:5:\"width\";i:104;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"service-about-thumb\";a:4:{s:4:\"file\";s:34:\"Dressing-Gown-681x1024-101x152.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-one-thumb\";a:4:{s:4:\"file\";s:32:\"Dressing-Gown-681x1024-58x87.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-two-thumb\";a:4:{s:4:\"file\";s:32:\"Dressing-Gown-681x1024-58x87.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"product-home-image\";a:4:{s:4:\"file\";s:34:\"Dressing-Gown-681x1024-157x236.jpg\";s:5:\"width\";i:157;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"product-widget-thumb\";a:4:{s:4:\"file\";s:32:\"Dressing-Gown-681x1024-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:32:\"Dressing-Gown-681x1024-58x87.jpg\";s:5:\"width\";i:58;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:32:\"Dressing-Gown-681x1024-26x39.jpg\";s:5:\"width\";i:26;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:34:\"Dressing-Gown-681x1024-103x155.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"aboutus-team-thumb\";a:4:{s:4:\"file\";s:34:\"Dressing-Gown-681x1024-120x180.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:34:\"Dressing-Gown-681x1024-532x800.jpg\";s:5:\"width\";i:532;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"Dressing-Gown-681x1024-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"Dressing-Gown-681x1024-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"Dressing-Gown-681x1024-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1054", "876", "_wp_attached_file", "2015/03/Wedding-Day_Weekender-Bag-Jade.jpg");
INSERT INTO `wp_postmeta` VALUES("1055", "876", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1015;s:6:\"height\";i:748;s:4:\"file\";s:42:\"2015/03/Wedding-Day_Weekender-Bag-Jade.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Wedding-Day_Weekender-Bag-Jade-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Wedding-Day_Weekender-Bag-Jade-300x221.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"service-home-thumb\";a:4:{s:4:\"file\";s:42:\"Wedding-Day_Weekender-Bag-Jade-213x157.jpg\";s:5:\"width\";i:213;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"service-about-thumb\";a:4:{s:4:\"file\";s:42:\"Wedding-Day_Weekender-Bag-Jade-206x152.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-one-thumb\";a:4:{s:4:\"file\";s:41:\"Wedding-Day_Weekender-Bag-Jade-118x87.jpg\";s:5:\"width\";i:118;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-two-thumb\";a:4:{s:4:\"file\";s:41:\"Wedding-Day_Weekender-Bag-Jade-118x87.jpg\";s:5:\"width\";i:118;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"product-home-image\";a:4:{s:4:\"file\";s:42:\"Wedding-Day_Weekender-Bag-Jade-232x171.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"product-widget-thumb\";a:4:{s:4:\"file\";s:40:\"Wedding-Day_Weekender-Bag-Jade-53x39.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:41:\"Wedding-Day_Weekender-Bag-Jade-118x87.jpg\";s:5:\"width\";i:118;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:40:\"Wedding-Day_Weekender-Bag-Jade-53x39.jpg\";s:5:\"width\";i:53;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:42:\"Wedding-Day_Weekender-Bag-Jade-210x155.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"aboutus-team-thumb\";a:4:{s:4:\"file\";s:42:\"Wedding-Day_Weekender-Bag-Jade-180x133.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"Wedding-Day_Weekender-Bag-Jade-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:42:\"Wedding-Day_Weekender-Bag-Jade-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:42:\"Wedding-Day_Weekender-Bag-Jade-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1056", "877", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1057", "877", "attribute_colour", "navy-polka-dots");
INSERT INTO `wp_postmeta` VALUES("1058", "878", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1059", "878", "attribute_colour", "jade-polka-dots");
INSERT INTO `wp_postmeta` VALUES("1060", "879", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1061", "877", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1062", "877", "_thumbnail_id", "0");
INSERT INTO `wp_postmeta` VALUES("1063", "877", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1064", "877", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1065", "877", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1066", "877", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1067", "877", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1068", "877", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1069", "877", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1070", "877", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1071", "877", "_regular_price", "450");
INSERT INTO `wp_postmeta` VALUES("1072", "877", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1073", "877", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1074", "877", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1075", "877", "_price", "450");
INSERT INTO `wp_postmeta` VALUES("1076", "877", "_download_limit", "");
INSERT INTO `wp_postmeta` VALUES("1077", "877", "_download_expiry", "");
INSERT INTO `wp_postmeta` VALUES("1078", "877", "_downloadable_files", "");
INSERT INTO `wp_postmeta` VALUES("1079", "878", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1080", "878", "_thumbnail_id", "0");
INSERT INTO `wp_postmeta` VALUES("1081", "878", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1082", "878", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1083", "878", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1084", "878", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1085", "878", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1086", "878", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1087", "878", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1088", "878", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1089", "878", "_regular_price", "450");
INSERT INTO `wp_postmeta` VALUES("1090", "878", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1091", "878", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1092", "878", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1093", "878", "_price", "450");
INSERT INTO `wp_postmeta` VALUES("1094", "878", "_download_limit", "");
INSERT INTO `wp_postmeta` VALUES("1095", "878", "_download_expiry", "");
INSERT INTO `wp_postmeta` VALUES("1096", "878", "_downloadable_files", "");
INSERT INTO `wp_postmeta` VALUES("1097", "879", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1098", "879", "_thumbnail_id", "0");
INSERT INTO `wp_postmeta` VALUES("1099", "879", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1100", "879", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1101", "879", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1102", "879", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1103", "879", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1104", "879", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1105", "879", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("1106", "879", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1107", "879", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("1108", "879", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1109", "879", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1110", "879", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1111", "879", "_price", "");
INSERT INTO `wp_postmeta` VALUES("1112", "879", "_download_limit", "");
INSERT INTO `wp_postmeta` VALUES("1113", "879", "_download_expiry", "");
INSERT INTO `wp_postmeta` VALUES("1114", "879", "_downloadable_files", "");
INSERT INTO `wp_postmeta` VALUES("1115", "879", "attribute_colour", "");
INSERT INTO `wp_postmeta` VALUES("1116", "872", "_min_variation_price", "450");
INSERT INTO `wp_postmeta` VALUES("1117", "872", "_max_variation_price", "450");
INSERT INTO `wp_postmeta` VALUES("1118", "872", "_min_price_variation_id", "878");
INSERT INTO `wp_postmeta` VALUES("1119", "872", "_max_price_variation_id", "878");
INSERT INTO `wp_postmeta` VALUES("1120", "872", "_min_variation_regular_price", "450");
INSERT INTO `wp_postmeta` VALUES("1121", "872", "_max_variation_regular_price", "450");
INSERT INTO `wp_postmeta` VALUES("1122", "872", "_min_regular_price_variation_id", "878");
INSERT INTO `wp_postmeta` VALUES("1123", "872", "_max_regular_price_variation_id", "878");
INSERT INTO `wp_postmeta` VALUES("1124", "872", "_min_variation_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1125", "872", "_max_variation_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1126", "872", "_min_sale_price_variation_id", "");
INSERT INTO `wp_postmeta` VALUES("1127", "872", "_max_sale_price_variation_id", "");
INSERT INTO `wp_postmeta` VALUES("1128", "872", "_default_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1129", "880", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1130", "880", "_edit_lock", "1427463323:1");
INSERT INTO `wp_postmeta` VALUES("1131", "881", "_wp_attached_file", "2015/03/Wedding-Survival-Kit_Top.jpg");
INSERT INTO `wp_postmeta` VALUES("1132", "881", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:769;s:6:\"height\";i:616;s:4:\"file\";s:36:\"2015/03/Wedding-Survival-Kit_Top.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Top-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Top-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"service-home-thumb\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Top-196x157.jpg\";s:5:\"width\";i:196;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"service-about-thumb\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Top-190x152.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-one-thumb\";a:4:{s:4:\"file\";s:35:\"Wedding-Survival-Kit_Top-109x87.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-two-thumb\";a:4:{s:4:\"file\";s:35:\"Wedding-Survival-Kit_Top-109x87.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"product-home-image\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Top-232x186.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"product-widget-thumb\";a:4:{s:4:\"file\";s:34:\"Wedding-Survival-Kit_Top-49x39.jpg\";s:5:\"width\";i:49;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:35:\"Wedding-Survival-Kit_Top-109x87.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:34:\"Wedding-Survival-Kit_Top-49x39.jpg\";s:5:\"width\";i:49;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Top-193x155.jpg\";s:5:\"width\";i:193;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"aboutus-team-thumb\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Top-180x144.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"Wedding-Survival-Kit_Top-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Top-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:36:\"Wedding-Survival-Kit_Top-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1134", "882", "_wp_attached_file", "2015/03/Wedding-Survival-Kit_Front-1024x933.jpg");
INSERT INTO `wp_postmeta` VALUES("1135", "882", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:933;s:4:\"file\";s:47:\"2015/03/Wedding-Survival-Kit_Front-1024x933.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Wedding-Survival-Kit_Front-1024x933-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Wedding-Survival-Kit_Front-1024x933-300x273.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:273;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Wedding-Survival-Kit_Front-1024x933-1024x933.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:933;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"service-home-thumb\";a:4:{s:4:\"file\";s:47:\"Wedding-Survival-Kit_Front-1024x933-172x157.jpg\";s:5:\"width\";i:172;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"service-about-thumb\";a:4:{s:4:\"file\";s:47:\"Wedding-Survival-Kit_Front-1024x933-167x152.jpg\";s:5:\"width\";i:167;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-one-thumb\";a:4:{s:4:\"file\";s:45:\"Wedding-Survival-Kit_Front-1024x933-95x87.jpg\";s:5:\"width\";i:95;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"service-two-thumb\";a:4:{s:4:\"file\";s:45:\"Wedding-Survival-Kit_Front-1024x933-95x87.jpg\";s:5:\"width\";i:95;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"product-home-image\";a:4:{s:4:\"file\";s:47:\"Wedding-Survival-Kit_Front-1024x933-232x211.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"product-widget-thumb\";a:4:{s:4:\"file\";s:45:\"Wedding-Survival-Kit_Front-1024x933-43x39.jpg\";s:5:\"width\";i:43;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:45:\"Wedding-Survival-Kit_Front-1024x933-95x87.jpg\";s:5:\"width\";i:95;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:45:\"Wedding-Survival-Kit_Front-1024x933-43x39.jpg\";s:5:\"width\";i:43;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:47:\"Wedding-Survival-Kit_Front-1024x933-170x155.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"aboutus-team-thumb\";a:4:{s:4:\"file\";s:47:\"Wedding-Survival-Kit_Front-1024x933-180x164.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"page-image\";a:4:{s:4:\"file\";s:47:\"Wedding-Survival-Kit_Front-1024x933-878x800.jpg\";s:5:\"width\";i:878;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"Wedding-Survival-Kit_Front-1024x933-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:47:\"Wedding-Survival-Kit_Front-1024x933-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:47:\"Wedding-Survival-Kit_Front-1024x933-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1136", "880", "_visibility", "visible");
INSERT INTO `wp_postmeta` VALUES("1137", "880", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("1138", "880", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1139", "880", "total_sales", "0");
INSERT INTO `wp_postmeta` VALUES("1140", "880", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("1141", "880", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("1142", "880", "_regular_price", "310");
INSERT INTO `wp_postmeta` VALUES("1143", "880", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("1144", "880", "_purchase_note", "");
INSERT INTO `wp_postmeta` VALUES("1145", "880", "_featured", "no");
INSERT INTO `wp_postmeta` VALUES("1146", "880", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("1147", "880", "_length", "");
INSERT INTO `wp_postmeta` VALUES("1148", "880", "_width", "");
INSERT INTO `wp_postmeta` VALUES("1149", "880", "_height", "");
INSERT INTO `wp_postmeta` VALUES("1150", "880", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("1151", "880", "_product_attributes", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1152", "880", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("1153", "880", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("1154", "880", "_price", "310");
INSERT INTO `wp_postmeta` VALUES("1155", "880", "_sold_individually", "");
INSERT INTO `wp_postmeta` VALUES("1156", "880", "_manage_stock", "yes");
INSERT INTO `wp_postmeta` VALUES("1157", "880", "_backorders", "no");
INSERT INTO `wp_postmeta` VALUES("1158", "880", "_stock", "10.000000");
INSERT INTO `wp_postmeta` VALUES("1159", "880", "_upsell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1160", "880", "_crosssell_ids", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("1161", "880", "_product_image_gallery", "882");
INSERT INTO `wp_postmeta` VALUES("1167", "765", "_edit_lock", "1433920925:2");
INSERT INTO `wp_postmeta` VALUES("1168", "765", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1169", "765", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1181", "888", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("1182", "888", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("1183", "888", "_menu_item_object_id", "888");
INSERT INTO `wp_postmeta` VALUES("1184", "888", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("1185", "888", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1186", "888", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1187", "888", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1188", "888", "_menu_item_url", "http://chequerbox.co.za/");
INSERT INTO `wp_postmeta` VALUES("1190", "888", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1193", "890", "_wp_attached_file", "2015/03/Web_3-1024x207_01.jpg");
INSERT INTO `wp_postmeta` VALUES("1194", "890", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:270;s:6:\"height\";i:157;s:4:\"file\";s:29:\"2015/03/Web_3-1024x207_01.jpg\";s:5:\"sizes\";a:2:{s:18:\"product-home-image\";a:4:{s:4:\"file\";s:29:\"Web_3-1024x207_01-232x135.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"product-widget-thumb\";a:4:{s:4:\"file\";s:27:\"Web_3-1024x207_01-67x39.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1195", "889", "_thumbnail_id", "890");
INSERT INTO `wp_postmeta` VALUES("1196", "889", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1197", "889", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1198", "889", "_edit_lock", "1425583359:1");
INSERT INTO `wp_postmeta` VALUES("1199", "889", "_my_meta", "a:1:{s:11:\"description\";s:21:\"Description goes here\";}");
INSERT INTO `wp_postmeta` VALUES("1200", "892", "_wp_attached_file", "2015/03/Web_3-1024x207_02.jpg");
INSERT INTO `wp_postmeta` VALUES("1201", "892", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:270;s:6:\"height\";i:157;s:4:\"file\";s:29:\"2015/03/Web_3-1024x207_02.jpg\";s:5:\"sizes\";a:2:{s:18:\"product-home-image\";a:4:{s:4:\"file\";s:29:\"Web_3-1024x207_02-232x135.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"product-widget-thumb\";a:4:{s:4:\"file\";s:27:\"Web_3-1024x207_02-67x39.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1202", "891", "_thumbnail_id", "892");
INSERT INTO `wp_postmeta` VALUES("1203", "891", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1204", "891", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1205", "891", "_my_meta", "a:2:{s:11:\"description\";s:21:\"Description goes here\";s:18:\"banner_description\";s:21:\"Description goes here\";}");
INSERT INTO `wp_postmeta` VALUES("1206", "891", "_edit_lock", "1425583769:1");
INSERT INTO `wp_postmeta` VALUES("1207", "894", "_wp_attached_file", "2015/03/Web_3-1024x207_03.jpg");
INSERT INTO `wp_postmeta` VALUES("1208", "894", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:270;s:6:\"height\";i:157;s:4:\"file\";s:29:\"2015/03/Web_3-1024x207_03.jpg\";s:5:\"sizes\";a:2:{s:18:\"product-home-image\";a:4:{s:4:\"file\";s:29:\"Web_3-1024x207_03-232x135.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"product-widget-thumb\";a:4:{s:4:\"file\";s:27:\"Web_3-1024x207_03-67x39.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1209", "893", "_thumbnail_id", "894");
INSERT INTO `wp_postmeta` VALUES("1210", "893", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1211", "893", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1212", "893", "_my_meta", "a:2:{s:11:\"description\";s:21:\"Description goes here\";s:18:\"banner_description\";s:21:\"Description goes here\";}");
INSERT INTO `wp_postmeta` VALUES("1213", "893", "_edit_lock", "1425583478:1");
INSERT INTO `wp_postmeta` VALUES("1214", "896", "_wp_attached_file", "2015/03/Web_3-1024x207_04.jpg");
INSERT INTO `wp_postmeta` VALUES("1215", "896", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:270;s:6:\"height\";i:157;s:4:\"file\";s:29:\"2015/03/Web_3-1024x207_04.jpg\";s:5:\"sizes\";a:2:{s:18:\"product-home-image\";a:4:{s:4:\"file\";s:29:\"Web_3-1024x207_04-232x135.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"product-widget-thumb\";a:4:{s:4:\"file\";s:27:\"Web_3-1024x207_04-67x39.jpg\";s:5:\"width\";i:67;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1216", "895", "_thumbnail_id", "896");
INSERT INTO `wp_postmeta` VALUES("1217", "895", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1218", "895", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1219", "895", "_my_meta", "a:2:{s:11:\"description\";s:21:\"Description goes here\";s:18:\"banner_description\";s:21:\"Description goes here\";}");
INSERT INTO `wp_postmeta` VALUES("1220", "895", "_edit_lock", "1425583728:1");
INSERT INTO `wp_postmeta` VALUES("1221", "898", "_thumbnail_id", "804");
INSERT INTO `wp_postmeta` VALUES("1222", "898", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1223", "898", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1224", "898", "_my_meta", "a:2:{s:11:\"description\";s:21:\"Description goes here\";s:18:\"banner_description\";s:21:\"Description goes here\";}");
INSERT INTO `wp_postmeta` VALUES("1225", "898", "_edit_lock", "1425583717:1");
INSERT INTO `wp_postmeta` VALUES("1226", "840", "_my_meta", "a:4:{s:18:\"banner_description\";s:19:\"The Vending Machine\";s:11:\"heading_one\";s:19:\"The Vending Machine\";s:11:\"heading_two\";s:19:\"The Vending Machine\";s:4:\"link\";s:25:\"http://chequerbox.co.za/#\";}");
INSERT INTO `wp_postmeta` VALUES("1227", "899", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1228", "899", "_edit_lock", "1425585187:1");
INSERT INTO `wp_postmeta` VALUES("1229", "899", "_thumbnail_id", "844");
INSERT INTO `wp_postmeta` VALUES("1230", "899", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1231", "899", "_my_meta", "a:4:{s:18:\"banner_description\";s:19:\"The Vending Machine\";s:11:\"heading_one\";s:19:\"The Vending Machine\";s:11:\"heading_two\";s:19:\"The Vending Machine\";s:4:\"link\";s:49:\"http://chequerbox.co.za/slider/vending-machines/#\";}");
INSERT INTO `wp_postmeta` VALUES("1232", "838", "_oembed_017a69e11db72051524aca983b11456d", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("1233", "834", "_my_meta", "a:1:{s:4:\"link\";s:58:\"http://chequerbox.co.za/product-category/wedding-day-kits/\";}");
INSERT INTO `wp_postmeta` VALUES("1234", "900", "_wp_attached_file", "2015/03/Wedding1.jpg");
INSERT INTO `wp_postmeta` VALUES("1235", "900", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1583;s:6:\"height\";i:580;s:4:\"file\";s:20:\"2015/03/Wedding1.jpg\";s:5:\"sizes\";a:1:{s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:20:\"Wedding1-366x134.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1236", "834", "_thumbnail_id", "900");
INSERT INTO `wp_postmeta` VALUES("1237", "901", "_wp_attached_file", "2015/03/Vending21.jpg");
INSERT INTO `wp_postmeta` VALUES("1238", "901", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1583;s:6:\"height\";i:580;s:4:\"file\";s:21:\"2015/03/Vending21.jpg\";s:5:\"sizes\";a:1:{s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:21:\"Vending21-366x134.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1239", "840", "_thumbnail_id", "901");
INSERT INTO `wp_postmeta` VALUES("1240", "902", "_wp_attached_file", "2015/03/Photobooth1.jpg");
INSERT INTO `wp_postmeta` VALUES("1241", "902", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1583;s:6:\"height\";i:580;s:4:\"file\";s:23:\"2015/03/Photobooth1.jpg\";s:5:\"sizes\";a:1:{s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:23:\"Photobooth1-366x134.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1242", "838", "_thumbnail_id", "902");
INSERT INTO `wp_postmeta` VALUES("1243", "903", "_wp_attached_file", "2015/03/Baby1.jpg");
INSERT INTO `wp_postmeta` VALUES("1244", "903", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1583;s:6:\"height\";i:580;s:4:\"file\";s:17:\"2015/03/Baby1.jpg\";s:5:\"sizes\";a:1:{s:18:\"index-slider-thumb\";a:4:{s:4:\"file\";s:17:\"Baby1-366x134.jpg\";s:5:\"width\";i:366;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1245", "836", "_thumbnail_id", "903");
INSERT INTO `wp_postmeta` VALUES("1246", "904", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("1247", "904", "_menu_item_menu_item_parent", "781");
INSERT INTO `wp_postmeta` VALUES("1248", "904", "_menu_item_object_id", "904");
INSERT INTO `wp_postmeta` VALUES("1249", "904", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("1250", "904", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1251", "904", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1252", "904", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1253", "904", "_menu_item_url", "#");
INSERT INTO `wp_postmeta` VALUES("1273", "907", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("1274", "907", "_menu_item_menu_item_parent", "904");
INSERT INTO `wp_postmeta` VALUES("1275", "907", "_menu_item_object_id", "907");
INSERT INTO `wp_postmeta` VALUES("1276", "907", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("1277", "907", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1278", "907", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1279", "907", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1280", "907", "_menu_item_url", "#");
INSERT INTO `wp_postmeta` VALUES("1282", "904", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1285", "907", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1288", "315", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1289", "315", "_yoast_wpseo_linkdex", "46");
INSERT INTO `wp_postmeta` VALUES("1290", "315", "_yoast_wpseo_focuskw", "photo booth");
INSERT INTO `wp_postmeta` VALUES("1291", "315", "_yoast_wpseo_metakeywords", "photo booth, photo booth rental, photo booth for kiddies party");
INSERT INTO `wp_postmeta` VALUES("1292", "315", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1293", "315", "image", "");
INSERT INTO `wp_postmeta` VALUES("1294", "315", "_layout", "layout-left-content");
INSERT INTO `wp_postmeta` VALUES("1295", "315", "_thumbnail_id", "466");
INSERT INTO `wp_postmeta` VALUES("1296", "468", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1297", "468", "_yoast_wpseo_linkdex", "36");
INSERT INTO `wp_postmeta` VALUES("1298", "468", "_thumbnail_id", "513");
INSERT INTO `wp_postmeta` VALUES("1299", "468", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1300", "468", "image", "");
INSERT INTO `wp_postmeta` VALUES("1301", "468", "_layout", "layout-left-content");
INSERT INTO `wp_postmeta` VALUES("1302", "468", "_yoast_wpseo_focuskw", "photo booth rental");
INSERT INTO `wp_postmeta` VALUES("1303", "468", "_yoast_wpseo_metakeywords", "photo booth, photo booth rental, photo booth for 21st birthday parties");
INSERT INTO `wp_postmeta` VALUES("1304", "484", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1305", "484", "_yoast_wpseo_linkdex", "39");
INSERT INTO `wp_postmeta` VALUES("1306", "484", "_yoast_wpseo_metakeywords", "photo booth, photo booth rental, photo booth rental for weddings");
INSERT INTO `wp_postmeta` VALUES("1307", "484", "_yoast_wpseo_focuskw", "photo booth rental");
INSERT INTO `wp_postmeta` VALUES("1308", "484", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1309", "484", "image", "");
INSERT INTO `wp_postmeta` VALUES("1310", "484", "_layout", "layout-left-content");
INSERT INTO `wp_postmeta` VALUES("1311", "484", "_thumbnail_id", "497");
INSERT INTO `wp_postmeta` VALUES("1312", "515", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1313", "515", "_yoast_wpseo_linkdex", "39");
INSERT INTO `wp_postmeta` VALUES("1314", "515", "_thumbnail_id", "516");
INSERT INTO `wp_postmeta` VALUES("1315", "515", "image", "");
INSERT INTO `wp_postmeta` VALUES("1316", "515", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1317", "515", "_yoast_wpseo_focuskw", "green screen");
INSERT INTO `wp_postmeta` VALUES("1318", "515", "_yoast_wpseo_metakeywords", "green screen photo booths, green screen photography, green screen hire");
INSERT INTO `wp_postmeta` VALUES("1319", "524", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1320", "524", "_thumbnail_id", "538");
INSERT INTO `wp_postmeta` VALUES("1321", "524", "_yoast_wpseo_linkdex", "31");
INSERT INTO `wp_postmeta` VALUES("1322", "524", "image", "");
INSERT INTO `wp_postmeta` VALUES("1323", "524", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1324", "524", "_yoast_wpseo_metakeywords", "photo booth, photo booth rental, photo booth for bachelorette parties");
INSERT INTO `wp_postmeta` VALUES("1325", "524", "_yoast_wpseo_focuskw", "photo booths");
INSERT INTO `wp_postmeta` VALUES("1326", "620", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1327", "620", "_yoast_wpseo_linkdex", "36");
INSERT INTO `wp_postmeta` VALUES("1328", "620", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1329", "620", "_yoast_wpseo_focuskw", "baby medical kit");
INSERT INTO `wp_postmeta` VALUES("1330", "620", "_yoast_wpseo_metakeywords", "baby medical kit, Baba Indaba Expo, Baba Indaba Expo Nasrec");
INSERT INTO `wp_postmeta` VALUES("1331", "620", "image", "");
INSERT INTO `wp_postmeta` VALUES("1332", "626", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1333", "626", "_yoast_wpseo_linkdex", "67");
INSERT INTO `wp_postmeta` VALUES("1334", "626", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1335", "626", "_yoast_wpseo_focuskw", "bobbiyo baby chair");
INSERT INTO `wp_postmeta` VALUES("1336", "626", "_yoast_wpseo_metakeywords", "baby chair, bobbiyo, snappi");
INSERT INTO `wp_postmeta` VALUES("1337", "626", "image", "");
INSERT INTO `wp_postmeta` VALUES("1338", "629", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1339", "629", "_yoast_wpseo_linkdex", "34");
INSERT INTO `wp_postmeta` VALUES("1340", "629", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1341", "629", "_yoast_wpseo_focuskw", "bobbiyo baby chair");
INSERT INTO `wp_postmeta` VALUES("1342", "629", "_yoast_wpseo_metakeywords", "Bobbiyo™ Baby Chair , bobbiyo baby chair, baby chair, snappi");
INSERT INTO `wp_postmeta` VALUES("1343", "629", "image", "");
INSERT INTO `wp_postmeta` VALUES("1344", "704", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1345", "704", "_yoast_wpseo_linkdex", "41");
INSERT INTO `wp_postmeta` VALUES("1346", "704", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1347", "704", "_yoast_wpseo_focuskw", "Baby Medi Aid");
INSERT INTO `wp_postmeta` VALUES("1348", "704", "_yoast_wpseo_metakeywords", "baby medi aid, The Bobbiyo™ Baby Chair, baby chair, baby medical kits");
INSERT INTO `wp_postmeta` VALUES("1349", "704", "image", "");
INSERT INTO `wp_postmeta` VALUES("1350", "724", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1351", "724", "_yoast_wpseo_linkdex", "34");
INSERT INTO `wp_postmeta` VALUES("1352", "724", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1353", "724", "_thumbnail_id", "735");
INSERT INTO `wp_postmeta` VALUES("1354", "724", "_yoast_wpseo_focuskw", "photo booth");
INSERT INTO `wp_postmeta` VALUES("1355", "724", "_yoast_wpseo_metakeywords", "photo booth, photo booth rental, photo booth for kiddies party, photo booth hire");
INSERT INTO `wp_postmeta` VALUES("1356", "724", "image", "");
INSERT INTO `wp_postmeta` VALUES("1357", "742", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1358", "742", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1359", "742", "_yoast_wpseo_linkdex", "29");
INSERT INTO `wp_postmeta` VALUES("1360", "742", "_thumbnail_id", "750");
INSERT INTO `wp_postmeta` VALUES("1361", "742", "_yoast_wpseo_focuskw", "photo booth");
INSERT INTO `wp_postmeta` VALUES("1362", "742", "_yoast_wpseo_metakeywords", "photo booth, photo booth hire, birthday party entertainment");
INSERT INTO `wp_postmeta` VALUES("1363", "742", "image", "");
INSERT INTO `wp_postmeta` VALUES("1364", "909", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1365", "909", "_yoast_wpseo_linkdex", "23");
INSERT INTO `wp_postmeta` VALUES("1366", "909", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1367", "909", "_yoast_wpseo_focuskw", "photo booth");
INSERT INTO `wp_postmeta` VALUES("1368", "909", "_yoast_wpseo_metakeywords", "photo booth hire, photo booth");
INSERT INTO `wp_postmeta` VALUES("1369", "909", "image", "");
INSERT INTO `wp_postmeta` VALUES("1370", "909", "_thumbnail_id", "774");
INSERT INTO `wp_postmeta` VALUES("1371", "910", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1372", "910", "_yoast_wpseo_linkdex", "29");
INSERT INTO `wp_postmeta` VALUES("1373", "910", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1374", "910", "_thumbnail_id", "786");
INSERT INTO `wp_postmeta` VALUES("1375", "910", "_yoast_wpseo_focuskw", "photo booth");
INSERT INTO `wp_postmeta` VALUES("1376", "910", "_yoast_wpseo_metakeywords", "photo booth hire, photo booth, reunion");
INSERT INTO `wp_postmeta` VALUES("1377", "910", "image", "");
INSERT INTO `wp_postmeta` VALUES("1378", "911", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1379", "911", "_yoast_wpseo_linkdex", "26");
INSERT INTO `wp_postmeta` VALUES("1380", "911", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1381", "911", "_thumbnail_id", "797");
INSERT INTO `wp_postmeta` VALUES("1382", "911", "_yoast_wpseo_focuskw", "photo booth");
INSERT INTO `wp_postmeta` VALUES("1383", "911", "_yoast_wpseo_metakeywords", "photo booth hire, photo booth");
INSERT INTO `wp_postmeta` VALUES("1384", "911", "image", "");
INSERT INTO `wp_postmeta` VALUES("1385", "912", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1386", "912", "_yoast_wpseo_linkdex", "26");
INSERT INTO `wp_postmeta` VALUES("1387", "912", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1388", "912", "_yoast_wpseo_focuskw", "baby medical kit");
INSERT INTO `wp_postmeta` VALUES("1389", "912", "_yoast_wpseo_metakeywords", "mamma magic, baby medical kit, Baby Medi Aid");
INSERT INTO `wp_postmeta` VALUES("1390", "912", "image", "");
INSERT INTO `wp_postmeta` VALUES("1391", "912", "_wp_old_slug", "see-baby-medi-aid-your-baby-medical-kit-at-mamma-magic-the-baby-expo");
INSERT INTO `wp_postmeta` VALUES("1392", "835", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1393", "835", "_yoast_wpseo_linkdex", "19");
INSERT INTO `wp_postmeta` VALUES("1394", "835", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1395", "835", "_yoast_wpseo_focuskw", "photo booth");
INSERT INTO `wp_postmeta` VALUES("1396", "835", "_yoast_wpseo_metakeywords", "photo booth hire, year end functions");
INSERT INTO `wp_postmeta` VALUES("1397", "835", "image", "");
INSERT INTO `wp_postmeta` VALUES("1398", "835", "_thumbnail_id", "910");
INSERT INTO `wp_postmeta` VALUES("1399", "913", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1400", "913", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1401", "913", "image", "");
INSERT INTO `wp_postmeta` VALUES("1403", "914", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1404", "914", "_yoast_wpseo_linkdex", "19");
INSERT INTO `wp_postmeta` VALUES("1405", "914", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1406", "914", "_thumbnail_id", "860");
INSERT INTO `wp_postmeta` VALUES("1407", "914", "_yoast_wpseo_focuskw", "photo booth rental");
INSERT INTO `wp_postmeta` VALUES("1408", "914", "_yoast_wpseo_metakeywords", "photo booth hire, party entertainment");
INSERT INTO `wp_postmeta` VALUES("1409", "914", "image", "");
INSERT INTO `wp_postmeta` VALUES("1410", "915", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1411", "915", "_yoast_wpseo_linkdex", "19");
INSERT INTO `wp_postmeta` VALUES("1412", "915", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1413", "915", "_thumbnail_id", "866");
INSERT INTO `wp_postmeta` VALUES("1414", "915", "_yoast_wpseo_focuskw", "photo booth rental");
INSERT INTO `wp_postmeta` VALUES("1415", "915", "_yoast_wpseo_metakeywords", "photo booth hire, party entertainment");
INSERT INTO `wp_postmeta` VALUES("1416", "915", "image", "");
INSERT INTO `wp_postmeta` VALUES("1417", "977", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1418", "977", "_thumbnail_id", "740");
INSERT INTO `wp_postmeta` VALUES("1419", "978", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1420", "978", "_yoast_wpseo_linkdex", "28");
INSERT INTO `wp_postmeta` VALUES("1421", "978", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1422", "978", "_thumbnail_id", "878");
INSERT INTO `wp_postmeta` VALUES("1423", "978", "_yoast_wpseo_focuskw", "photo booth hire johannesburg");
INSERT INTO `wp_postmeta` VALUES("1424", "978", "_yoast_wpseo_metakeywords", "photo booth hire");
INSERT INTO `wp_postmeta` VALUES("1425", "978", "image", "");
INSERT INTO `wp_postmeta` VALUES("1426", "979", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1427", "979", "_yoast_wpseo_linkdex", "28");
INSERT INTO `wp_postmeta` VALUES("1428", "979", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1429", "979", "_thumbnail_id", "888");
INSERT INTO `wp_postmeta` VALUES("1430", "979", "_yoast_wpseo_focuskw", "photo booth rental johannesburg");
INSERT INTO `wp_postmeta` VALUES("1431", "979", "_yoast_wpseo_metakeywords", "party entertainment");
INSERT INTO `wp_postmeta` VALUES("1432", "979", "image", "");
INSERT INTO `wp_postmeta` VALUES("1433", "980", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1434", "980", "_yoast_wpseo_linkdex", "31");
INSERT INTO `wp_postmeta` VALUES("1435", "980", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1436", "980", "_thumbnail_id", "897");
INSERT INTO `wp_postmeta` VALUES("1437", "980", "_yoast_wpseo_focuskw", "photo booth hire");
INSERT INTO `wp_postmeta` VALUES("1438", "980", "_yoast_wpseo_metakeywords", "photo booth weddings");
INSERT INTO `wp_postmeta` VALUES("1439", "980", "image", "");
INSERT INTO `wp_postmeta` VALUES("1440", "981", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1441", "981", "_yoast_wpseo_linkdex", "28");
INSERT INTO `wp_postmeta` VALUES("1442", "981", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1443", "981", "_thumbnail_id", "906");
INSERT INTO `wp_postmeta` VALUES("1444", "981", "_yoast_wpseo_focuskw", "photo booth hire johannesburg");
INSERT INTO `wp_postmeta` VALUES("1445", "981", "_yoast_wpseo_metakeywords", "year end party entertainment");
INSERT INTO `wp_postmeta` VALUES("1446", "981", "image", "");
INSERT INTO `wp_postmeta` VALUES("1447", "919", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1448", "919", "image", "");
INSERT INTO `wp_postmeta` VALUES("1449", "919", "_thumbnail_id", "920");
INSERT INTO `wp_postmeta` VALUES("1450", "919", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1451", "925", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1452", "925", "image", "");
INSERT INTO `wp_postmeta` VALUES("1453", "925", "_thumbnail_id", "928");
INSERT INTO `wp_postmeta` VALUES("1454", "925", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1455", "931", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1456", "931", "image", "");
INSERT INTO `wp_postmeta` VALUES("1457", "931", "_thumbnail_id", "934");
INSERT INTO `wp_postmeta` VALUES("1458", "931", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1459", "936", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1460", "936", "image", "");
INSERT INTO `wp_postmeta` VALUES("1461", "936", "_thumbnail_id", "937");
INSERT INTO `wp_postmeta` VALUES("1462", "936", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1463", "941", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1464", "941", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1465", "941", "_thumbnail_id", "942");
INSERT INTO `wp_postmeta` VALUES("1466", "941", "image", "");
INSERT INTO `wp_postmeta` VALUES("1467", "947", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1468", "947", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1469", "947", "_thumbnail_id", "950");
INSERT INTO `wp_postmeta` VALUES("1470", "947", "image", "");
INSERT INTO `wp_postmeta` VALUES("1471", "953", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1472", "953", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1473", "953", "_thumbnail_id", "956");
INSERT INTO `wp_postmeta` VALUES("1474", "953", "image", "");
INSERT INTO `wp_postmeta` VALUES("1475", "953", "_layout", "layout-left-content");
INSERT INTO `wp_postmeta` VALUES("1476", "953", "_yoast_wpseo_focuskw", "baby medical kit");
INSERT INTO `wp_postmeta` VALUES("1477", "953", "_yoast_wpseo_linkdex", "32");
INSERT INTO `wp_postmeta` VALUES("1478", "958", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1479", "958", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1480", "958", "_thumbnail_id", "959");
INSERT INTO `wp_postmeta` VALUES("1481", "958", "image", "");
INSERT INTO `wp_postmeta` VALUES("1482", "958", "_layout", "layout-left-content");
INSERT INTO `wp_postmeta` VALUES("1483", "958", "_yoast_wpseo_focuskw", "baby medical kit");
INSERT INTO `wp_postmeta` VALUES("1484", "958", "_yoast_wpseo_linkdex", "25");
INSERT INTO `wp_postmeta` VALUES("1485", "961", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1486", "961", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1487", "961", "_thumbnail_id", "962");
INSERT INTO `wp_postmeta` VALUES("1488", "961", "image", "");
INSERT INTO `wp_postmeta` VALUES("1489", "961", "_yoast_wpseo_focuskw", "ann richardson");
INSERT INTO `wp_postmeta` VALUES("1490", "961", "_yoast_wpseo_linkdex", "36");
INSERT INTO `wp_postmeta` VALUES("1491", "982", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1492", "982", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1493", "982", "_thumbnail_id", "740");
INSERT INTO `wp_postmeta` VALUES("1494", "982", "image", "");
INSERT INTO `wp_postmeta` VALUES("1495", "982", "_yoast_wpseo_focuskw", "Snappi® Baby Chair");
INSERT INTO `wp_postmeta` VALUES("1496", "982", "_yoast_wpseo_linkdex", "40");
INSERT INTO `wp_postmeta` VALUES("1497", "983", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1498", "983", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1499", "983", "_thumbnail_id", "1028");
INSERT INTO `wp_postmeta` VALUES("1500", "983", "image", "");
INSERT INTO `wp_postmeta` VALUES("1501", "983", "_yoast_wpseo_focuskw", "photo booth");
INSERT INTO `wp_postmeta` VALUES("1502", "983", "_yoast_wpseo_linkdex", "27");
INSERT INTO `wp_postmeta` VALUES("1503", "991", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1504", "991", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1505", "991", "_thumbnail_id", "1025");
INSERT INTO `wp_postmeta` VALUES("1506", "991", "image", "");
INSERT INTO `wp_postmeta` VALUES("1507", "991", "_yoast_wpseo_focuskw", "photo booth");
INSERT INTO `wp_postmeta` VALUES("1508", "991", "_yoast_wpseo_linkdex", "19");
INSERT INTO `wp_postmeta` VALUES("1509", "998", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1510", "998", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1511", "998", "_thumbnail_id", "1022");
INSERT INTO `wp_postmeta` VALUES("1512", "998", "image", "");
INSERT INTO `wp_postmeta` VALUES("1513", "998", "_yoast_wpseo_focuskw", "photo booth");
INSERT INTO `wp_postmeta` VALUES("1514", "998", "_yoast_wpseo_linkdex", "19");
INSERT INTO `wp_postmeta` VALUES("1515", "1006", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1516", "1006", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1517", "1006", "_thumbnail_id", "1020");
INSERT INTO `wp_postmeta` VALUES("1518", "1006", "image", "");
INSERT INTO `wp_postmeta` VALUES("1519", "1006", "_yoast_wpseo_focuskw", "photo booth rental");
INSERT INTO `wp_postmeta` VALUES("1520", "1006", "_yoast_wpseo_linkdex", "22");
INSERT INTO `wp_postmeta` VALUES("1521", "1017", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1522", "1017", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1523", "1017", "_thumbnail_id", "1030");
INSERT INTO `wp_postmeta` VALUES("1524", "1017", "image", "");
INSERT INTO `wp_postmeta` VALUES("1525", "1017", "_yoast_wpseo_focuskw", "photo booth");
INSERT INTO `wp_postmeta` VALUES("1526", "1017", "_yoast_wpseo_linkdex", "33");
INSERT INTO `wp_postmeta` VALUES("1530", "1006", "_edit_lock", "1425644227:1");
INSERT INTO `wp_postmeta` VALUES("1531", "1020", "_wp_attached_file", "2014/05/IMG_0266-300x200.jpg");
INSERT INTO `wp_postmeta` VALUES("1532", "1020", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2014/05/IMG_0266-300x200.jpg\";s:5:\"sizes\";a:2:{s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:27:\"IMG_0266-300x200-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:26:\"IMG_0266-300x200-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1533", "998", "_edit_lock", "1425644712:1");
INSERT INTO `wp_postmeta` VALUES("1534", "991", "_edit_lock", "1425644579:1");
INSERT INTO `wp_postmeta` VALUES("1535", "983", "_edit_lock", "1425644580:1");
INSERT INTO `wp_postmeta` VALUES("1536", "1022", "_wp_attached_file", "2014/05/IMG_0194-300x200.jpg");
INSERT INTO `wp_postmeta` VALUES("1537", "1022", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2014/05/IMG_0194-300x200.jpg\";s:5:\"sizes\";a:2:{s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:27:\"IMG_0194-300x200-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:26:\"IMG_0194-300x200-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1540", "1025", "_wp_attached_file", "2014/05/IMG_0283-300x200.jpg");
INSERT INTO `wp_postmeta` VALUES("1541", "1025", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2014/05/IMG_0283-300x200.jpg\";s:5:\"sizes\";a:2:{s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:27:\"IMG_0283-300x200-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:26:\"IMG_0283-300x200-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1544", "1028", "_wp_attached_file", "2014/05/IMG_0300-300x199.jpg");
INSERT INTO `wp_postmeta` VALUES("1545", "1028", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:199;s:4:\"file\";s:28:\"2014/05/IMG_0300-300x199.jpg\";s:5:\"sizes\";a:2:{s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:27:\"IMG_0300-300x199-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:26:\"IMG_0300-300x199-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1550", "1017", "_edit_lock", "1425644650:1");
INSERT INTO `wp_postmeta` VALUES("1551", "1030", "_wp_attached_file", "2014/06/IMG_0194-1024x682.jpg");
INSERT INTO `wp_postmeta` VALUES("1552", "1030", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:29:\"2014/06/IMG_0194-1024x682.jpg\";s:5:\"sizes\";a:2:{s:15:\"blog-left-thumb\";a:4:{s:4:\"file\";s:28:\"IMG_0194-1024x682-131x87.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"blog-widget-thumb\";a:4:{s:4:\"file\";s:27:\"IMG_0194-1024x682-59x39.jpg\";s:5:\"width\";i:59;s:6:\"height\";i:39;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1555", "845", "_wp_attachment_custom_header_last_used_blanc", "1425887122");
INSERT INTO `wp_postmeta` VALUES("1556", "845", "_wp_attachment_is_custom_header", "blanc");
INSERT INTO `wp_postmeta` VALUES("1557", "1034", "_wp_page_template", "uscescart.php");
INSERT INTO `wp_postmeta` VALUES("1558", "1035", "_wp_page_template", "uscesmember.php");
INSERT INTO `wp_postmeta` VALUES("1559", "801", "_wp_attachment_custom_header_last_used_accesspress-ray", "1425922407");
INSERT INTO `wp_postmeta` VALUES("1560", "801", "_wp_attachment_is_custom_header", "accesspress-ray");
INSERT INTO `wp_postmeta` VALUES("1561", "1036", "_wp_attached_file", "2015/03/cropped-Wedding1.jpg");
INSERT INTO `wp_postmeta` VALUES("1562", "1036", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("1563", "1036", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:450;s:4:\"file\";s:28:\"2015/03/cropped-Wedding1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-Wedding1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"cropped-Wedding1-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"cropped-Wedding1-1024x307.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-Wedding1-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"cropped-Wedding1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"cropped-Wedding1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"featured-image-medium\";a:4:{s:4:\"file\";s:28:\"cropped-Wedding1-768x350.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1564", "1036", "_wp_attachment_custom_header_last_used_radiate", "1425907946");
INSERT INTO `wp_postmeta` VALUES("1565", "1036", "_wp_attachment_is_custom_header", "radiate");
INSERT INTO `wp_postmeta` VALUES("1566", "1037", "_wp_attached_file", "2015/03/WebLogo.jpg");
INSERT INTO `wp_postmeta` VALUES("1567", "1037", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:290;s:6:\"height\";i:85;s:4:\"file\";s:19:\"2015/03/WebLogo.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"WebLogo-150x85.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"WebLogo-257x85.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1568", "1037", "_wp_attachment_custom_header_last_used_albar", "1425909515");
INSERT INTO `wp_postmeta` VALUES("1569", "1037", "_wp_attachment_is_custom_header", "albar");
INSERT INTO `wp_postmeta` VALUES("1570", "1038", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1571", "1038", "_form", "<p>Your Name (required)<br />\n    [text* your-name] </p>\n\n<p>Your Email (required)<br />\n    [email* your-email] </p>\n\n<p>Subject<br />\n    [text your-subject] </p>\n\n<p>Your Message<br />\n    [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>");
INSERT INTO `wp_postmeta` VALUES("1572", "1038", "_mail", "a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:35:\"[your-name] <info@chequerbox.co.za>\";s:4:\"body\";s:178:\"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 Chequerbox (http://chequerbox.co.za/wp2015)\";s:9:\"recipient\";s:21:\"info@chequerbox.co.za\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:1;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("1573", "1038", "_mail_2", "a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:36:\"Chequerbox <joleen@chequerbox.co.za>\";s:4:\"body\";s:120:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Chequerbox (http://chequerbox.co.za/wp2015)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:33:\"Reply-To: joleen@chequerbox.co.za\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("1574", "1038", "_messages", "a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}");
INSERT INTO `wp_postmeta` VALUES("1575", "1038", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("1576", "1038", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("1582", "1042", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1583", "1042", "_menu_item_menu_item_parent", "781");
INSERT INTO `wp_postmeta` VALUES("1584", "1042", "_menu_item_object_id", "854");
INSERT INTO `wp_postmeta` VALUES("1585", "1042", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1586", "1042", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1587", "1042", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1588", "1042", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1589", "1042", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1591", "1042", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1592", "1043", "_edit_lock", "1427396202:1");
INSERT INTO `wp_postmeta` VALUES("1593", "1043", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1595", "1043", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1598", "1043", "accesspress_ray_sidebar_layout", "no-sidebar");
INSERT INTO `wp_postmeta` VALUES("1600", "315", "_edit_lock", "1426074334:1");
INSERT INTO `wp_postmeta` VALUES("1613", "1049", "_edit_lock", "1426075672:1");
INSERT INTO `wp_postmeta` VALUES("1614", "1049", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1615", "1049", "_thumbnail_id", "900");
INSERT INTO `wp_postmeta` VALUES("1616", "1049", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1619", "1049", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("1620", "1051", "_edit_lock", "1426075662:1");
INSERT INTO `wp_postmeta` VALUES("1621", "1051", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1622", "1051", "_thumbnail_id", "902");
INSERT INTO `wp_postmeta` VALUES("1623", "1051", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1626", "1051", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("1627", "1053", "_edit_lock", "1426075643:1");
INSERT INTO `wp_postmeta` VALUES("1628", "1053", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1629", "1053", "_thumbnail_id", "901");
INSERT INTO `wp_postmeta` VALUES("1630", "1053", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1633", "1053", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("1634", "1055", "_edit_lock", "1426075635:1");
INSERT INTO `wp_postmeta` VALUES("1635", "1055", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1636", "1055", "_thumbnail_id", "903");
INSERT INTO `wp_postmeta` VALUES("1637", "1055", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1640", "1055", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("1655", "1060", "_edit_lock", "1436193091:2");
INSERT INTO `wp_postmeta` VALUES("1656", "1060", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1657", "1060", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1658", "1060", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("1659", "1065", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1660", "1065", "_menu_item_menu_item_parent", "904");
INSERT INTO `wp_postmeta` VALUES("1661", "1065", "_menu_item_object_id", "1060");
INSERT INTO `wp_postmeta` VALUES("1662", "1065", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1663", "1065", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1664", "1065", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1665", "1065", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1666", "1065", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1668", "1065", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1669", "1066", "_edit_lock", "1427396143:1");
INSERT INTO `wp_postmeta` VALUES("1670", "1066", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1671", "1067", "_wp_attached_file", "2015/03/VendingBox_436px-x-273px.png");
INSERT INTO `wp_postmeta` VALUES("1672", "1067", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:436;s:6:\"height\";i:273;s:4:\"file\";s:36:\"2015/03/VendingBox_436px-x-273px.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"VendingBox_436px-x-273px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"VendingBox_436px-x-273px-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"VendingBox_436px-x-273px-257x257.png\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:36:\"VendingBox_436px-x-273px-135x100.png\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:36:\"VendingBox_436px-x-273px-350x245.png\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:36:\"VendingBox_436px-x-273px-400x273.png\";s:5:\"width\";i:400;s:6:\"height\";i:273;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1674", "1066", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1677", "1066", "accesspress_ray_sidebar_layout", "no-sidebar");
INSERT INTO `wp_postmeta` VALUES("1678", "1069", "_edit_lock", "1427396095:1");
INSERT INTO `wp_postmeta` VALUES("1679", "1069", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1680", "1070", "_wp_attached_file", "2015/03/weddingkits_436px-x-273px.png");
INSERT INTO `wp_postmeta` VALUES("1681", "1070", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:436;s:6:\"height\";i:273;s:4:\"file\";s:37:\"2015/03/weddingkits_436px-x-273px.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"weddingkits_436px-x-273px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"weddingkits_436px-x-273px-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"weddingkits_436px-x-273px-257x257.png\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:37:\"weddingkits_436px-x-273px-135x100.png\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:37:\"weddingkits_436px-x-273px-350x245.png\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:37:\"weddingkits_436px-x-273px-400x273.png\";s:5:\"width\";i:400;s:6:\"height\";i:273;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1683", "1069", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1686", "1069", "accesspress_ray_sidebar_layout", "no-sidebar");
INSERT INTO `wp_postmeta` VALUES("1691", "1074", "_edit_lock", "1427396206:1");
INSERT INTO `wp_postmeta` VALUES("1692", "1074", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1694", "1074", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1697", "1074", "accesspress_ray_sidebar_layout", "no-sidebar");
INSERT INTO `wp_postmeta` VALUES("1707", "1077", "_wp_attached_file", "2015/03/Web_3-1024x207_011.jpg");
INSERT INTO `wp_postmeta` VALUES("1708", "1077", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:277;s:6:\"height\";i:161;s:4:\"file\";s:30:\"2015/03/Web_3-1024x207_011.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_011-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_011-257x161.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_011-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1709", "1078", "_wp_attached_file", "2015/03/Web_3-1024x207_021.jpg");
INSERT INTO `wp_postmeta` VALUES("1710", "1078", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:277;s:6:\"height\";i:161;s:4:\"file\";s:30:\"2015/03/Web_3-1024x207_021.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_021-257x161.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_021-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1711", "1079", "_wp_attached_file", "2015/03/Web_3-1024x207_031.jpg");
INSERT INTO `wp_postmeta` VALUES("1712", "1079", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:277;s:6:\"height\";i:161;s:4:\"file\";s:30:\"2015/03/Web_3-1024x207_031.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_031-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_031-257x161.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_031-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1713", "1080", "_wp_attached_file", "2015/03/Web_3-1024x207_041.jpg");
INSERT INTO `wp_postmeta` VALUES("1714", "1080", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:277;s:6:\"height\";i:161;s:4:\"file\";s:30:\"2015/03/Web_3-1024x207_041.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_041-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_041-257x161.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:30:\"Web_3-1024x207_041-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1728", "1081", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1729", "1082", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1730", "1083", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1731", "1084", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1748", "1090", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("1749", "1090", "_menu_item_menu_item_parent", "781");
INSERT INTO `wp_postmeta` VALUES("1750", "1090", "_menu_item_object_id", "1090");
INSERT INTO `wp_postmeta` VALUES("1751", "1090", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("1752", "1090", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1753", "1090", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1754", "1090", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1755", "1090", "_menu_item_url", "http://chequerbox.co.za/shop/baby-chair/snappi-baby-chair/");
INSERT INTO `wp_postmeta` VALUES("1757", "1090", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1758", "1093", "_edit_lock", "1436192927:2");
INSERT INTO `wp_postmeta` VALUES("1759", "1093", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1760", "1093", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1761", "1093", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("1762", "1095", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1763", "1095", "_menu_item_menu_item_parent", "904");
INSERT INTO `wp_postmeta` VALUES("1764", "1095", "_menu_item_object_id", "1093");
INSERT INTO `wp_postmeta` VALUES("1765", "1095", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1766", "1095", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1767", "1095", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1768", "1095", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1769", "1095", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1771", "1095", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1784", "854", "_thumbnail_id", "1080");
INSERT INTO `wp_postmeta` VALUES("1803", "1110", "_wp_attached_file", "2015/02/49_resized.jpg");
INSERT INTO `wp_postmeta` VALUES("1804", "1110", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1011;s:6:\"height\";i:1025;s:4:\"file\";s:22:\"2015/02/49_resized.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"49_resized-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"49_resized-296x300.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"49_resized-1010x1024.jpg\";s:5:\"width\";i:1010;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"49_resized-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"49_resized-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"49_resized-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:22:\"49_resized-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:22:\"49_resized-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:22:\"49_resized-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1805", "822", "_tax_status", "taxable");
INSERT INTO `wp_postmeta` VALUES("1806", "822", "_tax_class", "");
INSERT INTO `wp_postmeta` VALUES("1807", "821", "_tax_status", "taxable");
INSERT INTO `wp_postmeta` VALUES("1808", "821", "_tax_class", "");
INSERT INTO `wp_postmeta` VALUES("1809", "820", "_tax_status", "taxable");
INSERT INTO `wp_postmeta` VALUES("1810", "820", "_tax_class", "");
INSERT INTO `wp_postmeta` VALUES("1811", "812", "_tax_status", "taxable");
INSERT INTO `wp_postmeta` VALUES("1812", "812", "_tax_class", "");
INSERT INTO `wp_postmeta` VALUES("1817", "1114", "_wp_attached_file", "2015/03/140831_131016.jpg");
INSERT INTO `wp_postmeta` VALUES("1818", "1114", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2015/03/140831_131016.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"140831_131016-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"140831_131016-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"140831_131016-1024x600.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"140831_131016-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"140831_131016-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"140831_131016-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"140831_131016-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"140831_131016-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"140831_131016-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1819", "1115", "_wp_attached_file", "2015/03/140831_164527.jpg");
INSERT INTO `wp_postmeta` VALUES("1820", "1115", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2015/03/140831_164527.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"140831_164527-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"140831_164527-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"140831_164527-1024x600.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"140831_164527-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"140831_164527-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"140831_164527-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"140831_164527-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"140831_164527-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"140831_164527-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1821", "1116", "_wp_attached_file", "2015/03/20140927_145942.jpg");
INSERT INTO `wp_postmeta` VALUES("1822", "1116", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2015/03/20140927_145942.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20140927_145942-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20140927_145942-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20140927_145942-1024x600.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20140927_145942-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"20140927_145942-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20140927_145942-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:27:\"20140927_145942-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:27:\"20140927_145942-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:27:\"20140927_145942-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1823", "1117", "_wp_attached_file", "2015/03/20140927_150916.jpg");
INSERT INTO `wp_postmeta` VALUES("1824", "1117", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2015/03/20140927_150916.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20140927_150916-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20140927_150916-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20140927_150916-1024x600.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20140927_150916-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"20140927_150916-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20140927_150916-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:27:\"20140927_150916-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:27:\"20140927_150916-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:27:\"20140927_150916-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1825", "1118", "_wp_attached_file", "2015/03/IMG_0017.jpg");
INSERT INTO `wp_postmeta` VALUES("1826", "1118", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:843;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2015/03/IMG_0017.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0017-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0017-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0017-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_0017-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_0017-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0017-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0017-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0017-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1827", "1119", "_wp_attached_file", "2015/03/IMG_0021.jpg");
INSERT INTO `wp_postmeta` VALUES("1828", "1119", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2015/03/IMG_0021.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0021-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0021-1024x600.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0021-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_0021-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_0021-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0021-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0021-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0021-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1829", "1120", "_wp_attached_file", "2015/03/IMG_0030.jpg");
INSERT INTO `wp_postmeta` VALUES("1830", "1120", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2015/03/IMG_0030.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0030-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0030-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0030-1024x600.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0030-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_0030-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_0030-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0030-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0030-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0030-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1831", "1121", "_wp_attached_file", "2015/03/IMG_0032.jpg");
INSERT INTO `wp_postmeta` VALUES("1832", "1121", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2015/03/IMG_0032.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0032-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0032-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0032-1024x600.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0032-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_0032-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_0032-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0032-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0032-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0032-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1833", "1122", "_wp_attached_file", "2015/03/IMG_0035.jpg");
INSERT INTO `wp_postmeta` VALUES("1834", "1122", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2015/03/IMG_0035.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0035-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0035-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0035-1024x600.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0035-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_0035-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_0035-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0035-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0035-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0035-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1835", "1123", "_wp_attached_file", "2015/03/IMG_0315.jpg");
INSERT INTO `wp_postmeta` VALUES("1836", "1123", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2015/03/IMG_0315.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0315-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0315-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0315-1024x600.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0315-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_0315-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_0315-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0315-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0315-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0315-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1837", "1128", "_wp_attached_file", "2015/03/R5A0113.jpg");
INSERT INTO `wp_postmeta` VALUES("1838", "1128", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:1080;s:4:\"file\";s:19:\"2015/03/R5A0113.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"R5A0113-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"R5A0113-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"R5A0113-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"R5A0113-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"R5A0113-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"R5A0113-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:19:\"R5A0113-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:19:\"R5A0113-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:19:\"R5A0113-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1423236171;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1839", "1129", "_wp_attached_file", "2015/03/140830_211147.jpg");
INSERT INTO `wp_postmeta` VALUES("1840", "1129", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:2123;s:4:\"file\";s:25:\"2015/03/140830_211147.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"140830_211147-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"140830_211147-102x300.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"140830_211147-347x1024.jpg\";s:5:\"width\";i:347;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"140830_211147-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"140830_211147-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"140830_211147-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"140830_211147-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"140830_211147-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"140830_211147-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1409433127;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1841", "1130", "_wp_attached_file", "2015/03/141115_115751.jpg");
INSERT INTO `wp_postmeta` VALUES("1842", "1130", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:2130;s:4:\"file\";s:25:\"2015/03/141115_115751.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"141115_115751-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"141115_115751-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"141115_115751-346x1024.jpg\";s:5:\"width\";i:346;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"141115_115751-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"141115_115751-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"141115_115751-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"141115_115751-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"141115_115751-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"141115_115751-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1416052691;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1843", "1131", "_wp_attached_file", "2015/03/141115_191649.jpg");
INSERT INTO `wp_postmeta` VALUES("1844", "1131", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:2123;s:4:\"file\";s:25:\"2015/03/141115_191649.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"141115_191649-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"141115_191649-102x300.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"141115_191649-347x1024.jpg\";s:5:\"width\";i:347;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"141115_191649-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"141115_191649-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"141115_191649-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"141115_191649-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"141115_191649-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"141115_191649-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1416079030;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1845", "1132", "_wp_attached_file", "2015/03/141116_093812.jpg");
INSERT INTO `wp_postmeta` VALUES("1846", "1132", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:2100;s:4:\"file\";s:25:\"2015/03/141116_093812.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"141116_093812-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"141116_093812-103x300.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"141116_093812-351x1024.jpg\";s:5:\"width\";i:351;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"141116_093812-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"141116_093812-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"141116_093812-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"141116_093812-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"141116_093812-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"141116_093812-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1416130712;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1847", "1133", "_wp_attached_file", "2015/03/141205_131033.jpg");
INSERT INTO `wp_postmeta` VALUES("1848", "1133", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:2105;s:4:\"file\";s:25:\"2015/03/141205_131033.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"141205_131033-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"141205_131033-103x300.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"141205_131033-350x1024.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"141205_131033-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"141205_131033-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"141205_131033-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"141205_131033-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"141205_131033-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"141205_131033-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1417785052;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1849", "1134", "_wp_attached_file", "2015/03/141206_130131.jpg");
INSERT INTO `wp_postmeta` VALUES("1850", "1134", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:2123;s:4:\"file\";s:25:\"2015/03/141206_130131.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"141206_130131-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"141206_130131-102x300.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"141206_130131-347x1024.jpg\";s:5:\"width\";i:347;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"141206_130131-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"141206_130131-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"141206_130131-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"141206_130131-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"141206_130131-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"141206_130131-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1417870910;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1851", "1135", "_wp_attached_file", "2015/03/141210_124043.jpg");
INSERT INTO `wp_postmeta` VALUES("1852", "1135", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:2146;s:4:\"file\";s:25:\"2015/03/141210_124043.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"141210_124043-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"141210_124043-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"141210_124043-344x1024.jpg\";s:5:\"width\";i:344;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"141210_124043-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"141210_124043-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"141210_124043-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"141210_124043-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"141210_124043-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"141210_124043-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1418215261;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1853", "1136", "_wp_attached_file", "2015/03/141211_164842.jpg");
INSERT INTO `wp_postmeta` VALUES("1854", "1136", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:2137;s:4:\"file\";s:25:\"2015/03/141211_164842.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"141211_164842-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"141211_164842-101x300.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"141211_164842-345x1024.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"141211_164842-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"141211_164842-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"141211_164842-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"141211_164842-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"141211_164842-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"141211_164842-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1418316540;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1855", "1137", "_wp_attached_file", "2015/03/141212_121038.jpg");
INSERT INTO `wp_postmeta` VALUES("1856", "1137", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:2123;s:4:\"file\";s:25:\"2015/03/141212_121038.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"141212_121038-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"141212_121038-102x300.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"141212_121038-347x1024.jpg\";s:5:\"width\";i:347;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"141212_121038-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"141212_121038-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"141212_121038-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"141212_121038-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"141212_121038-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"141212_121038-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1418386256;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1857", "1138", "_wp_attached_file", "2015/03/141216_204140.jpg");
INSERT INTO `wp_postmeta` VALUES("1858", "1138", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:2114;s:4:\"file\";s:25:\"2015/03/141216_204140.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"141216_204140-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"141216_204140-102x300.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"141216_204140-349x1024.jpg\";s:5:\"width\";i:349;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"141216_204140-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"141216_204140-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"141216_204140-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"141216_204140-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"141216_204140-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"141216_204140-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1418762518;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1859", "1139", "_wp_attached_file", "2015/03/new-photo-booth.jpg");
INSERT INTO `wp_postmeta` VALUES("1860", "1139", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:27:\"2015/03/new-photo-booth.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1861", "1140", "_wp_attached_file", "2015/03/141123_160014.jpg");
INSERT INTO `wp_postmeta` VALUES("1862", "1140", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:892;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2015/03/141123_160014.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"141123_160014-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"141123_160014-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"141123_160014-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"141123_160014-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"141123_160014-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"141123_160014-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"141123_160014-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"141123_160014-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1416758415;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1863", "1141", "_wp_attached_file", "2015/03/IMG_0140.jpg");
INSERT INTO `wp_postmeta` VALUES("1864", "1141", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:20:\"2015/03/IMG_0140.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0140-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0140-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0140-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0140-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_0140-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_0140-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0140-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0140-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0140-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1399464713;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1865", "1142", "_wp_attached_file", "2015/02/DSC_0646.jpg");
INSERT INTO `wp_postmeta` VALUES("1866", "1142", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1464;s:6:\"height\";i:970;s:4:\"file\";s:20:\"2015/02/DSC_0646.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0646-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0646-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0646-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0646-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0646-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0646-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0646-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0646-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0646-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1867", "810", "_thumbnail_id", "1142");
INSERT INTO `wp_postmeta` VALUES("1868", "1143", "_wp_attached_file", "2015/02/DSC_0705.jpg");
INSERT INTO `wp_postmeta` VALUES("1869", "1143", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1464;s:6:\"height\";i:970;s:4:\"file\";s:20:\"2015/02/DSC_0705.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0705-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0705-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0705-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0705-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0705-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0705-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0705-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0705-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0705-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1870", "1144", "_wp_attached_file", "2015/02/DSC_0650.jpg");
INSERT INTO `wp_postmeta` VALUES("1871", "1144", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1464;s:6:\"height\";i:970;s:4:\"file\";s:20:\"2015/02/DSC_0650.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0650-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0650-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0650-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0650-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0650-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0650-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0650-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0650-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0650-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1882", "1150", "_edit_lock", "1427563176:1");
INSERT INTO `wp_postmeta` VALUES("1884", "1150", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1885", "1150", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1888", "1150", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("1893", "1152", "_edit_lock", "1427464011:1");
INSERT INTO `wp_postmeta` VALUES("1895", "1152", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1896", "1152", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1899", "1152", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("1900", "1154", "_edit_lock", "1427464112:1");
INSERT INTO `wp_postmeta` VALUES("1901", "1154", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1902", "1154", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1905", "1154", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("1906", "1156", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1907", "1156", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1910", "1156", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("1911", "1156", "_edit_lock", "1427463946:1");
INSERT INTO `wp_postmeta` VALUES("1912", "1158", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1913", "1158", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("1916", "1158", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("1917", "1158", "_edit_lock", "1427463924:1");
INSERT INTO `wp_postmeta` VALUES("1918", "1160", "_wp_attached_file", "2015/03/Wedding-Day-Kits4.jpg");
INSERT INTO `wp_postmeta` VALUES("1919", "1160", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2480;s:6:\"height\";i:1918;s:4:\"file\";s:29:\"2015/03/Wedding-Day-Kits4.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits4-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Wedding-Day-Kits4-1024x792.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits4-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits4-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits4-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits4-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits4-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits4-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1408541381;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1921", "1161", "_wp_attached_file", "2015/03/Wedding-Day-Kits1.jpg");
INSERT INTO `wp_postmeta` VALUES("1922", "1161", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2480;s:6:\"height\";i:1643;s:4:\"file\";s:29:\"2015/03/Wedding-Day-Kits1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits1-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Wedding-Day-Kits1-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits1-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits1-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits1-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits1-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1408544056;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1923", "1162", "_wp_attached_file", "2015/03/Wedding-Day-Kits2.jpg");
INSERT INTO `wp_postmeta` VALUES("1924", "1162", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1643;s:6:\"height\";i:2480;s:4:\"file\";s:29:\"2015/03/Wedding-Day-Kits2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits2-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Wedding-Day-Kits2-678x1024.jpg\";s:5:\"width\";i:678;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits2-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits2-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits2-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits2-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1408543371;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1925", "1163", "_wp_attached_file", "2015/03/Wedding-Day-Kits3.jpg");
INSERT INTO `wp_postmeta` VALUES("1926", "1163", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1546;s:6:\"height\";i:2480;s:4:\"file\";s:29:\"2015/03/Wedding-Day-Kits3.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits3-187x300.jpg\";s:5:\"width\";i:187;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Wedding-Day-Kits3-638x1024.jpg\";s:5:\"width\";i:638;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits3-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits3-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits3-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits3-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1408540573;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1927", "1164", "_wp_attached_file", "2015/02/Shopperbag1.jpg");
INSERT INTO `wp_postmeta` VALUES("1928", "1164", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1643;s:6:\"height\";i:2480;s:4:\"file\";s:23:\"2015/02/Shopperbag1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Shopperbag1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Shopperbag1-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Shopperbag1-678x1024.jpg\";s:5:\"width\";i:678;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Shopperbag1-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"Shopperbag1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"Shopperbag1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:23:\"Shopperbag1-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:23:\"Shopperbag1-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:23:\"Shopperbag1-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1408540806;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1929", "1165", "_wp_attached_file", "2015/02/Shopperbag2.jpg");
INSERT INTO `wp_postmeta` VALUES("1930", "1165", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1643;s:6:\"height\";i:2480;s:4:\"file\";s:23:\"2015/02/Shopperbag2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Shopperbag2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Shopperbag2-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Shopperbag2-678x1024.jpg\";s:5:\"width\";i:678;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Shopperbag2-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"Shopperbag2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"Shopperbag2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:23:\"Shopperbag2-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:23:\"Shopperbag2-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:23:\"Shopperbag2-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1408540268;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1931", "1166", "_wp_attached_file", "2015/02/Hold-All-Bags.jpg");
INSERT INTO `wp_postmeta` VALUES("1932", "1166", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2480;s:6:\"height\";i:1643;s:4:\"file\";s:25:\"2015/02/Hold-All-Bags.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Hold-All-Bags-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Hold-All-Bags-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Hold-All-Bags-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Hold-All-Bags-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"Hold-All-Bags-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"Hold-All-Bags-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"Hold-All-Bags-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"Hold-All-Bags-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"Hold-All-Bags-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1408541132;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1933", "1167", "_wp_attached_file", "2015/02/Hold-All-Bags2.jpg");
INSERT INTO `wp_postmeta` VALUES("1934", "1167", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1643;s:6:\"height\";i:2480;s:4:\"file\";s:26:\"2015/02/Hold-All-Bags2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Hold-All-Bags2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Hold-All-Bags2-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Hold-All-Bags2-678x1024.jpg\";s:5:\"width\";i:678;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Hold-All-Bags2-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"Hold-All-Bags2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Hold-All-Bags2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:26:\"Hold-All-Bags2-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:26:\"Hold-All-Bags2-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:26:\"Hold-All-Bags2-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1408541139;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1935", "1168", "_wp_attached_file", "2015/02/Hold-All-Bag-Complete_Navy.jpg");
INSERT INTO `wp_postmeta` VALUES("1936", "1168", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:38:\"2015/02/Hold-All-Bag-Complete_Navy.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Hold-All-Bag-Complete_Navy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Hold-All-Bag-Complete_Navy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"Hold-All-Bag-Complete_Navy-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:38:\"Hold-All-Bag-Complete_Navy-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:38:\"Hold-All-Bag-Complete_Navy-300x245.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1939", "1169", "_wp_attached_file", "2015/02/Wedding-Kit_Hold-All-Bag_Navy.jpg");
INSERT INTO `wp_postmeta` VALUES("1940", "1169", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1029;s:6:\"height\";i:862;s:4:\"file\";s:41:\"2015/02/Wedding-Kit_Hold-All-Bag_Navy.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag_Navy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag_Navy-300x251.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Wedding-Kit_Hold-All-Bag_Navy-1024x858.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:858;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag_Navy-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag_Navy-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag_Navy-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag_Navy-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag_Navy-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:41:\"Wedding-Kit_Hold-All-Bag_Navy-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1941", "822", "_thumbnail_id", "1169");
INSERT INTO `wp_postmeta` VALUES("1943", "1170", "_wp_attached_file", "2015/02/Baby-Medi-Box-Booklet.jpg");
INSERT INTO `wp_postmeta` VALUES("1944", "1170", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2480;s:6:\"height\";i:1487;s:4:\"file\";s:33:\"2015/02/Baby-Medi-Box-Booklet.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Baby-Medi-Box-Booklet-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Baby-Medi-Box-Booklet-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Baby-Medi-Box-Booklet-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Baby-Medi-Box-Booklet-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"Baby-Medi-Box-Booklet-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Baby-Medi-Box-Booklet-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:33:\"Baby-Medi-Box-Booklet-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:33:\"Baby-Medi-Box-Booklet-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:33:\"Baby-Medi-Box-Booklet-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1408552608;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1945", "1171", "_wp_attached_file", "2015/02/Baby-Medi-Box-1.jpg");
INSERT INTO `wp_postmeta` VALUES("1946", "1171", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2480;s:6:\"height\";i:1475;s:4:\"file\";s:27:\"2015/02/Baby-Medi-Box-1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-1-300x178.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Baby-Medi-Box-1-1024x609.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:609;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-1-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-1-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-1-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-1-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1396541574;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1947", "1172", "_wp_attached_file", "2015/02/Baby-Medi-Box-2.jpg");
INSERT INTO `wp_postmeta` VALUES("1948", "1172", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2480;s:6:\"height\";i:1643;s:4:\"file\";s:27:\"2015/02/Baby-Medi-Box-2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-2-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Baby-Medi-Box-2-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-2-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-2-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-2-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:27:\"Baby-Medi-Box-2-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1408539658;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1949", "1173", "_wp_attached_file", "2015/03/VendingBox.png");
INSERT INTO `wp_postmeta` VALUES("1950", "1173", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:342;s:4:\"file\";s:22:\"2015/03/VendingBox.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"VendingBox-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"VendingBox-300x128.png\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"VendingBox-257x257.png\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"VendingBox-600x342.png\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"VendingBox-600x342.png\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:22:\"VendingBox-135x100.png\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:22:\"VendingBox-350x245.png\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:22:\"VendingBox-400x342.png\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1951", "1174", "_wp_attached_file", "2015/03/ThePhotoBox.png");
INSERT INTO `wp_postmeta` VALUES("1952", "1174", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:333;s:4:\"file\";s:23:\"2015/03/ThePhotoBox.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"ThePhotoBox-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"ThePhotoBox-300x125.png\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"ThePhotoBox-257x257.png\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"ThePhotoBox-600x333.png\";s:5:\"width\";i:600;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"ThePhotoBox-600x333.png\";s:5:\"width\";i:600;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:23:\"ThePhotoBox-135x100.png\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:23:\"ThePhotoBox-350x245.png\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:23:\"ThePhotoBox-400x333.png\";s:5:\"width\";i:400;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1956", "1175", "_wp_attached_file", "2015/03/GreenScreen.jpg");
INSERT INTO `wp_postmeta` VALUES("1957", "1175", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:456;s:4:\"file\";s:23:\"2015/03/GreenScreen.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"GreenScreen-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"GreenScreen-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"GreenScreen-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"GreenScreen-600x456.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"GreenScreen-600x456.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:23:\"GreenScreen-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:23:\"GreenScreen-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:23:\"GreenScreen-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1958", "1176", "_wp_attached_file", "2015/03/traditional-photo-booth.jpg");
INSERT INTO `wp_postmeta` VALUES("1959", "1176", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:456;s:4:\"file\";s:35:\"2015/03/traditional-photo-booth.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"traditional-photo-booth-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"traditional-photo-booth-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"traditional-photo-booth-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"traditional-photo-booth-600x456.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"traditional-photo-booth-600x456.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:35:\"traditional-photo-booth-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:35:\"traditional-photo-booth-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:35:\"traditional-photo-booth-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1962", "1179", "_wp_attached_file", "2015/03/TheBabyMediBox.jpg");
INSERT INTO `wp_postmeta` VALUES("1963", "1179", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:277;s:6:\"height\";i:161;s:4:\"file\";s:26:\"2015/03/TheBabyMediBox.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"TheBabyMediBox-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"TheBabyMediBox-257x161.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:26:\"TheBabyMediBox-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1964", "1180", "_wp_attached_file", "2015/03/ThePhotoBox.jpg");
INSERT INTO `wp_postmeta` VALUES("1965", "1180", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:277;s:6:\"height\";i:161;s:4:\"file\";s:23:\"2015/03/ThePhotoBox.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"ThePhotoBox-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"ThePhotoBox-257x161.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:23:\"ThePhotoBox-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1966", "1181", "_wp_attached_file", "2015/03/VendingBox.jpg");
INSERT INTO `wp_postmeta` VALUES("1967", "1181", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:277;s:6:\"height\";i:161;s:4:\"file\";s:22:\"2015/03/VendingBox.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"VendingBox-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"VendingBox-257x161.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:22:\"VendingBox-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1968", "1182", "_wp_attached_file", "2015/03/WeddingBox.jpg");
INSERT INTO `wp_postmeta` VALUES("1969", "1182", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:277;s:6:\"height\";i:161;s:4:\"file\";s:22:\"2015/03/WeddingBox.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"WeddingBox-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"WeddingBox-257x161.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:22:\"WeddingBox-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("1970", "1074", "_thumbnail_id", "1180");
INSERT INTO `wp_postmeta` VALUES("1973", "1069", "_thumbnail_id", "1182");
INSERT INTO `wp_postmeta` VALUES("1976", "1066", "_thumbnail_id", "1181");
INSERT INTO `wp_postmeta` VALUES("1981", "1043", "_thumbnail_id", "1179");
INSERT INTO `wp_postmeta` VALUES("1986", "1185", "_wp_attached_file", "2015/03/Testimonials.png");
INSERT INTO `wp_postmeta` VALUES("1987", "1185", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:595;s:6:\"height\";i:595;s:4:\"file\";s:24:\"2015/03/Testimonials.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Testimonials-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Testimonials-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Testimonials-257x257.png\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:24:\"Testimonials-135x100.png\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:24:\"Testimonials-350x245.png\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:24:\"Testimonials-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2006", "812", "_thumbnail_id", "1166");
INSERT INTO `wp_postmeta` VALUES("2007", "1191", "_wp_attached_file", "2015/02/Shopperbag11.jpg");
INSERT INTO `wp_postmeta` VALUES("2008", "1191", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1643;s:6:\"height\";i:2480;s:4:\"file\";s:24:\"2015/02/Shopperbag11.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Shopperbag11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Shopperbag11-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Shopperbag11-678x1024.jpg\";s:5:\"width\";i:678;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Shopperbag11-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"Shopperbag11-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"Shopperbag11-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:24:\"Shopperbag11-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:24:\"Shopperbag11-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:24:\"Shopperbag11-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1408540806;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2009", "820", "_thumbnail_id", "1191");
INSERT INTO `wp_postmeta` VALUES("2010", "1193", "_wp_attached_file", "2015/03/weddingSurvivalkit.jpg");
INSERT INTO `wp_postmeta` VALUES("2011", "1193", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2216;s:6:\"height\";i:1424;s:4:\"file\";s:30:\"2015/03/weddingSurvivalkit.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"weddingSurvivalkit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"weddingSurvivalkit-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"weddingSurvivalkit-1024x658.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"weddingSurvivalkit-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"weddingSurvivalkit-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"weddingSurvivalkit-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:30:\"weddingSurvivalkit-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:30:\"weddingSurvivalkit-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:30:\"weddingSurvivalkit-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1369145717;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2012", "880", "_thumbnail_id", "1193");
INSERT INTO `wp_postmeta` VALUES("2013", "1194", "_wp_attached_file", "2015/03/Wedding-Day-Kits5.jpg");
INSERT INTO `wp_postmeta` VALUES("2014", "1194", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1914;s:6:\"height\";i:1398;s:4:\"file\";s:29:\"2015/03/Wedding-Day-Kits5.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits5-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Wedding-Day-Kits5-1024x748.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:748;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits5-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits5-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits5-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits5-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits5-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:29:\"Wedding-Day-Kits5-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1369149435;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2015", "872", "_thumbnail_id", "1194");
INSERT INTO `wp_postmeta` VALUES("2016", "1195", "_wp_attached_file", "2015/03/Comment_ReviewIcon.png");
INSERT INTO `wp_postmeta` VALUES("2017", "1195", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:174;s:6:\"height\";i:165;s:4:\"file\";s:30:\"2015/03/Comment_ReviewIcon.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Comment_ReviewIcon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:30:\"Comment_ReviewIcon-135x100.png\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2018", "1196", "_wp_attached_file", "2015/03/Comment_ReviewIcon2.png");
INSERT INTO `wp_postmeta` VALUES("2019", "1196", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:174;s:6:\"height\";i:165;s:4:\"file\";s:31:\"2015/03/Comment_ReviewIcon2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Comment_ReviewIcon2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:31:\"Comment_ReviewIcon2-135x100.png\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2020", "1197", "_wp_attached_file", "2015/03/Comment_ReviewIcon3.png");
INSERT INTO `wp_postmeta` VALUES("2021", "1197", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:174;s:6:\"height\";i:165;s:4:\"file\";s:31:\"2015/03/Comment_ReviewIcon3.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Comment_ReviewIcon3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:31:\"Comment_ReviewIcon3-135x100.png\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2022", "1158", "_thumbnail_id", "1195");
INSERT INTO `wp_postmeta` VALUES("2025", "1156", "_thumbnail_id", "1196");
INSERT INTO `wp_postmeta` VALUES("2028", "1154", "_thumbnail_id", "1197");
INSERT INTO `wp_postmeta` VALUES("2031", "1152", "_thumbnail_id", "1195");
INSERT INTO `wp_postmeta` VALUES("2034", "1150", "_thumbnail_id", "1196");
INSERT INTO `wp_postmeta` VALUES("2037", "1082", "_edit_lock", "1427564577:1");
INSERT INTO `wp_postmeta` VALUES("2038", "1082", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2039", "1082", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("2077", "1081", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2078", "1081", "_edit_lock", "1427564506:1");
INSERT INTO `wp_postmeta` VALUES("2079", "1083", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2080", "1083", "_edit_lock", "1427564522:1");
INSERT INTO `wp_postmeta` VALUES("2110", "1207", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2111", "1207", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("2112", "1207", "_menu_item_object_id", "766");
INSERT INTO `wp_postmeta` VALUES("2113", "1207", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2114", "1207", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2115", "1207", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2116", "1207", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2117", "1207", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2128", "1209", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2129", "1209", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("2130", "1209", "_menu_item_object_id", "767");
INSERT INTO `wp_postmeta` VALUES("2131", "1209", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2132", "1209", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2133", "1209", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2134", "1209", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2135", "1209", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2138", "1207", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("2140", "1209", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("2144", "1210", "_order_key", "wc_order_555d72a213729");
INSERT INTO `wp_postmeta` VALUES("2145", "1210", "_order_currency", "ZAR");
INSERT INTO `wp_postmeta` VALUES("2146", "1210", "_prices_include_tax", "no");
INSERT INTO `wp_postmeta` VALUES("2147", "1210", "_customer_ip_address", "105.184.163.93");
INSERT INTO `wp_postmeta` VALUES("2148", "1210", "_customer_user_agent", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36");
INSERT INTO `wp_postmeta` VALUES("2149", "1210", "_customer_user", "0");
INSERT INTO `wp_postmeta` VALUES("2150", "1210", "_created_via", "checkout");
INSERT INTO `wp_postmeta` VALUES("2151", "1210", "_order_version", "2.3.9");
INSERT INTO `wp_postmeta` VALUES("2152", "1210", "_order_shipping", "55");
INSERT INTO `wp_postmeta` VALUES("2153", "1210", "_billing_country", "ZA");
INSERT INTO `wp_postmeta` VALUES("2154", "1210", "_billing_first_name", "Jethran");
INSERT INTO `wp_postmeta` VALUES("2155", "1210", "_billing_last_name", "Matthee");
INSERT INTO `wp_postmeta` VALUES("2156", "1210", "_billing_company", "Chequerbox");
INSERT INTO `wp_postmeta` VALUES("2157", "1210", "_billing_address_1", "120 Serengeti Sands");
INSERT INTO `wp_postmeta` VALUES("2158", "1210", "_billing_address_2", "Eldoret street");
INSERT INTO `wp_postmeta` VALUES("2159", "1210", "_billing_city", "Sunninghill");
INSERT INTO `wp_postmeta` VALUES("2160", "1210", "_billing_state", "GP");
INSERT INTO `wp_postmeta` VALUES("2161", "1210", "_billing_postcode", "2191");
INSERT INTO `wp_postmeta` VALUES("2162", "1210", "_billing_email", "jethran@gmail.com");
INSERT INTO `wp_postmeta` VALUES("2163", "1210", "_billing_phone", "+27844143573");
INSERT INTO `wp_postmeta` VALUES("2164", "1210", "_shipping_country", "ZA");
INSERT INTO `wp_postmeta` VALUES("2165", "1210", "_shipping_first_name", "Jethran");
INSERT INTO `wp_postmeta` VALUES("2166", "1210", "_shipping_last_name", "Matthee");
INSERT INTO `wp_postmeta` VALUES("2167", "1210", "_shipping_company", "Chequerbox");
INSERT INTO `wp_postmeta` VALUES("2168", "1210", "_shipping_address_1", "120 Serengeti Sands");
INSERT INTO `wp_postmeta` VALUES("2169", "1210", "_shipping_address_2", "Eldoret street");
INSERT INTO `wp_postmeta` VALUES("2170", "1210", "_shipping_city", "Sunninghill");
INSERT INTO `wp_postmeta` VALUES("2171", "1210", "_shipping_state", "GP");
INSERT INTO `wp_postmeta` VALUES("2172", "1210", "_shipping_postcode", "2191");
INSERT INTO `wp_postmeta` VALUES("2173", "1210", "_payment_method", "payfast");
INSERT INTO `wp_postmeta` VALUES("2174", "1210", "_payment_method_title", "PayFast");
INSERT INTO `wp_postmeta` VALUES("2175", "1210", "_cart_discount", "0");
INSERT INTO `wp_postmeta` VALUES("2176", "1210", "_cart_discount_tax", "0");
INSERT INTO `wp_postmeta` VALUES("2177", "1210", "_order_tax", "0");
INSERT INTO `wp_postmeta` VALUES("2178", "1210", "_order_shipping_tax", "0");
INSERT INTO `wp_postmeta` VALUES("2179", "1210", "_order_total", "650.00");
INSERT INTO `wp_postmeta` VALUES("2180", "1210", "_download_permissions_granted", "1");
INSERT INTO `wp_postmeta` VALUES("2181", "1210", "_recorded_sales", "yes");
INSERT INTO `wp_postmeta` VALUES("2182", "1210", "_paid_date", "2015-05-21 06:04:20");
INSERT INTO `wp_postmeta` VALUES("2183", "1212", "_edit_lock", "1433794481:2");
INSERT INTO `wp_postmeta` VALUES("2184", "1212", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("2185", "1213", "_wp_attached_file", "2015/06/150530_183743.jpg");
INSERT INTO `wp_postmeta` VALUES("2186", "1213", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:621;s:6:\"height\";i:1835;s:4:\"file\";s:25:\"2015/06/150530_183743.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"150530_183743-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"150530_183743-102x300.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"150530_183743-347x1024.jpg\";s:5:\"width\";i:347;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"150530_183743-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"150530_183743-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"150530_183743-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"150530_183743-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"150530_183743-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"150530_183743-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2187", "1214", "_wp_attached_file", "2015/06/150606_204843.jpg");
INSERT INTO `wp_postmeta` VALUES("2188", "1214", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:625;s:6:\"height\";i:1839;s:4:\"file\";s:25:\"2015/06/150606_204843.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"150606_204843-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"150606_204843-102x300.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"150606_204843-348x1024.jpg\";s:5:\"width\";i:348;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"150606_204843-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"150606_204843-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"150606_204843-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:25:\"150606_204843-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:25:\"150606_204843-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:25:\"150606_204843-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2189", "1215", "_wp_attached_file", "2015/06/IMG_0152.jpg");
INSERT INTO `wp_postmeta` VALUES("2190", "1215", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:4:\"file\";s:20:\"2015/06/IMG_0152.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0152-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0152-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0152-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0152-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_0152-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_0152-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0152-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0152-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0152-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2191", "1212", "_thumbnail_id", "1215");
INSERT INTO `wp_postmeta` VALUES("2192", "1212", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("2193", "1212", "_yoast_wpseo_focuskw", "photo booths at weddings");
INSERT INTO `wp_postmeta` VALUES("2194", "1212", "_yoast_wpseo_linkdex", "46");
INSERT INTO `wp_postmeta` VALUES("2195", "1212", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("2196", "1084", "_edit_lock", "1436440294:2");
INSERT INTO `wp_postmeta` VALUES("2197", "765", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("2198", "1221", "_edit_lock", "1434014589:2");
INSERT INTO `wp_postmeta` VALUES("2199", "1221", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("2202", "1223", "_wp_attached_file", "2015/06/Copy-of-1-69.jpg");
INSERT INTO `wp_postmeta` VALUES("2203", "1223", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1089;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2015/06/Copy-of-1-69.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Copy-of-1-69-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Copy-of-1-69-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Copy-of-1-69-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Copy-of-1-69-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"Copy-of-1-69-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"Copy-of-1-69-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:24:\"Copy-of-1-69-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:24:\"Copy-of-1-69-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:24:\"Copy-of-1-69-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2204", "1223", "_wp_attachment_image_alt", "photo booth");
INSERT INTO `wp_postmeta` VALUES("2205", "1221", "_thumbnail_id", "1223");
INSERT INTO `wp_postmeta` VALUES("2206", "1221", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("2207", "1221", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("2212", "1221", "_yoast_wpseo_focuskw", "photo booth specials");
INSERT INTO `wp_postmeta` VALUES("2213", "1221", "_yoast_wpseo_linkdex", "43");
INSERT INTO `wp_postmeta` VALUES("2214", "1227", "_wp_attached_file", "2015/06/new-photo-booth.jpg");
INSERT INTO `wp_postmeta` VALUES("2215", "1227", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:27:\"2015/06/new-photo-booth.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:27:\"new-photo-booth-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2216", "789", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("2217", "1233", "_wp_attached_file", "2015/06/Jet_small.jpg");
INSERT INTO `wp_postmeta` VALUES("2218", "1233", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:135;s:6:\"height\";i:203;s:4:\"file\";s:21:\"2015/06/Jet_small.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Jet_small-135x150.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:21:\"Jet_small-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2219", "1234", "_wp_attached_file", "2015/06/Joleen_small.jpg");
INSERT INTO `wp_postmeta` VALUES("2220", "1234", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:135;s:6:\"height\";i:203;s:4:\"file\";s:24:\"2015/06/Joleen_small.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Joleen_small-135x150.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:24:\"Joleen_small-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2221", "783", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("2222", "1239", "_wp_attached_file", "2015/06/SocialBooth.jpg");
INSERT INTO `wp_postmeta` VALUES("2223", "1239", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:816;s:4:\"file\";s:23:\"2015/06/SocialBooth.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"SocialBooth-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"SocialBooth-300x122.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"SocialBooth-1024x418.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:418;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"SocialBooth-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"SocialBooth-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"SocialBooth-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:23:\"SocialBooth-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:23:\"SocialBooth-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:23:\"SocialBooth-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2224", "1060", "_yoast_wpseo_focuskw", "hashtag printer");
INSERT INTO `wp_postmeta` VALUES("2225", "1060", "_yoast_wpseo_linkdex", "64");
INSERT INTO `wp_postmeta` VALUES("2226", "850", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("2227", "850", "_yoast_wpseo_focuskw", "photobooth");
INSERT INTO `wp_postmeta` VALUES("2228", "850", "_yoast_wpseo_linkdex", "82");
INSERT INTO `wp_postmeta` VALUES("2229", "1093", "_yoast_wpseo_focuskw", "green screen photobooth");
INSERT INTO `wp_postmeta` VALUES("2230", "1093", "_yoast_wpseo_linkdex", "68");
INSERT INTO `wp_postmeta` VALUES("2231", "850", "_yoast_wpseo_metadesc", "traditional photobooth, photobooth hire, photobooth hire in johannesburg");
INSERT INTO `wp_postmeta` VALUES("2232", "1093", "_yoast_wpseo_metadesc", "green screen photobooth, green screen open photobooth");
INSERT INTO `wp_postmeta` VALUES("2233", "1060", "_yoast_wpseo_metadesc", "hashtag printer, social photobooth, instagram and twitter printer");
INSERT INTO `wp_postmeta` VALUES("2234", "1258", "_edit_lock", "1436966517:2");
INSERT INTO `wp_postmeta` VALUES("2235", "1258", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("2239", "1260", "_wp_attached_file", "2015/07/ReneMilaBirthday_Options.jpg");
INSERT INTO `wp_postmeta` VALUES("2240", "1260", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1414;s:4:\"file\";s:36:\"2015/07/ReneMilaBirthday_Options.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"ReneMilaBirthday_Options-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"ReneMilaBirthday_Options-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"ReneMilaBirthday_Options-1024x724.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"ReneMilaBirthday_Options-257x257.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"ReneMilaBirthday_Options-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:36:\"ReneMilaBirthday_Options-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"event-thumbnail\";a:4:{s:4:\"file\";s:36:\"ReneMilaBirthday_Options-135x100.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"featured-thumbnail\";a:4:{s:4:\"file\";s:36:\"ReneMilaBirthday_Options-350x245.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-thumbnail\";a:4:{s:4:\"file\";s:36:\"ReneMilaBirthday_Options-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2241", "1260", "_wp_attachment_image_alt", "photobooth strips");
INSERT INTO `wp_postmeta` VALUES("2242", "1258", "accesspress_ray_sidebar_layout", "right-sidebar");
INSERT INTO `wp_postmeta` VALUES("2243", "1258", "_yoast_wpseo_focuskw", "photobooth");
INSERT INTO `wp_postmeta` VALUES("2244", "1258", "_yoast_wpseo_metadesc", "photobooth hire");
INSERT INTO `wp_postmeta` VALUES("2245", "1258", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("2248", "1258", "_yoast_wpseo_linkdex", "54");
INSERT INTO `wp_postmeta` VALUES("2249", "1263", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("2250", "1264", "_wpas_done_all", "1");
INSERT INTO `wp_postmeta` VALUES("2251", "1263", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2252", "1263", "_thumbnail_id", "0");
INSERT INTO `wp_postmeta` VALUES("2253", "1263", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2254", "1263", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2255", "1263", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2256", "1263", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2257", "1263", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2258", "1263", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2259", "1263", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2260", "1263", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2261", "1263", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2262", "1263", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2263", "1263", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2264", "1263", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2265", "1263", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2266", "1263", "_download_limit", "");
INSERT INTO `wp_postmeta` VALUES("2267", "1263", "_download_expiry", "");
INSERT INTO `wp_postmeta` VALUES("2268", "1263", "_downloadable_files", "");
INSERT INTO `wp_postmeta` VALUES("2269", "1263", "attribute_colour", "");
INSERT INTO `wp_postmeta` VALUES("2270", "1264", "_sku", "");
INSERT INTO `wp_postmeta` VALUES("2271", "1264", "_thumbnail_id", "0");
INSERT INTO `wp_postmeta` VALUES("2272", "1264", "_virtual", "no");
INSERT INTO `wp_postmeta` VALUES("2273", "1264", "_downloadable", "no");
INSERT INTO `wp_postmeta` VALUES("2274", "1264", "_weight", "");
INSERT INTO `wp_postmeta` VALUES("2275", "1264", "_length", "");
INSERT INTO `wp_postmeta` VALUES("2276", "1264", "_width", "");
INSERT INTO `wp_postmeta` VALUES("2277", "1264", "_height", "");
INSERT INTO `wp_postmeta` VALUES("2278", "1264", "_manage_stock", "no");
INSERT INTO `wp_postmeta` VALUES("2279", "1264", "_stock_status", "instock");
INSERT INTO `wp_postmeta` VALUES("2280", "1264", "_regular_price", "");
INSERT INTO `wp_postmeta` VALUES("2281", "1264", "_sale_price", "");
INSERT INTO `wp_postmeta` VALUES("2282", "1264", "_sale_price_dates_from", "");
INSERT INTO `wp_postmeta` VALUES("2283", "1264", "_sale_price_dates_to", "");
INSERT INTO `wp_postmeta` VALUES("2284", "1264", "_price", "");
INSERT INTO `wp_postmeta` VALUES("2285", "1264", "_download_limit", "");
INSERT INTO `wp_postmeta` VALUES("2286", "1264", "_download_expiry", "");
INSERT INTO `wp_postmeta` VALUES("2287", "1264", "_downloadable_files", "");
INSERT INTO `wp_postmeta` VALUES("2288", "1264", "attribute_colour", "");

/* INSERT TABLE DATA: wp_posts */
INSERT INTO `wp_posts` VALUES("4", "1", "2015-02-03 08:08:39", "2015-02-03 08:08:39", "", "Logo_Text_converted-to-ouline", "", "inherit", "open", "open", "", "logo_text_converted-to-ouline", "", "", "2015-02-03 08:08:39", "2015-02-03 08:08:39", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Logo_Text_converted-to-ouline.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("5", "1", "2015-02-03 08:11:29", "2015-02-03 08:11:29", "", "Logo_Text_converted to ouline", "", "inherit", "open", "open", "", "logo_text_converted-to-ouline-2", "", "", "2015-02-03 08:11:29", "2015-02-03 08:11:29", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Logo_Text_converted-to-ouline1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("73", "1", "2013-05-12 21:47:41", "2013-05-12 19:47:41", "", "Denel Admin_Apr13", "", "inherit", "open", "open", "", "denel-admin_apr13", "", "", "2013-05-12 21:47:41", "2013-05-12 19:47:41", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Denel-Admin_Apr13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("95", "1", "2013-05-12 22:45:11", "2013-05-12 20:45:11", "", "photo-booth", "Photo booths", "inherit", "open", "open", "", "photo-booth-2", "", "", "2013-05-12 22:45:11", "2013-05-12 20:45:11", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/photo-booth.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("127", "1", "2013-05-15 16:39:36", "2013-05-15 14:39:36", "baby medical kit", "Baby Aid_Top", "", "inherit", "open", "open", "", "baby-aid_top", "", "", "2013-05-15 16:39:36", "2013-05-15 14:39:36", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Baby-Aid_Top.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("150", "1", "2013-05-23 19:32:00", "2013-05-23 17:32:00", "", "Denel Admin_Apr13", "", "inherit", "open", "open", "", "denel-admin_apr13-2", "", "", "2013-05-23 19:32:00", "2013-05-23 17:32:00", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Denel-Admin_Apr131.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("151", "1", "2013-05-23 19:32:53", "2013-05-23 17:32:53", "", "Denel Factory_Apr13", "", "inherit", "open", "open", "", "denel-factory_apr13", "", "", "2013-05-23 19:32:53", "2013-05-23 17:32:53", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Denel-Factory_Apr13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("152", "1", "2013-05-23 19:33:33", "2013-05-23 17:33:33", "", "Denel PMP_Apr13", "", "inherit", "open", "open", "", "denel-pmp_apr13", "", "", "2013-05-23 19:33:33", "2013-05-23 17:33:33", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Denel-PMP_Apr13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("159", "1", "2013-05-23 20:46:14", "2013-05-23 18:46:14", "baby medical kit", "Baby Medi Aid - Medical Kit", "baby medi aid", "inherit", "open", "open", "", "baby-aid_front_v2", "", "", "2013-05-23 20:46:14", "2013-05-23 18:46:14", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Baby-Aid_Front_v2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("161", "1", "2013-05-23 20:56:28", "2013-05-23 18:56:28", "", "Wedding Survival Kit_Front", "", "inherit", "open", "open", "", "wedding-survival-kit_front", "", "", "2013-05-23 20:56:28", "2013-05-23 18:56:28", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Wedding-Survival-Kit_Front.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("163", "1", "2013-05-23 20:57:05", "2013-05-23 18:57:05", "wedding day survival kit", "Wedding Day Survival Kit", "", "inherit", "open", "open", "", "wedding-survival-kit_top", "", "", "2013-05-23 20:57:05", "2013-05-23 18:57:05", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Wedding-Survival-Kit_Top.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("166", "1", "2013-05-23 21:15:02", "2013-05-23 19:15:02", "wedding bag", "Wedding Day Hold All Bag (Jade Polka Dots)", "", "inherit", "open", "open", "", "wedding-kit_hold-all-bag-jade", "", "", "2013-05-23 21:15:02", "2013-05-23 19:15:02", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Wedding-Kit_Hold-All-Bag-Jade.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("167", "1", "2013-05-23 21:15:19", "2013-05-23 19:15:19", "", "Wedding Day Hold All Bag (Jade Polka Dots)", "", "inherit", "open", "open", "", "wedding-kit_hold-all-bag-jade_front_v1", "", "", "2013-05-23 21:15:19", "2013-05-23 19:15:19", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Wedding-Kit_Hold-All-Bag-Jade_Front_v1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("168", "1", "2013-05-23 21:15:38", "2013-05-23 19:15:38", "wedding bag", "Wedding Day Hold All Bag Navy", "", "inherit", "open", "open", "", "wedding-kit_hold-all-bag_navy", "", "", "2013-05-23 21:15:38", "2013-05-23 19:15:38", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Wedding-Kit_Hold-All-Bag_Navy.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("169", "1", "2013-05-23 21:15:52", "2013-05-23 19:15:52", "", "Wedding Kit_Hold All Bag_Navy_Front_v1", "", "inherit", "open", "open", "", "wedding-kit_hold-all-bag_navy_front_v1", "", "", "2013-05-23 21:15:52", "2013-05-23 19:15:52", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Wedding-Kit_Hold-All-Bag_Navy_Front_v1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("173", "1", "2013-05-23 21:40:52", "2013-05-23 19:40:52", "", "Wedding Day Weekender Bag Jade", "", "inherit", "open", "open", "", "wedding-day_weekender-bag-jade", "", "", "2013-05-23 21:40:52", "2013-05-23 19:40:52", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Wedding-Day_Weekender-Bag-Jade.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("177", "1", "2013-05-23 22:11:49", "2013-05-23 20:11:49", "", "Bryanston_May13", "", "inherit", "open", "open", "", "bryanston_may13", "", "", "2013-05-23 22:11:49", "2013-05-23 20:11:49", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Bryanston_May13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("180", "1", "2013-05-23 22:15:05", "2013-05-23 20:15:05", "", "Photo Booth_Guest Books All_v1", "", "inherit", "open", "open", "", "photo-booth_guest-books-all_v1", "", "", "2013-05-23 22:15:05", "2013-05-23 20:15:05", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Photo-Booth_Guest-Books-All_v1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("181", "1", "2013-05-23 22:15:28", "2013-05-23 20:15:28", "", "Photo Booth_Bird Guestbook_v1", "", "inherit", "open", "open", "", "photo-booth_bird-guestbook_v1", "", "", "2013-05-23 22:15:28", "2013-05-23 20:15:28", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Photo-Booth_Bird-Guestbook_v1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("182", "1", "2013-05-23 22:15:51", "2013-05-23 20:15:51", "", "Photo Booth_Butterfly guest book_v1", "", "inherit", "open", "open", "", "photo-booth_butterfly-guest-book_v1", "", "", "2013-05-23 22:15:51", "2013-05-23 20:15:51", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Photo-Booth_Butterfly-guest-book_v1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("183", "1", "2013-05-23 22:16:18", "2013-05-23 20:16:18", "", "Photo Booth_Heart Guestbook_v1", "", "inherit", "open", "open", "", "photo-booth_heart-guestbook_v1", "", "", "2013-05-23 22:16:18", "2013-05-23 20:16:18", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Photo-Booth_Heart-Guestbook_v1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("184", "1", "2013-05-23 22:18:03", "2013-05-23 20:18:03", "", "Photo Booth_Prop Display_v1", "", "inherit", "open", "open", "", "photo-booth_prop-display_v1", "", "", "2013-05-23 22:18:03", "2013-05-23 20:18:03", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Photo-Booth_Prop-Display_v1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("203", "1", "2013-06-04 18:51:03", "2013-06-04 16:51:03", "", "IMG_0450", "", "inherit", "open", "open", "", "img_0450", "", "", "2013-06-04 18:51:03", "2013-06-04 16:51:03", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/06/IMG_0450.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("208", "1", "2013-06-04 19:06:30", "2013-06-04 17:06:30", "", "Photo Booth Front Cover_v2", "", "inherit", "open", "open", "", "photo-booth-front-cover_v2", "", "", "2013-06-04 19:06:30", "2013-06-04 17:06:30", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/06/Photo-Booth-Front-Cover_v2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("214", "1", "2013-06-04 19:14:51", "2013-06-04 17:14:51", "", "Background_Light Hearts_v1", "", "inherit", "open", "open", "", "background_light-hearts_v1", "", "", "2013-06-04 19:14:51", "2013-06-04 17:14:51", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/06/Background_Light-Hearts_v1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("215", "1", "2013-06-04 19:15:03", "2013-06-04 17:15:03", "", "Background_Red Polka Dots_v1", "", "inherit", "open", "open", "", "background_red-polka-dots_v1", "", "", "2013-06-04 19:15:03", "2013-06-04 17:15:03", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/06/Background_Red-Polka-Dots_v1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("216", "1", "2013-06-04 19:15:10", "2013-06-04 17:15:10", "", "Background_Teal_v1", "", "inherit", "open", "open", "", "background_teal_v1", "", "", "2013-06-04 19:15:10", "2013-06-04 17:15:10", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/06/Background_Teal_v1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("217", "1", "2013-06-04 19:17:33", "2013-06-04 17:17:33", "", "funky props_1", "", "inherit", "open", "open", "", "funky-props_1", "", "", "2013-06-04 19:17:33", "2013-06-04 17:17:33", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/funky-props_1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("218", "1", "2013-06-04 19:18:05", "2013-06-04 17:18:05", "", "Photo Booth_Prop Display_v1", "", "inherit", "open", "open", "", "photo-booth_prop-display_v1-2", "", "", "2013-06-04 19:18:05", "2013-06-04 17:18:05", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Photo-Booth_Prop-Display_v11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("219", "1", "2013-06-04 19:22:35", "2013-06-04 17:22:35", "", "Photo Booth_Butterfly guest book_v1", "", "inherit", "open", "open", "", "photo-booth_butterfly-guest-book_v1-2", "", "", "2013-06-04 19:22:35", "2013-06-04 17:22:35", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Photo-Booth_Butterfly-guest-book_v11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("220", "1", "2013-06-04 19:23:47", "2013-06-04 17:23:47", "", "Photo Booth_Bird Guestbook_v1", "", "inherit", "open", "open", "", "photo-booth_bird-guestbook_v1-2", "", "", "2013-06-04 19:23:47", "2013-06-04 17:23:47", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Photo-Booth_Bird-Guestbook_v11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("221", "1", "2013-06-04 19:24:30", "2013-06-04 17:24:30", "", "Photo Booth_Heart Guestbook_v1", "", "inherit", "open", "open", "", "photo-booth_heart-guestbook_v1-2", "", "", "2013-06-04 19:24:30", "2013-06-04 17:24:30", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Photo-Booth_Heart-Guestbook_v11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("222", "1", "2013-06-04 19:33:56", "2013-06-04 17:33:56", "", "Photo Booth_Guest Books All_v1", "", "inherit", "open", "open", "", "photo-booth_guest-books-all_v1-2", "", "", "2013-06-04 19:33:56", "2013-06-04 17:33:56", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Photo-Booth_Guest-Books-All_v11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("251", "1", "2013-06-17 15:20:46", "2013-06-17 13:20:46", "", "IMG_0049", "", "inherit", "open", "open", "", "img_0049", "", "", "2013-06-17 15:20:46", "2013-06-17 13:20:46", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/06/IMG_0049.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("252", "1", "2013-06-17 15:21:01", "2013-06-17 13:21:01", "", "IMG_0082", "", "inherit", "open", "open", "", "img_0082", "", "", "2013-06-17 15:21:01", "2013-06-17 13:21:01", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/06/IMG_0082.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("253", "1", "2013-06-17 15:21:12", "2013-06-17 13:21:12", "", "IMG_0136", "", "inherit", "open", "open", "", "img_0136", "", "", "2013-06-17 15:21:12", "2013-06-17 13:21:12", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/06/IMG_0136.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("255", "1", "2013-06-17 15:25:36", "2013-06-17 13:25:36", "", "IMG_0114", "", "inherit", "open", "open", "", "img_0114", "", "", "2013-06-17 15:25:36", "2013-06-17 13:25:36", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/06/IMG_0114.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("315", "2", "2013-07-08 12:21:01", "2013-07-08 10:21:01", "ChequerBox photo booth rental for kiddies party.  These girls know how to strike a pose:)  They were adorable!\n\n&nbsp;\n\n[gallery columns=\"5\" ids=\"454,455,456,457,458,459,460,461,462,463,464,465\"]\n\n&nbsp;", "Photo Booth Fun For Ella\'s 9th Birthday Party", "", "publish", "open", "open", "", "lots-of-fun-and-dress-up-at-ellas-ninth-birthday-party-with-chequerbox-photo-booths", "", "", "2013-07-08 12:21:01", "2013-07-08 10:21:01", "", "0", "http://www.chequerbox.co.za/?p=315", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("316", "1", "2013-07-08 12:20:22", "2013-07-08 10:20:22", "", "130623_153348", "", "inherit", "open", "open", "", "130623_153348", "", "", "2013-07-08 12:20:22", "2013-07-08 10:20:22", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/130623_153348.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("429", "1", "2013-07-31 21:46:35", "2013-07-31 19:46:35", "", "Hold All Bag_Navy", "", "inherit", "open", "open", "", "hold-all-bag_navy", "", "", "2013-07-31 21:46:35", "2013-07-31 19:46:35", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/Hold-All-Bag_Navy.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("430", "1", "2013-07-31 21:46:52", "2013-07-31 19:46:52", "", "Hold All Bag Complete_Navy", "", "inherit", "open", "open", "", "hold-all-bag-complete_navy", "", "", "2013-07-31 21:46:52", "2013-07-31 19:46:52", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/Hold-All-Bag-Complete_Navy.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("431", "1", "2013-07-31 21:47:08", "2013-07-31 19:47:08", "", "Hold All Bag_Jade", "", "inherit", "open", "open", "", "hold-all-bag_jade", "", "", "2013-07-31 21:47:08", "2013-07-31 19:47:08", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/Hold-All-Bag_Jade.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("432", "1", "2013-07-31 21:47:20", "2013-07-31 19:47:20", "", "Hold All Bag Complete_Jade", "", "inherit", "open", "open", "", "hold-all-bag-complete_jade", "", "", "2013-07-31 21:47:20", "2013-07-31 19:47:20", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/Hold-All-Bag-Complete_Jade.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("433", "1", "2013-07-31 21:47:36", "2013-07-31 19:47:36", "", "Dressing Gown", "", "inherit", "open", "open", "", "dressing-gown", "", "", "2013-07-31 21:47:36", "2013-07-31 19:47:36", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/Dressing-Gown.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("437", "1", "2013-07-31 21:51:26", "2013-07-31 19:51:26", "", "Option 1_smaller", "", "inherit", "open", "open", "", "option-1_smaller", "", "", "2013-07-31 21:51:26", "2013-07-31 19:51:26", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/Logo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("438", "1", "2013-07-31 22:13:26", "2013-07-31 20:13:26", "", "Wedding Survival Kit_Front", "", "inherit", "open", "open", "", "wedding-survival-kit_front-2", "", "", "2013-07-31 22:13:26", "2013-07-31 20:13:26", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/06/Wedding-Survival-Kit_Front.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("454", "1", "2013-07-31 23:56:32", "2013-07-31 21:56:32", "", "130623_153348", "", "inherit", "open", "open", "", "130623_153348-2", "", "", "2013-07-31 23:56:32", "2013-07-31 21:56:32", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/130623_1533481.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("455", "1", "2013-07-31 23:56:36", "2013-07-31 21:56:36", "", "130623_153746", "", "inherit", "open", "open", "", "130623_153746", "", "", "2013-07-31 23:56:36", "2013-07-31 21:56:36", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/130623_153746.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("456", "1", "2013-07-31 23:56:38", "2013-07-31 21:56:38", "", "130623_154142", "", "inherit", "open", "open", "", "130623_154142", "", "", "2013-07-31 23:56:38", "2013-07-31 21:56:38", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/130623_154142.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("457", "1", "2013-07-31 23:56:42", "2013-07-31 21:56:42", "", "130623_154514", "", "inherit", "open", "open", "", "130623_154514", "", "", "2013-07-31 23:56:42", "2013-07-31 21:56:42", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/130623_154514.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("458", "1", "2013-07-31 23:56:46", "2013-07-31 21:56:46", "", "130623_154750", "", "inherit", "open", "open", "", "130623_154750", "", "", "2013-07-31 23:56:46", "2013-07-31 21:56:46", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/130623_154750.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("459", "1", "2013-07-31 23:56:50", "2013-07-31 21:56:50", "", "130623_155319", "", "inherit", "open", "open", "", "130623_155319", "", "", "2013-07-31 23:56:50", "2013-07-31 21:56:50", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/130623_155319.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("460", "1", "2013-07-31 23:56:53", "2013-07-31 21:56:53", "", "130623_155953", "", "inherit", "open", "open", "", "130623_155953", "", "", "2013-07-31 23:56:53", "2013-07-31 21:56:53", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/130623_155953.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("461", "1", "2013-07-31 23:56:56", "2013-07-31 21:56:56", "", "130623_160335", "", "inherit", "open", "open", "", "130623_160335", "", "", "2013-07-31 23:56:56", "2013-07-31 21:56:56", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/130623_160335.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("462", "1", "2013-07-31 23:56:59", "2013-07-31 21:56:59", "", "130623_160447", "", "inherit", "open", "open", "", "130623_160447", "", "", "2013-07-31 23:56:59", "2013-07-31 21:56:59", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/130623_160447.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("463", "1", "2013-07-31 23:57:02", "2013-07-31 21:57:02", "", "130623_160729", "", "inherit", "open", "open", "", "130623_160729", "", "", "2013-07-31 23:57:02", "2013-07-31 21:57:02", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/130623_160729.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("464", "1", "2013-07-31 23:57:05", "2013-07-31 21:57:05", "", "130623_161954", "", "inherit", "open", "open", "", "130623_161954", "", "", "2013-07-31 23:57:05", "2013-07-31 21:57:05", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/130623_161954.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("465", "1", "2013-07-31 23:57:07", "2013-07-31 21:57:07", "", "130623_162101", "", "inherit", "open", "open", "", "130623_162101", "", "", "2013-07-31 23:57:07", "2013-07-31 21:57:07", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/130623_162101.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("466", "1", "2013-08-01 00:00:35", "2013-07-31 22:00:35", "", "IMG_0021", "", "inherit", "open", "open", "", "img_0021", "", "", "2013-08-01 00:00:35", "2013-07-31 22:00:35", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/07/IMG_0021.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("468", "2", "2013-08-06 19:54:11", "2013-08-06 17:54:11", "These guys know how to party!!  The theme was \'Trailer Trash\' so we created a mug shot backdrop to capture some \'mug shots\' of the guests.  Some of the props included trashy wigs, large hair rollers, 70\'s glasses and moustaches.  ChequerBox photo booth rental is a great addition to your 21st birthday party.\n\n[gallery columns=\"4\" ids=\"469,470,471,472,473,474,475,476,477,478,479,480,481\"]", "Crazy Fun at Simone’s 21st with ChequerBox Photo Booth Rental", "", "publish", "open", "open", "", "simones-21st", "", "", "2013-08-06 19:54:11", "2013-08-06 17:54:11", "", "0", "http://www.chequerbox.co.za/?p=468", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("469", "1", "2013-08-01 00:05:56", "2013-07-31 22:05:56", "", "130629_212957", "", "inherit", "open", "open", "", "130629_212957", "", "", "2013-08-01 00:05:56", "2013-07-31 22:05:56", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130629_212957.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("470", "1", "2013-08-01 00:05:59", "2013-07-31 22:05:59", "", "130629_213043", "", "inherit", "open", "open", "", "130629_213043", "", "", "2013-08-01 00:05:59", "2013-07-31 22:05:59", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130629_213043.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("471", "1", "2013-08-01 00:06:02", "2013-07-31 22:06:02", "", "130629_213159", "", "inherit", "open", "open", "", "130629_213159", "", "", "2013-08-01 00:06:02", "2013-07-31 22:06:02", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130629_213159.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("472", "1", "2013-08-01 00:06:04", "2013-07-31 22:06:04", "", "130629_214207", "", "inherit", "open", "open", "", "130629_214207", "", "", "2013-08-01 00:06:04", "2013-07-31 22:06:04", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130629_214207.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("473", "1", "2013-08-01 00:06:06", "2013-07-31 22:06:06", "", "130629_220512", "", "inherit", "open", "open", "", "130629_220512", "", "", "2013-08-01 00:06:06", "2013-07-31 22:06:06", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130629_220512.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("474", "1", "2013-08-01 00:06:08", "2013-07-31 22:06:08", "", "130629_220658", "", "inherit", "open", "open", "", "130629_220658", "", "", "2013-08-01 00:06:08", "2013-07-31 22:06:08", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130629_220658.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("475", "1", "2013-08-01 00:06:10", "2013-07-31 22:06:10", "", "130629_220948", "", "inherit", "open", "open", "", "130629_220948", "", "", "2013-08-01 00:06:10", "2013-07-31 22:06:10", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130629_220948.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("476", "1", "2013-08-01 00:06:22", "2013-07-31 22:06:22", "", "130629_221034", "", "inherit", "open", "open", "", "130629_221034", "", "", "2013-08-01 00:06:22", "2013-07-31 22:06:22", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130629_221034.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("477", "1", "2013-08-01 00:06:24", "2013-07-31 22:06:24", "", "130629_222237", "", "inherit", "open", "open", "", "130629_222237", "", "", "2013-08-01 00:06:24", "2013-07-31 22:06:24", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130629_222237.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("478", "1", "2013-08-01 00:06:26", "2013-07-31 22:06:26", "", "130629_223145", "", "inherit", "open", "open", "", "130629_223145", "", "", "2013-08-01 00:06:26", "2013-07-31 22:06:26", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130629_223145.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("479", "1", "2013-08-01 00:06:28", "2013-07-31 22:06:28", "", "130629_223243", "", "inherit", "open", "open", "", "130629_223243", "", "", "2013-08-01 00:06:28", "2013-07-31 22:06:28", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130629_223243.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("480", "1", "2013-08-01 00:06:30", "2013-07-31 22:06:30", "", "130629_224000", "", "inherit", "open", "open", "", "130629_224000", "", "", "2013-08-01 00:06:30", "2013-07-31 22:06:30", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130629_224000.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("481", "1", "2013-08-01 00:06:33", "2013-07-31 22:06:33", "", "130629_224234", "", "inherit", "open", "open", "", "130629_224234", "", "", "2013-08-01 00:06:33", "2013-07-31 22:06:33", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130629_224234.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("484", "2", "2013-08-01 00:37:20", "2013-07-31 22:37:20", "A beautiful wedding with beautiful people!  Just proving what a great addition a photo booth can be to your wedding with ChequerBox Photo Booth rental\n\n[gallery ids=\"485,486,487,488,489,490,491,492,493,494,495\"]", "Wedding Bells & Photo Booth Fun with ChequerBox Photo Booth Rental", "", "publish", "open", "open", "", "wedding-bells", "", "", "2013-08-01 00:37:20", "2013-07-31 22:37:20", "", "0", "http://www.chequerbox.co.za/?p=484", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("485", "1", "2013-08-01 00:30:17", "2013-07-31 22:30:17", "", "130706_183926", "", "inherit", "open", "open", "", "130706_183926", "", "", "2013-08-01 00:30:17", "2013-07-31 22:30:17", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130706_183926.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("486", "1", "2013-08-01 00:30:20", "2013-07-31 22:30:20", "", "130706_184111", "", "inherit", "open", "open", "", "130706_184111", "", "", "2013-08-01 00:30:20", "2013-07-31 22:30:20", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130706_184111.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("487", "1", "2013-08-01 00:30:23", "2013-07-31 22:30:23", "", "130706_185041", "", "inherit", "open", "open", "", "130706_185041", "", "", "2013-08-01 00:30:23", "2013-07-31 22:30:23", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130706_185041.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("488", "1", "2013-08-01 00:30:26", "2013-07-31 22:30:26", "", "130706_190608", "", "inherit", "open", "open", "", "130706_190608", "", "", "2013-08-01 00:30:26", "2013-07-31 22:30:26", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130706_190608.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("489", "1", "2013-08-01 00:30:28", "2013-07-31 22:30:28", "", "130706_193218", "", "inherit", "open", "open", "", "130706_193218", "", "", "2013-08-01 00:30:28", "2013-07-31 22:30:28", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130706_193218.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("490", "1", "2013-08-01 00:30:32", "2013-07-31 22:30:32", "", "130706_195329", "", "inherit", "open", "open", "", "130706_195329", "", "", "2013-08-01 00:30:32", "2013-07-31 22:30:32", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130706_195329.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("491", "1", "2013-08-01 00:30:35", "2013-07-31 22:30:35", "", "130706_203419", "", "inherit", "open", "open", "", "130706_203419", "", "", "2013-08-01 00:30:35", "2013-07-31 22:30:35", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130706_203419.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("492", "1", "2013-08-01 00:30:39", "2013-07-31 22:30:39", "", "130706_203934", "", "inherit", "open", "open", "", "130706_203934", "", "", "2013-08-01 00:30:39", "2013-07-31 22:30:39", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130706_203934.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("493", "1", "2013-08-01 00:30:41", "2013-07-31 22:30:41", "", "130706_205542", "", "inherit", "open", "open", "", "130706_205542", "", "", "2013-08-01 00:30:41", "2013-07-31 22:30:41", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130706_205542.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("494", "1", "2013-08-01 00:30:44", "2013-07-31 22:30:44", "", "130706_210745", "", "inherit", "open", "open", "", "130706_210745", "", "", "2013-08-01 00:30:44", "2013-07-31 22:30:44", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130706_210745.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("495", "1", "2013-08-01 00:30:47", "2013-07-31 22:30:47", "", "130706_212526", "", "inherit", "open", "open", "", "130706_212526", "", "", "2013-08-01 00:30:47", "2013-07-31 22:30:47", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130706_212526.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("497", "1", "2013-08-01 00:35:53", "2013-07-31 22:35:53", "", "Wedding Bells", "Caption Goes Here", "inherit", "open", "open", "", "img_0022", "", "", "2015-03-14 20:08:49", "2015-03-14 20:08:49", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/IMG_0022.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("510", "1", "2013-08-05 13:21:54", "2013-08-05 11:21:54", "", "Option 1", "", "inherit", "open", "open", "", "option-1-2", "", "", "2013-08-05 13:21:54", "2013-08-05 11:21:54", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/05/Option-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("511", "1", "2013-08-05 13:40:27", "2013-08-05 11:40:27", "", "Website banner_v6", "", "inherit", "open", "open", "", "website-banner_v6-2", "", "", "2013-08-05 13:40:27", "2013-08-05 11:40:27", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/Website-banner_v6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("513", "1", "2013-08-06 19:53:41", "2013-08-06 17:53:41", "", "Simone\'s 21st Party", "", "inherit", "open", "open", "", "img_0157", "", "", "2013-08-06 19:53:41", "2013-08-06 17:53:41", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/IMG_0157.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("515", "2", "2013-08-06 20:20:50", "2013-08-06 18:20:50", "[gallery ids=\"522,521,520,519,517,516\"]\n\nGreen screen photo booth fun with Dulux and Hands On Promotions.  We sourced some traditional and fun South African props for guests to enjoy along with awesome digital South African background images.", "Green Screen Photo Booth with Dulux", "", "publish", "open", "open", "", "green-screen-photo-booth-with-dulux", "", "", "2013-08-06 20:20:50", "2013-08-06 18:20:50", "", "0", "http://www.chequerbox.co.za/?p=515", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("516", "1", "2013-08-06 20:17:05", "2013-08-06 18:17:05", "", "IMG_0021", "", "inherit", "open", "open", "", "img_0021-2", "", "", "2013-08-06 20:17:05", "2013-08-06 18:17:05", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/IMG_0021.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("517", "1", "2013-08-06 20:17:31", "2013-08-06 18:17:31", "", "IMG_0032", "", "inherit", "open", "open", "", "img_0032", "", "", "2013-08-06 20:17:31", "2013-08-06 18:17:31", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/IMG_0032.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("519", "1", "2013-08-06 20:18:30", "2013-08-06 18:18:30", "", "IMG_0069", "", "inherit", "open", "open", "", "img_0069", "", "", "2013-08-06 20:18:30", "2013-08-06 18:18:30", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/IMG_0069.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("520", "1", "2013-08-06 20:18:44", "2013-08-06 18:18:44", "", "IMG_0124", "", "inherit", "open", "open", "", "img_0124", "", "", "2013-08-06 20:18:44", "2013-08-06 18:18:44", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/IMG_0124.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("521", "1", "2013-08-06 20:19:02", "2013-08-06 18:19:02", "", "IMG_0159", "", "inherit", "open", "open", "", "img_0159", "", "", "2013-08-06 20:19:02", "2013-08-06 18:19:02", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/IMG_0159.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("522", "1", "2013-08-06 20:19:23", "2013-08-06 18:19:23", "", "IMG_0171", "", "inherit", "open", "open", "", "img_0171", "", "", "2013-08-06 20:19:23", "2013-08-06 18:19:23", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/IMG_0171.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("524", "2", "2013-08-06 20:45:11", "2013-08-06 18:45:11", "[gallery ids=\"537,536,535,534,533,532,531,530,529,528,527,526\"]\n\nLots of party fun with family and friends and ChequerBox Photo Booths!", "Lots of party fun with our photo booth", "", "publish", "open", "open", "", "bernices-lingerie-party", "", "", "2013-08-06 20:45:11", "2013-08-06 18:45:11", "", "0", "http://www.chequerbox.co.za/?p=524", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("526", "1", "2013-08-06 20:42:20", "2013-08-06 18:42:20", "", "130803_153624", "", "inherit", "open", "open", "", "130803_153624", "", "", "2013-08-06 20:42:20", "2013-08-06 18:42:20", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130803_153624.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("527", "1", "2013-08-06 20:42:27", "2013-08-06 18:42:27", "", "130803_153937", "", "inherit", "open", "open", "", "130803_153937", "", "", "2013-08-06 20:42:27", "2013-08-06 18:42:27", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130803_153937.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("528", "1", "2013-08-06 20:42:34", "2013-08-06 18:42:34", "", "130803_161949", "", "inherit", "open", "open", "", "130803_161949", "", "", "2013-08-06 20:42:34", "2013-08-06 18:42:34", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130803_161949.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("529", "1", "2013-08-06 20:42:41", "2013-08-06 18:42:41", "", "130803_162149", "", "inherit", "open", "open", "", "130803_162149", "", "", "2013-08-06 20:42:41", "2013-08-06 18:42:41", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130803_162149.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("530", "1", "2013-08-06 20:42:52", "2013-08-06 18:42:52", "", "130803_162438", "", "inherit", "open", "open", "", "130803_162438", "", "", "2013-08-06 20:42:52", "2013-08-06 18:42:52", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130803_162438.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("531", "1", "2013-08-06 20:43:07", "2013-08-06 18:43:07", "", "130803_163247", "", "inherit", "open", "open", "", "130803_163247", "", "", "2013-08-06 20:43:07", "2013-08-06 18:43:07", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130803_163247.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("532", "1", "2013-08-06 20:43:13", "2013-08-06 18:43:13", "", "130803_171756", "", "inherit", "open", "open", "", "130803_171756", "", "", "2013-08-06 20:43:13", "2013-08-06 18:43:13", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130803_171756.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("533", "1", "2013-08-06 20:43:23", "2013-08-06 18:43:23", "", "130803_173558", "", "inherit", "open", "open", "", "130803_173558", "", "", "2013-08-06 20:43:23", "2013-08-06 18:43:23", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130803_173558.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("534", "1", "2013-08-06 20:43:32", "2013-08-06 18:43:32", "", "130803_173934", "", "inherit", "open", "open", "", "130803_173934", "", "", "2013-08-06 20:43:32", "2013-08-06 18:43:32", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130803_173934.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("535", "1", "2013-08-06 20:43:38", "2013-08-06 18:43:38", "", "130803_174433", "", "inherit", "open", "open", "", "130803_174433", "", "", "2013-08-06 20:43:38", "2013-08-06 18:43:38", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130803_174433.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("536", "1", "2013-08-06 20:43:47", "2013-08-06 18:43:47", "", "130803_182924", "", "inherit", "open", "open", "", "130803_182924", "", "", "2013-08-06 20:43:47", "2013-08-06 18:43:47", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130803_182924.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("537", "1", "2013-08-06 20:43:54", "2013-08-06 18:43:54", "", "130803_183330", "", "inherit", "open", "open", "", "130803_183330", "", "", "2013-08-06 20:43:54", "2013-08-06 18:43:54", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/130803_183330.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("538", "1", "2013-08-06 20:44:53", "2013-08-06 18:44:53", "", "IMG_0111", "Caption Goes Here", "inherit", "open", "open", "", "img_0111", "", "", "2015-03-14 20:08:47", "2015-03-14 20:08:47", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/IMG_0111.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("600", "1", "2013-08-16 07:37:18", "2013-08-16 05:37:18", "wedding box, baby medi aid, photo booth and green screen, vending machines", "Cheqeurbox Website Banner", "ChequerBox Solutions Boxed", "inherit", "open", "open", "", "web-2", "", "", "2013-08-16 07:37:18", "2013-08-16 05:37:18", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/Web1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("603", "1", "2013-08-16 07:58:35", "2013-08-16 05:58:35", "", "Vending Machine Banner", "", "inherit", "open", "open", "", "vending-machine-banner-2", "", "", "2013-08-16 07:58:35", "2013-08-16 05:58:35", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("606", "1", "2013-08-16 08:28:14", "2013-08-16 06:28:14", "", "Option 1_smaller", "ChequerBox Signature", "inherit", "open", "open", "", "option-1_smaller-2", "", "", "2013-08-16 08:28:14", "2013-08-16 06:28:14", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/Signature1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("620", "2", "2013-08-23 12:13:28", "2013-08-23 10:13:28", "[caption id=\"attachment_623\" align=\"aligncenter\" width=\"300\"]<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/08/Baby-Medi-Aid-Logo.jpg\"><img class=\"size-medium wp-image-623\" alt=\"medi kit for babies\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/08/Baby-Medi-Aid-Logo-300x142.jpg\" width=\"300\" height=\"142\" /></a> Baby Medi Aid - baby medical kit[/caption]", "Baby Medi Aid at the Baba Indaba Expo (30 Aug-1 Sep 2013)", "", "publish", "open", "open", "", "baby-medi-aid-at-the-baby-indaba-expo-30-aug-1-sep", "", "", "2013-08-23 12:13:28", "2013-08-23 10:13:28", "", "0", "http://www.chequerbox.co.za/?p=620", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("621", "1", "2013-08-23 12:11:22", "2013-08-23 10:11:22", "Baby Medi Aid trade presenter for the Baby Indaba Expo", "Baby Medi Aid_Trade Presenter", "Baby Medi Aid Flyer", "inherit", "open", "open", "", "baby-medi-aid_trade-presenter", "", "", "2013-08-23 12:11:22", "2013-08-23 10:11:22", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/Baby-Medi-Aid_Trade-Presenter.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("623", "1", "2013-08-23 12:15:10", "2013-08-23 10:15:10", "baby medical kit", "Baby Medi Aid", "Baby Medi Aid - baby medical kit", "inherit", "open", "open", "", "baby-medi-aid-logo", "", "", "2013-08-23 12:15:10", "2013-08-23 10:15:10", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/Baby-Medi-Aid-Logo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("626", "2", "2013-08-28 14:56:25", "2013-08-28 12:56:25", "[caption id=\"attachment_635\" align=\"alignnone\" width=\"967\"]<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/08/49.jpg\"><img class=\"size-full wp-image-635\" alt=\"Babbiyo Baby Chair\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/08/49.jpg\" width=\"967\" height=\"645\" /></a> Babbiyo Baby Chair[/caption]\n<p id=\"yui_3_7_2_1_1377606378563_16763\">Babies come in all shapes and sizes! The Bobbiyo™ Baby Chair was designed out of necessity. Snappi® realised that there was a need in the marketplace for a floor sitter which offered optimum comfort, convenience and flexibility – a chair which would conform to baby’s unique shape and still offer the correct pelvic support.</p>\n<p id=\"yui_3_7_2_1_1377606378563_16765\">The Bobbiyo™ Baby Chair has a flexible inner lining, which moulds to baby’s shape, allowing your child to find the most comfortable position to suit him / her, whilst simultaneously offering the correct support for developing their pelvic muscles and little backs.</p>\n<p id=\"yui_3_7_2_1_1377606378563_16750\"><img id=\"yiv5239387576_x0000_i1027\" alt=\"\" src=\"http://www.snappi.co.za/images/bobbiyo-shoot.jpg\" /></p>\n<p id=\"yui_3_7_2_1_1377606378563_103250\">Sitting on his/her own is going to be your baby’s first taste of independence, one which you want him/her to experience in absolute comfort. This is why the Bobbiyo Baby Chair is a necessity when it comes to your baby exploring his new found perspective on the world.</p>\n• Research shows that the first year of neurological development is extremely important, which means that mental stimulation is one of the most significant gifts you can provide your child with during this stage.\n<p id=\"yui_3_7_2_1_1377606378563_16753\">• While sound, touch, smell and taste all play a cardinal role in baby’s development, it’s the baby’s ability to see what is going on around him / her which may have the most positive effect on the baby’s nervous system.</p>\n<p id=\"yui_3_7_2_1_1377606378563_16755\">• Babies love to observe what is going on around them. Making use of the Bobbiyo™ Baby Chair allows your baby to view the world from a snug, comfortable position, making interaction between parent and child easier, and allowing baby to explore freely with his / her hands.</p>\n<p id=\"yui_3_7_2_1_1377606378563_16757\">• Once baby’s neck and back muscles are strong enough to hold him / her upright you can use the Bobbiyo™ Baby Chair to enable your child to sit unassisted. It will be simply a matter of time before he / she moves on to the milestones of crawling, standing up and walking.</p>\n• The Snappi® tray attachment is easily removable and attachable via a front clip on the chair – thus eliminating the need to tip the Bobbiyo™ Baby Chair up whilst baby is in the chair – an added safety feature.\n<p id=\"yui_3_7_2_1_1377606378563_103254\">• The strong polycarbonate ring at the base of the Bobbiyo™ Baby Chair supports and enhances the stability of the chair.</p>\n<p id=\"yui_3_7_2_1_1377606378563_103258\">• Rubbers underneath the ring help prevent unnecessary movement and sliding of the chair, once the chair is in use.  The Bobbiyo™ Baby Chair was designed with added leg space – allowing for larger babies to make use of the chair for longer.</p>\n<p id=\"yui_3_7_2_1_1377606378563_103241\">• The Bobbiyo Baby Chair is perfect for allowing mothers the use of both hands during feeding and playtime, whilst simultaneously allowing baby to have improved breathing control and digestion. The Bobbiyo™ Baby Chair is also great for assisting with babies who struggle with reflux and need to be upright after feeding. The length of time that baby spends in the Bobbiyo Baby Chair is however entirely at the parents’ discretion.</p>\n<p id=\"yui_3_7_2_1_1377606378563_103277\">• The Bobbiyo Baby Chair is convenient, portable, lightweight (1.2kg) and easy to clean, making it the ideal baby chair to use whether you\'re on the beach, in the garden, or at home.</p>\n<strong>WARNINGS:</strong>\n<p id=\"yui_3_7_2_1_1377606378563_103274\">• Ensure that baby can support his/her head on their own before making use of the Bobbiyo Baby Chair. Never make use of this product on an elevated surface.</p>\n• Babies should never be left unattended in the Bobbiyo Baby Chair.\n<p id=\"yui_3_7_2_1_1377606378563_103271\">• This product is not designed for use in a bath, shower or swimming pool. Please be cautious where water is concerned.</p>\n• Never lift or move the Bobbiyo Baby Chair while baby is still seated in the chair\n<p id=\"yui_3_7_2_1_1377606378563_103268\">• It is imperative that you make use of the Snappi® Tray at all times for babies younger than 18 months.</p>\n<p id=\"yui_3_7_2_1_1377606378563_103238\">• Please only use the Bobbiyo Baby Chair with genuine Bobbiyo accessories – e.g. Snappi® Tray.</p>\n<p id=\"yui_3_7_2_1_1377606378563_103265\">• The length of time that your baby spends in the Bobbiyo Baby Chair is entirely dependent on parent’s discretion – however, please do not leave your baby in the Bobbiyo Baby Chair for prolonged periods of time.</p>\n<p id=\"yui_3_7_2_1_1377606378563_103223\" align=\"center\"><img id=\"yiv5239387576_x0000_i1028\" alt=\"\" src=\"http://www.snappi.co.za/images/bobbiyo-stacker.jpg\" /></p>", "Snappi’s Bobbiyo Baby Chair Now Available From ChequerBox", "", "publish", "open", "open", "", "snappis-bobbiyo-baby-chair-now-available-from-chequerbox", "", "", "2013-08-28 14:56:25", "2013-08-28 12:56:25", "", "0", "http://www.chequerbox.co.za/?p=626", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("629", "2", "2013-08-28 15:14:52", "2013-08-28 13:14:52", "[caption id=\"attachment_630\" align=\"alignnone\" width=\"2329\"]<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/08/BOBBIYO-BABY-STEPS-MAY-2013-v3-2-1.jpg\"><img class=\"size-full wp-image-630\" alt=\"Bobbiyo™ Baby Chair \" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/08/BOBBIYO-BABY-STEPS-MAY-2013-v3-2-1.jpg\" width=\"2329\" height=\"1510\" /></a> Bobbiyo™ Baby Chair[/caption]\n\nSnappi\'s Bobbiyo Baby Chair will be sold exclusively at the SABC Baba Indaba Expo this weekend at Nasrec.  Come and visit us at the Baby Medi Aid stand (B14) to purchase this adorable baby chair.", "Bobbiyo Baby Chair at the SABC Baba Indaba Expo this weekend", "", "publish", "open", "open", "", "bobbiyo-baby-chair-at-the-sabc-baby-indaba-expo-this-weekend", "", "", "2013-08-28 15:14:52", "2013-08-28 13:14:52", "", "0", "http://www.chequerbox.co.za/?p=629", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("630", "1", "2013-08-28 15:12:58", "2013-08-28 13:12:58", "baby chair", "bobbiyo baby chair", "Bobbiyo™ Baby Chair ", "inherit", "open", "open", "", "bobbiyo-baby-steps-may-2013-indd", "", "", "2013-08-28 15:12:58", "2013-08-28 13:12:58", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/BOBBIYO-BABY-STEPS-MAY-2013-v3-2-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("635", "1", "2013-08-28 15:45:34", "2013-08-28 13:45:34", "Snappi® Baby Chair", "Snappi® Baby Chair", "", "inherit", "open", "open", "", "49", "", "", "2013-08-28 15:45:34", "2013-08-28 13:45:34", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/08/49.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("643", "1", "2013-09-02 18:08:09", "2013-09-02 16:08:09", "baby chair", "Bobbiyo™ Baby Chair", "Bobbiyo Baby Chair", "inherit", "open", "open", "", "85", "", "", "2013-09-02 18:08:09", "2013-09-02 16:08:09", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/85.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("644", "1", "2013-09-02 18:10:58", "2013-09-02 16:10:58", "", "Blue Bobbiyo™ Baby Chair", "Blue Bobbiyo™ Baby Chair", "inherit", "open", "open", "", "86", "", "", "2013-09-02 18:10:58", "2013-09-02 16:10:58", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/86.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("646", "1", "2013-09-02 18:12:07", "2013-09-02 16:12:07", "", "Blue Bobbiyo™ Baby Chair", "Bobbiyo™ Baby Chair", "inherit", "open", "open", "", "87", "", "", "2013-09-02 18:12:07", "2013-09-02 16:12:07", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/87.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("647", "1", "2013-09-02 18:12:48", "2013-09-02 16:12:48", "pink baby chair", "Pink Bobbiyo™ Baby Chair", "Pink Bobbiyo™ Baby Chair", "inherit", "open", "open", "", "90", "", "", "2013-09-02 18:12:48", "2013-09-02 16:12:48", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/90.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("648", "1", "2013-09-02 18:13:27", "2013-09-02 16:13:27", "pink baby chair", "Pink Bobbiyo™ Baby Chair", "Pink Bobbiyo™ Baby Chair", "inherit", "open", "open", "", "91", "", "", "2013-09-02 18:13:27", "2013-09-02 16:13:27", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/91.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("649", "1", "2013-09-02 18:14:37", "2013-09-02 16:14:37", "Snappi® Baby Chair", "Snappi® Baby Chair", "", "inherit", "open", "open", "", "ciara", "", "", "2013-09-02 18:14:37", "2013-09-02 16:14:37", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/Ciara.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("653", "1", "2013-09-03 09:35:07", "2013-09-03 07:35:07", "bags, handbags", "Shopper Bag (Jade Polka Dot)", "Jenam Bags", "inherit", "open", "open", "", "jenam-shopper-bag-polka-dot", "", "", "2013-09-03 09:35:07", "2013-09-03 07:35:07", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/Jenam-Shopper-Bag-Polka-Dot.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("681", "1", "2013-09-03 09:49:14", "2013-09-03 07:49:14", "", "Jenam Shopper Bag (Floral)", "shopper bag", "inherit", "open", "open", "", "jenam-shopper-bag-floral", "", "", "2013-09-03 09:49:14", "2013-09-03 07:49:14", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/Jenam-Shopper-Bag-Floral.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("682", "1", "2013-09-03 09:49:46", "2013-09-03 07:49:46", "", "Jenam Weekender Bag (Black Polka Dot)", "weekender bag", "inherit", "open", "open", "", "jenam-weekender-bag", "", "", "2013-09-03 09:49:46", "2013-09-03 07:49:46", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/Jenam-Weekender-Bag.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("683", "1", "2013-09-03 09:50:54", "2013-09-03 07:50:54", "", "Jenam_Hold All Bag (Jade Polka Dot)", "hold all bag", "inherit", "open", "open", "", "wedding-kit_hold-all-bag-jade_front_v1-2", "", "", "2013-09-03 09:50:54", "2013-09-03 07:50:54", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/Wedding-Kit_Hold-All-Bag-Jade_Front_v1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("684", "1", "2013-09-03 09:51:33", "2013-09-03 07:51:33", "", "Jenam Hold All Bag (Navy Polka Dot)", "hold all bag", "inherit", "open", "open", "", "wedding-kit_hold-all-bag_navy_front_v1-2", "", "", "2013-09-03 09:51:33", "2013-09-03 07:51:33", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/Wedding-Kit_Hold-All-Bag_Navy_Front_v1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("685", "1", "2013-09-03 09:52:54", "2013-09-03 07:52:54", "", "Small Shopper Bag (Brown Floral)", "", "inherit", "open", "open", "", "baby-aid-bag_front_v1", "", "", "2013-09-03 09:52:54", "2013-09-03 07:52:54", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/Baby-Aid-Bag_Front_v1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("704", "2", "2013-09-03 17:00:11", "2013-09-03 15:00:11", "Thanks for all the support and positive feedback for Baby Medi Aid at The Baba Indaba Expo at Nasrec this past weekend!  We just loved chatting to everyone about this great kit and we also enjoyed all the beautiful babies that tried out the new Bobbiyo™ Baby Chair from Snappi.\n\nBabies getting comfortable in The Bobbiyo™ Baby Chair\n\n&nbsp;", "Great support for Baby Medi Aid at the Baba Indaba Expo", "", "publish", "open", "open", "", "great-support-for-baby-medi-aid-at-the-baba-indaba-expo", "", "", "2013-09-03 17:00:11", "2013-09-03 15:00:11", "", "0", "http://www.chequerbox.co.za/?p=704", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("713", "1", "2013-09-05 06:50:58", "2013-09-05 04:50:58", "", "ChequerBox Logo", "", "inherit", "open", "open", "", "weblogo", "", "", "2013-09-05 06:50:58", "2013-09-05 04:50:58", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/WebLogo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("724", "2", "2013-09-18 16:59:35", "2013-09-18 14:59:35", "Great fun at Shannon’s 13<sup>th</sup> birthday party organized by G &amp; C Dazzling Event Planners wit[gallery ids=\"734,733,732,731,730,729,728,727,726,725\"]\n\nh an Angels and Demons theme and ChequerBox photo booth hire.", "Photo Booth Fun at Shannon\'s 13th B-Day with G & C Dazzling Event Planners", "", "publish", "open", "open", "", "photo-booth-fun-at-shannons-13th-b-day-with-g-c-dazzling-event-planners", "", "", "2013-09-18 16:59:35", "2013-09-18 14:59:35", "", "0", "http://www.chequerbox.co.za/?p=724", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("725", "1", "2013-09-18 16:43:12", "2013-09-18 14:43:12", "", "130914_190158", "", "inherit", "open", "open", "", "130914_190158", "", "", "2013-09-18 16:43:12", "2013-09-18 14:43:12", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/130914_190158.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("726", "1", "2013-09-18 16:43:19", "2013-09-18 14:43:19", "", "130914_190414", "", "inherit", "open", "open", "", "130914_190414", "", "", "2013-09-18 16:43:19", "2013-09-18 14:43:19", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/130914_190414.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("727", "1", "2013-09-18 16:43:26", "2013-09-18 14:43:26", "", "130914_191124", "", "inherit", "open", "open", "", "130914_191124", "", "", "2013-09-18 16:43:26", "2013-09-18 14:43:26", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/130914_191124.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("728", "1", "2013-09-18 16:43:37", "2013-09-18 14:43:37", "", "130914_192002", "", "inherit", "open", "open", "", "130914_192002", "", "", "2013-09-18 16:43:37", "2013-09-18 14:43:37", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/130914_192002.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("729", "1", "2013-09-18 16:43:47", "2013-09-18 14:43:47", "", "130914_192510", "", "inherit", "open", "open", "", "130914_192510", "", "", "2013-09-18 16:43:47", "2013-09-18 14:43:47", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/130914_192510.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("730", "1", "2013-09-18 16:44:01", "2013-09-18 14:44:01", "", "130914_192549", "", "inherit", "open", "open", "", "130914_192549", "", "", "2013-09-18 16:44:01", "2013-09-18 14:44:01", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/130914_192549.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("731", "1", "2013-09-18 16:44:09", "2013-09-18 14:44:09", "", "130914_193404", "", "inherit", "open", "open", "", "130914_193404", "", "", "2013-09-18 16:44:09", "2013-09-18 14:44:09", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/130914_193404.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("732", "1", "2013-09-18 16:44:19", "2013-09-18 14:44:19", "", "130914_193923", "", "inherit", "open", "open", "", "130914_193923", "", "", "2013-09-18 16:44:19", "2013-09-18 14:44:19", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/130914_193923.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("733", "1", "2013-09-18 16:44:28", "2013-09-18 14:44:28", "", "130914_195354", "", "inherit", "open", "open", "", "130914_195354", "", "", "2013-09-18 16:44:28", "2013-09-18 14:44:28", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/130914_195354.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("734", "1", "2013-09-18 16:44:35", "2013-09-18 14:44:35", "", "130914_200447", "", "inherit", "open", "open", "", "130914_200447", "", "", "2013-09-18 16:44:35", "2013-09-18 14:44:35", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/130914_200447.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("735", "1", "2013-09-18 16:57:49", "2013-09-18 14:57:49", "", "Shannon’s 13th Birthday Party", "Caption Goes Here", "inherit", "open", "open", "", "img_0115", "", "", "2015-03-14 20:08:44", "2015-03-14 20:08:44", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/IMG_0115.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("740", "1", "2013-09-30 15:06:18", "2013-09-30 13:06:18", "Snappi® Baby Chair", "Snappi® Baby Chair", "", "inherit", "open", "open", "", "ewan-pictured-in-a-bobbiyo", "", "", "2013-09-30 15:06:18", "2013-09-30 13:06:18", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/09/Ewan-pictured-in-a-Bobbiyo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("742", "2", "2013-10-01 18:26:06", "2013-10-01 16:26:06", "[gallery columns=\"2\" ids=\"749,748,747,746,745,744,743\"]\n\nWhat better way to mingle with your friends than in a photo booth!", "18th Birthday Party Fun with ChequerBox Photo Booth", "", "publish", "open", "open", "", "18th-birthday-party-fun-with-chequerbox-photo-booth", "", "", "2013-10-01 18:26:06", "2013-10-01 16:26:06", "", "0", "http://www.chequerbox.co.za/?p=742", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("743", "1", "2013-10-01 18:13:30", "2013-10-01 16:13:30", "", "130928_180140", "", "inherit", "open", "open", "", "130928_180140", "", "", "2013-10-01 18:13:30", "2013-10-01 16:13:30", "", "0", "http://chequerbox.co.za/wp-content/uploads/2013/10/130928_180140.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("746", "1", "2015-02-04 17:41:59", "2015-02-04 17:41:59", "", "weddingkits2_436px-x-273px", "", "inherit", "open", "open", "", "weddingkits2_436px-x-273px", "", "", "2015-02-04 17:41:59", "2015-02-04 17:41:59", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/weddingkits2_436px-x-273px.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("747", "1", "2015-02-05 18:38:18", "2015-02-05 18:38:18", "", "slider-1-366x146", "", "inherit", "open", "open", "", "slider-1-366x146", "", "", "2015-02-05 18:38:18", "2015-02-05 18:38:18", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/slider-1-366x146.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("748", "1", "2015-02-05 18:38:48", "2015-02-05 18:38:48", "", "slider-2-366x146", "", "inherit", "open", "open", "", "slider-2-366x146", "", "", "2015-02-05 18:38:48", "2015-02-05 18:38:48", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/slider-2-366x146.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("749", "1", "2015-02-05 18:38:56", "2015-02-05 18:38:56", "", "slider-3-366x146", "", "inherit", "open", "open", "", "slider-3-366x146", "", "", "2015-02-05 18:38:56", "2015-02-05 18:38:56", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/slider-3-366x146.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("750", "1", "2015-02-05 18:40:27", "2015-02-05 18:40:27", "", "slider-1", "", "inherit", "open", "open", "", "slider-1", "", "", "2015-02-05 18:40:27", "2015-02-05 18:40:27", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/slider-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("751", "1", "2015-02-05 18:49:13", "2015-02-05 18:49:13", "", "Web_3-1024x207_01", "", "inherit", "open", "open", "", "web_3-1024x207_01", "", "", "2015-02-05 18:49:13", "2015-02-05 18:49:13", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Web_3-1024x207_01.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("752", "1", "2015-02-05 18:49:14", "2015-02-05 18:49:14", "", "Web_3-1024x207_02", "", "inherit", "open", "open", "", "web_3-1024x207_02", "", "", "2015-02-05 18:49:14", "2015-02-05 18:49:14", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Web_3-1024x207_02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("753", "1", "2015-02-05 18:49:15", "2015-02-05 18:49:15", "", "Web_3-1024x207_03", "", "inherit", "open", "open", "", "web_3-1024x207_03", "", "", "2015-02-05 18:49:15", "2015-02-05 18:49:15", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Web_3-1024x207_03.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("754", "1", "2015-02-05 18:49:17", "2015-02-05 18:49:17", "", "Web_3-1024x207_04", "", "inherit", "open", "open", "", "web_3-1024x207_04", "", "", "2015-02-05 18:49:17", "2015-02-05 18:49:17", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Web_3-1024x207_04.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("755", "1", "2015-02-05 18:49:27", "2015-02-05 18:49:27", "", "Web_3-1024x207_02", "", "inherit", "open", "open", "", "web_3-1024x207_02-2", "", "", "2015-02-05 18:49:27", "2015-02-05 18:49:27", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Web_3-1024x207_021.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("756", "1", "2015-02-05 18:57:59", "2015-02-05 18:57:59", "", "85-250x250", "", "inherit", "open", "open", "", "85-250x250", "", "", "2015-02-05 18:57:59", "2015-02-05 18:57:59", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/85-250x250.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("757", "1", "2015-02-05 18:58:08", "2015-02-05 18:58:08", "", "Baby-Aid_Front_v2-250x250", "", "inherit", "open", "open", "", "baby-aid_front_v2-250x250", "", "", "2015-02-05 18:58:08", "2015-02-05 18:58:08", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Baby-Aid_Front_v2-250x250.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("758", "1", "2015-02-05 18:58:17", "2015-02-05 18:58:17", "", "Jenam-Shopper-Bag-Polka-Dot", "", "inherit", "open", "open", "", "jenam-shopper-bag-polka-dot-250x250", "", "", "2015-03-26 17:59:16", "2015-03-26 17:59:16", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Jenam-Shopper-Bag-Polka-Dot-250x250.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("759", "1", "2015-02-05 18:58:29", "2015-02-05 18:58:29", "", "Wedding-Survival-Kit_Top-250x250", "", "inherit", "open", "open", "", "wedding-survival-kit_top-250x250", "", "", "2015-02-05 18:58:29", "2015-02-05 18:58:29", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Wedding-Survival-Kit_Top-250x250.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("760", "1", "2015-02-05 19:11:12", "2015-02-05 19:11:12", "", "85-250x250", "", "inherit", "open", "open", "", "85-250x250-2", "", "", "2015-02-05 19:11:12", "2015-02-05 19:11:12", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/85-250x2501.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("761", "1", "2015-02-05 19:11:19", "2015-02-05 19:11:19", "baby medical kit", "Baby-Aid_Front_v2-250x250", "", "inherit", "open", "open", "", "baby-aid_front_v2-250x250-2", "", "", "2015-07-06 14:45:11", "2015-07-06 14:45:11", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Baby-Aid_Front_v2-250x2501.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("762", "1", "2015-02-05 19:11:28", "2015-02-05 19:11:28", "", "", "", "inherit", "open", "open", "", "jenam-shopper-bag-polka-dot-250x250-2", "", "", "2015-03-26 17:59:10", "2015-03-26 17:59:10", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Jenam-Shopper-Bag-Polka-Dot-250x2501.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("763", "1", "2015-02-05 19:11:35", "2015-02-05 19:11:35", "", "Wedding-Survival-Kit_Top-250x250", "", "inherit", "open", "open", "", "wedding-survival-kit_top-250x250-2", "", "", "2015-02-05 19:11:35", "2015-02-05 19:11:35", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Wedding-Survival-Kit_Top-250x2501.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("764", "1", "2015-02-05 20:20:34", "2015-02-05 20:20:34", "", "Web_3-1024x207_04", "", "inherit", "open", "open", "", "web_3-1024x207_04-2", "", "", "2015-02-05 20:20:34", "2015-02-05 20:20:34", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Web_3-1024x207_041.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("765", "1", "2015-02-05 20:33:29", "2015-02-05 20:33:29", "", "Products at a glance", "", "publish", "closed", "open", "", "shop", "", "", "2015-06-10 07:13:26", "2015-06-10 07:13:26", "", "0", "http://chequerbox.co.za/?page_id=765", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("766", "1", "2015-02-05 20:33:29", "2015-02-05 20:33:29", "[woocommerce_cart]", "Cart", "", "publish", "closed", "open", "", "cart", "", "", "2015-02-05 20:33:29", "2015-02-05 20:33:29", "", "0", "http://chequerbox.co.za/?page_id=766", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("767", "1", "2015-02-05 20:33:29", "2015-02-05 20:33:29", "[woocommerce_checkout]", "Checkout", "", "publish", "closed", "open", "", "checkout", "", "", "2015-03-28 17:37:00", "2015-03-28 17:37:00", "", "0", "http://chequerbox.co.za/?page_id=767", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("768", "1", "2015-02-05 20:33:29", "2015-02-05 20:33:29", "[woocommerce_my_account]", "My Account", "", "publish", "closed", "open", "", "my-account", "", "", "2015-02-05 20:33:29", "2015-02-05 20:33:29", "", "0", "http://chequerbox.co.za/?page_id=768", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("769", "1", "2015-02-05 20:43:48", "2015-02-05 20:43:48", "Babies come in all shapes and sizes! The Snappi® Baby Chair was designed out of necessity. Snappi® realised that there was a need in the marketplace for a floor sitter which offered optimum comfort, convenience and flexibility – a chair which would conform to baby’s unique shape and still offer the correct pelvic support.\r\n<p id=\"yui_3_7_2_1_1378115053038_15678\">The  Snappi® Baby Chair has a flexible inner lining, which moulds to baby’s shape, allowing your child to find the most comfortable position to suit him / her, whilst simultaneously offering the correct support for developing their pelvic muscles and little backs.</p>\r\nGet your   Snappi® Baby Chair by ordering from ChequerBox today!", "Snappi® Baby Chair", "(2-3 working day national delivery)", "publish", "open", "closed", "", "snappi-baby-chair", "", "", "2015-03-25 18:02:20", "2015-03-25 18:02:20", "", "0", "http://chequerbox.co.za/?post_type=product&#038;p=769", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("770", "1", "2015-02-05 20:37:18", "2015-02-05 20:37:18", "", "Variation #770 of Snappi® Baby Chair", "", "publish", "open", "open", "", "product-769-variation", "", "", "2015-02-05 20:37:18", "2015-02-05 20:37:18", "", "769", "http://chequerbox.co.za/?product_variation=product-769-variation", "0", "product_variation", "", "0");
INSERT INTO `wp_posts` VALUES("771", "1", "2015-02-05 20:40:08", "2015-02-05 20:40:08", "", "Variation #771 of Snappi® Baby Chair", "", "publish", "open", "open", "", "product-769-variation-2", "", "", "2015-02-05 20:40:08", "2015-02-05 20:40:08", "", "769", "http://chequerbox.co.za/?product_variation=product-769-variation-2", "1", "product_variation", "", "0");
INSERT INTO `wp_posts` VALUES("772", "1", "2015-02-05 20:40:18", "2015-02-05 20:40:18", "", "Variation #772 of Snappi® Baby Chair", "", "publish", "open", "open", "", "product-769-variation-3", "", "", "2015-02-05 20:40:18", "2015-02-05 20:40:18", "", "769", "http://chequerbox.co.za/?product_variation=product-769-variation-3", "2", "product_variation", "", "0");
INSERT INTO `wp_posts` VALUES("773", "1", "2015-02-05 20:40:34", "2015-02-05 20:40:34", "", "Variation #773 of Snappi® Baby Chair", "", "publish", "open", "open", "", "product-769-variation-4", "", "", "2015-02-05 20:40:34", "2015-02-05 20:40:34", "", "769", "http://chequerbox.co.za/?product_variation=product-769-variation-4", "3", "product_variation", "", "0");
INSERT INTO `wp_posts` VALUES("774", "1", "2015-02-05 20:41:09", "2015-02-05 20:41:09", "", "admin-ajax", "", "inherit", "open", "open", "", "admin-ajax", "", "", "2015-02-05 20:41:09", "2015-02-05 20:41:09", "", "770", "http://chequerbox.co.za/wp-content/uploads/2015/02/admin-ajax.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("775", "1", "2015-02-05 20:43:09", "2015-02-05 20:43:09", "", "86", "", "inherit", "open", "open", "", "86-2", "", "", "2015-02-05 20:43:09", "2015-02-05 20:43:09", "", "770", "http://chequerbox.co.za/wp-content/uploads/2015/02/86.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("776", "1", "2015-02-05 20:43:11", "2015-02-05 20:43:11", "", "87", "", "inherit", "open", "open", "", "87-2", "", "", "2015-02-05 20:43:11", "2015-02-05 20:43:11", "", "770", "http://chequerbox.co.za/wp-content/uploads/2015/02/87.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("777", "1", "2015-02-05 20:43:13", "2015-02-05 20:43:13", "", "90", "", "inherit", "open", "open", "", "90-2", "", "", "2015-02-05 20:43:13", "2015-02-05 20:43:13", "", "770", "http://chequerbox.co.za/wp-content/uploads/2015/02/90.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("778", "1", "2015-02-05 20:43:14", "2015-02-05 20:43:14", "", "91", "", "inherit", "open", "open", "", "91-2", "", "", "2015-02-05 20:43:14", "2015-02-05 20:43:14", "", "770", "http://chequerbox.co.za/wp-content/uploads/2015/02/91.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("779", "1", "2015-02-05 20:43:16", "2015-02-05 20:43:16", "", "Ciara", "", "inherit", "open", "open", "", "ciara-2", "", "", "2015-02-05 20:43:16", "2015-02-05 20:43:16", "", "770", "http://chequerbox.co.za/wp-content/uploads/2015/02/Ciara.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("780", "1", "2015-02-05 20:43:17", "2015-02-05 20:43:17", "", "Ewan pictured in a Bobbiyo", "", "inherit", "open", "open", "", "ewan-pictured-in-a-bobbiyo-2", "", "", "2015-03-26 17:59:04", "2015-03-26 17:59:04", "", "770", "http://chequerbox.co.za/wp-content/uploads/2015/02/Ewan-pictured-in-a-Bobbiyo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("781", "1", "2015-02-06 05:55:31", "2015-02-06 05:55:31", "", "Products", "", "publish", "open", "open", "", "products", "", "", "2015-03-26 19:41:36", "2015-03-26 19:41:36", "", "0", "http://chequerbox.co.za/?p=781", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("783", "1", "2015-02-06 05:58:59", "2015-02-06 05:58:59", "ChequerBox (Pty) Ltd  offers a range of products and services ‘boxed’, ranging from photo booths and other event photography, baby medical kits, novel wedding kits and coroporate vending machines.  The common thread among the various solutions offered by ChequerBox is the strong focus on quality and value offered to clients.  We aim to please…\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Joleen_small.jpg\"><img class=\"alignnone size-full wp-image-1234\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Joleen_small.jpg\" alt=\"Joleen_small\" width=\"135\" height=\"203\" /></a>Founder and Director – Joleen Matthee</h2>\r\nThe company’s founder, Joleen Matthee, graduated with a Communications Management degree from Tuks and later completed her honours in Marketing at Wits University.  Her work experience ranged from sales and trade marketing to more recently marketing research with a strong focus on brand equity and copy testing.\r\n\r\n&nbsp;\r\n<h2> <a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Jet_small.jpg\"><img class=\"alignnone size-full wp-image-1233\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Jet_small.jpg\" alt=\"Jet_small\" width=\"135\" height=\"203\" /></a>Partner – Jethran Matthee</h2>\r\nJet is a silent partner with all the technical knowhow and savvy to give CheqeuerBox the edge.  Jet operates as a project engineer by day, however it doesn’t stop there.  He’s a keen pilot of small aircrafts and quite the IT specialist.", "About Us", "", "publish", "closed", "closed", "", "about-us", "", "", "2015-06-24 09:48:37", "2015-06-24 09:48:37", "", "0", "http://chequerbox.co.za/?page_id=783", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("784", "1", "2015-02-06 05:56:14", "2015-02-06 05:56:14", "", "IMG_0450-152x300", "", "inherit", "open", "open", "", "img_0450-152x300", "", "", "2015-02-06 05:56:14", "2015-02-06 05:56:14", "", "783", "http://chequerbox.co.za/wp-content/uploads/2015/02/IMG_0450-152x300.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("785", "1", "2015-02-06 05:58:59", "2015-02-06 05:58:59", "", "About Us", "", "inherit", "open", "open", "", "783-revision-v1", "", "", "2015-02-06 05:58:59", "2015-02-06 05:58:59", "", "783", "http://chequerbox.co.za/?p=785", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("786", "1", "2015-02-06 06:01:50", "2015-02-06 06:01:50", "<strong>C<img class=\"alignleft size-full wp-image-784\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/02/IMG_0450-152x300.jpg\" alt=\"IMG_0450-152x300\" width=\"152\" height=\"300\" />hequerBox (Pty) Ltd</strong> is a company that offers various ‘boxed solutions’.  Our products and services range from corporate vending solutions, photo booths and green screen photo booths, baby medical kits and novel wedding day kits.\r\n\r\nThe company was started by Joleen Eden, a marketing graduate from Wits University.  After graduating, Joleen worked in sales &amp; trade marketing before embarking on a two year stint in the UK.  She returned to complete her honours at Wits University and gained a few years’ experience in marketing research.\r\n\r\nFulfilling a lifelong dream, Joleen started her own company, ChequerBox, a company that strives to make clients super happy and deliver innovative products &amp; solutions.", "About Us", "", "inherit", "open", "open", "", "783-revision-v1", "", "", "2015-02-06 06:01:50", "2015-02-06 06:01:50", "", "783", "http://chequerbox.co.za/?p=786", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("787", "1", "2015-02-06 06:08:18", "2015-02-06 06:08:18", "[posts-for-page cat_slug=\'our-blog\' hide_images=\'false\' num=\'5\' read_more=\'Read More »\' show_full_posts=\'false\' use_wp_excerpt=\'true\' strip_html=\'true\' hide_post_content=\'false\' show_meta=\'true\']", "Our Blog", "", "publish", "closed", "closed", "", "our-blog", "", "", "2015-03-14 20:04:11", "2015-03-14 20:04:11", "", "0", "http://chequerbox.co.za/?page_id=787", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("788", "1", "2015-02-06 06:08:18", "2015-02-06 06:08:18", "Blog Posts Go here", "Our Blog", "", "inherit", "open", "open", "", "787-revision-v1", "", "", "2015-02-06 06:08:18", "2015-02-06 06:08:18", "", "787", "http://chequerbox.co.za/?p=788", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("789", "1", "2015-02-06 06:13:58", "2015-02-06 06:13:58", "<h3>Sandton Office</h3>\r\nSunninghill\r\nGauteng\r\nSouth Africa\r\n\r\nTel: +27 72 375 6254\r\n\r\nEmail: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a>\r\n\r\n[vfb id=3]", "Contact Us", "", "publish", "closed", "closed", "", "contact-us", "", "", "2015-06-23 18:22:23", "2015-06-23 18:22:23", "", "0", "http://chequerbox.co.za/?page_id=789", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("790", "1", "2015-02-06 06:13:58", "2015-02-06 06:13:58", "<header>\r\n<h1>Contact</h1>\r\n</header><section class=\"entry\">\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul>\r\n</section></div>\r\n</section>", "Contact Us", "", "inherit", "open", "open", "", "789-revision-v1", "", "", "2015-02-06 06:13:58", "2015-02-06 06:13:58", "", "789", "http://chequerbox.co.za/?p=790", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("791", "1", "2015-02-06 06:14:16", "2015-02-06 06:14:16", "<header>\r\n<h1>Contact</h1>\r\n</header><section class=\"entry\">\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3>Sandton Office</h3>\r\nSunninghill\r\nGauteng\r\nSouth Africa\r\n\r\nTel: +27 72 375 6254\r\n\r\nEmail: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a>\r\n\r\n</section></div>\r\n</section>", "Contact Us", "", "inherit", "open", "open", "", "789-revision-v1", "", "", "2015-02-06 06:14:16", "2015-02-06 06:14:16", "", "789", "http://chequerbox.co.za/?p=791", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("792", "1", "2015-02-06 06:17:08", "2015-02-06 06:17:08", " ", "", "", "publish", "open", "open", "", "792", "", "", "2015-03-26 19:41:36", "2015-03-26 19:41:36", "", "0", "http://chequerbox.co.za/?p=792", "14", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("793", "1", "2015-02-06 06:17:08", "2015-02-06 06:17:08", " ", "", "", "publish", "open", "open", "", "793", "", "", "2015-03-26 19:41:36", "2015-03-26 19:41:36", "", "0", "http://chequerbox.co.za/?p=793", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("794", "1", "2015-02-06 06:17:08", "2015-02-06 06:17:08", " ", "", "", "publish", "open", "open", "", "794", "", "", "2015-03-26 19:41:36", "2015-03-26 19:41:36", "", "0", "http://chequerbox.co.za/?p=794", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("800", "1", "2015-02-16 18:06:29", "2015-02-16 18:06:29", "", "Homepage", "", "publish", "open", "open", "", "new-slider", "", "", "2015-02-16 18:08:22", "2015-02-16 18:08:22", "", "0", "http://chequerbox.co.za/?post_type=ml-slider&#038;p=800", "0", "ml-slider", "", "0");
INSERT INTO `wp_posts` VALUES("801", "1", "2015-02-16 18:19:37", "2015-02-16 18:19:37", "", "WebLogo", "", "inherit", "open", "open", "", "weblogo-2", "", "", "2015-02-16 18:19:37", "2015-02-16 18:19:37", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/WebLogo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("804", "1", "2015-02-16 18:58:44", "2015-02-16 18:58:44", "", "", "", "inherit", "open", "open", "", "snappi_300px-x-195px", "", "", "2015-03-26 17:58:50", "2015-03-26 17:58:50", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/Snappi_300px-x-195px.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("805", "1", "2015-02-16 18:59:45", "2015-02-16 18:59:45", "baby medical kit", "", "", "inherit", "open", "open", "", "babybox_436px-x-273px", "", "", "2015-07-06 14:45:35", "2015-07-06 14:45:35", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/BabyBox_436px-x-273px.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("806", "1", "2015-02-16 19:00:33", "2015-02-16 19:00:33", "", "", "", "inherit", "open", "open", "", "weekender-bag_436px-x-273px", "", "", "2015-03-26 17:58:42", "2015-03-26 17:58:42", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/weekender-bag_436px-x-273px.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("807", "1", "2015-02-16 19:01:47", "2015-02-16 19:01:47", "", "", "", "inherit", "open", "open", "", "weddingkits_300px-x-195px", "", "", "2015-03-26 17:58:39", "2015-03-26 17:58:39", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/weddingkits_300px-x-195px.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("808", "1", "2015-02-16 19:01:55", "2015-02-16 19:01:55", "", "", "", "inherit", "open", "open", "", "weddingkits2_436px-x-273px-2", "", "", "2015-03-26 17:58:36", "2015-03-26 17:58:36", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/weddingkits2_436px-x-273px1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("810", "1", "2015-02-16 19:05:55", "2015-02-16 19:05:55", "<h2>Your comprehensive baby medical kit for babies</h2>\r\n<strong>Baby Medi Box</strong> is a comprehensive baby medical kit containing basic medical equipment as well as tried and tested over the counter medications and products.  <strong>Baby Medi Box</strong> is endorsed by Ann Richardson, qualified Nurse and Midwife, co-author of the international bestsellers, <em>Baby Sense</em>; <em>Sleep Sense</em> and author of the international bestseller <em>Toddler Sense</em>.  We have taken the time to ensure that all the essentials are included thereby making life easier for new moms as well as friends/family running out of original gift ideas.  The kit also includes a booklet that acts as a guideline for new parents on basic baby healthcare.\r\n\r\n<strong>Baby Medi Box</strong> includes:\r\n\r\n<b><span style=\"text-decoration: underline;\">Pain and Fever</span></b>\r\n\r\nDigital Thermometer\r\n\r\nParacetamol Syrup\r\n\r\nEmpaped Suppositories\r\n\r\n<b><span style=\"text-decoration: underline;\">Nasal Care</span></b>\r\n\r\nSaline Nose drops &amp; Nasal Aspirator\r\n\r\n<b><span style=\"text-decoration: underline;\">Teething</span></b>\r\n\r\nTeething Gel\r\n\r\nBaby Finger Toothbrush\r\n\r\n<b><span style=\"text-decoration: underline;\">Cord Care</span></b>\r\n\r\nSurgical Spirits\r\n\r\nCotton Wool\r\n\r\n<b><span style=\"text-decoration: underline;\">Colic Care</span></b>\r\n\r\nGripe Water\r\n\r\n<b><span style=\"text-decoration: underline;\">Vomiting and/or Diarrhoea</span></b>\r\n\r\nRehydration Mixture\r\n\r\n<b><span style=\"text-decoration: underline;\">Burn Wound Care</span></b>\r\n\r\nBurn dressings\r\n\r\n<b><span style=\"text-decoration: underline;\">First Aid</span></b>\r\n\r\nTweezers &amp; Scissors\r\n\r\nBandage\r\n\r\nWaterproof Plasters\r\n\r\nAntiseptic Ointment\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Booklet</strong></span>", "Baby Medi Box", "National Delivery (2-3 working days)", "publish", "open", "closed", "", "baby-medi-box-your-comprehensive-baby-medical-kit-for-babies", "", "", "2015-03-26 18:20:52", "2015-03-26 18:20:52", "", "0", "http://chequerbox.co.za/?post_type=product&#038;p=810", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("812", "1", "2015-02-16 19:11:16", "2015-02-16 19:11:16", "Pretty handbags by Jenam - a coveted range of bags inspired by floral and natural themes, incorporating European trends to ensure a fashionable yet timeless range of bags.  The Hold-All Bag is large enough to use as an overnight bag or as an everyday handbag.", "Hold-All Bags", "(2-3 working day national delivery)", "publish", "open", "closed", "", "hold-all-bags", "", "", "2015-03-26 19:11:14", "2015-03-26 19:11:14", "", "0", "http://chequerbox.co.za/?post_type=product&#038;p=812", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("813", "1", "2015-02-16 19:08:42", "2015-02-16 19:08:42", "", "Variation #813 of Hold-All Bags", "", "publish", "open", "open", "", "product-812-variation", "", "", "2015-02-16 19:08:42", "2015-02-16 19:08:42", "", "812", "http://chequerbox.co.za/product_variation/product-812-variation/", "0", "product_variation", "", "0");
INSERT INTO `wp_posts` VALUES("814", "1", "2015-02-16 19:08:42", "2015-02-16 19:08:42", "", "Variation #814 of Hold-All Bags", "", "publish", "open", "open", "", "product-812-variation-2", "", "", "2015-02-16 19:08:42", "2015-02-16 19:08:42", "", "812", "http://chequerbox.co.za/product_variation/product-812-variation-2/", "1", "product_variation", "", "0");
INSERT INTO `wp_posts` VALUES("815", "1", "2015-02-16 19:14:03", "2015-02-16 19:14:03", "", "Baby Medi Kits", "", "publish", "open", "open", "", "baby", "", "", "2015-03-26 19:41:36", "2015-03-26 19:41:36", "", "0", "http://chequerbox.co.za/?p=815", "10", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("817", "1", "2015-02-16 19:14:03", "2015-02-16 19:14:03", "", "Wedding Box", "", "publish", "open", "open", "", "wedding-box", "", "", "2015-03-26 19:41:36", "2015-03-26 19:41:36", "", "0", "http://chequerbox.co.za/?p=817", "13", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("820", "1", "2015-02-16 19:26:29", "2015-02-16 19:26:29", "Pretty handbags by Jenam - a coveted range of bags inspired by floral and natural themes, incorporating European trends to ensure a fashionable yet timeless range of bags.", "Small Shopper Bag", "(2-3 working day national delivery)", "publish", "open", "closed", "", "small-shopper-bag", "", "", "2015-03-26 19:16:38", "2015-03-26 19:16:38", "", "0", "http://chequerbox.co.za/?post_type=product&#038;p=820", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("821", "1", "2015-02-16 19:27:36", "2015-02-16 19:27:36", "Pretty handbags by Jenam - a coveted range of bags inspired by floral and natural themes, incorporating European trends to ensure a fashionable yet timeless range of bags.   This weekender bag is large enough for weekend trips or to use as a large handbag.", "Weekender Bag", "(2-3 working day national delivery)", "publish", "open", "closed", "", "weekender-bag", "", "", "2015-03-25 18:05:33", "2015-03-25 18:05:33", "", "0", "http://chequerbox.co.za/?post_type=product&#038;p=821", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("822", "1", "2015-02-16 19:29:50", "2015-02-16 19:29:50", "Pretty handbags by Jenam - a coveted range of bags inspired by floral and natural themes, incorporating European trends to ensure a fashionable yet timeless range of bags.", "Shopper Bag", "(2-3 working day national delivery)", "publish", "open", "closed", "", "shopper-bag", "", "", "2015-07-15 13:40:42", "2015-07-15 13:40:42", "", "0", "http://chequerbox.co.za/?post_type=product&#038;p=822", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("823", "1", "2015-02-16 19:28:41", "2015-02-16 19:28:41", "", "Variation #823 of Shopper Bag", "", "publish", "open", "open", "", "product-822-variation", "", "", "2015-02-16 19:28:41", "2015-02-16 19:28:41", "", "822", "http://chequerbox.co.za/product_variation/product-822-variation/", "0", "product_variation", "", "0");
INSERT INTO `wp_posts` VALUES("824", "1", "2015-02-16 19:28:41", "2015-02-16 19:28:41", "", "Variation #824 of Shopper Bag", "", "publish", "open", "open", "", "product-822-variation-2", "", "", "2015-02-16 19:28:41", "2015-02-16 19:28:41", "", "822", "http://chequerbox.co.za/product_variation/product-822-variation-2/", "1", "product_variation", "", "0");
INSERT INTO `wp_posts` VALUES("830", "1", "2015-02-24 09:00:07", "2015-02-24 09:00:07", "http://chequerbox.co.za/wp-content/uploads/2015/02/copy-WebLogo.jpg", "copy-WebLogo.jpg", "", "inherit", "open", "open", "", "copy-weblogo-jpg", "", "", "2015-02-24 09:00:07", "2015-02-24 09:00:07", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/02/copy-WebLogo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("834", "1", "2015-03-02 17:51:58", "2015-03-02 17:51:58", "", "Wedding", "", "publish", "closed", "closed", "", "wedding", "", "", "2015-03-05 20:00:36", "2015-03-05 20:00:36", "", "0", "http://chequerbox.co.za/?post_type=spa_slider&#038;p=834", "0", "spa_slider", "", "0");
INSERT INTO `wp_posts` VALUES("835", "2", "2014-02-27 12:33:19", "2014-02-27 10:33:19", "[gallery ids=\"836,837,838,839,840,841\"]", "Altrisk Year-End Function", "", "publish", "open", "open", "", "altrisk-year-end-function", "", "", "2014-02-27 12:33:19", "2014-02-27 10:33:19", "", "0", "http://www.chequerbox.co.za/?p=835", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("836", "1", "2015-03-02 17:52:25", "2015-03-02 17:52:25", "", "Baby", "", "publish", "closed", "closed", "", "baby", "", "", "2015-03-05 20:02:05", "2015-03-05 20:02:05", "", "0", "http://chequerbox.co.za/?post_type=spa_slider&#038;p=836", "0", "spa_slider", "", "0");
INSERT INTO `wp_posts` VALUES("838", "1", "2015-03-02 17:52:45", "2015-03-02 17:52:45", "", "Photobooth", "", "publish", "closed", "closed", "", "photobooth", "", "", "2015-03-05 20:01:35", "2015-03-05 20:01:35", "", "0", "http://chequerbox.co.za/?post_type=spa_slider&#038;p=838", "0", "spa_slider", "", "0");
INSERT INTO `wp_posts` VALUES("840", "1", "2015-03-02 17:53:37", "2015-03-02 17:53:37", "", "Vending Machines", "", "publish", "closed", "closed", "", "vending-machines", "", "", "2015-03-05 20:01:07", "2015-03-05 20:01:07", "", "0", "http://chequerbox.co.za/?post_type=spa_slider&#038;p=840", "0", "spa_slider", "", "0");
INSERT INTO `wp_posts` VALUES("842", "1", "2015-03-02 17:59:10", "2015-03-02 17:59:10", "", "Baby", "", "inherit", "open", "open", "", "baby-2", "", "", "2015-03-02 17:59:10", "2015-03-02 17:59:10", "", "840", "http://chequerbox.co.za/wp-content/uploads/2015/03/Baby.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("843", "1", "2015-03-02 17:59:12", "2015-03-02 17:59:12", "", "Photobooth", "", "inherit", "open", "open", "", "photobooth-2", "", "", "2015-03-02 17:59:12", "2015-03-02 17:59:12", "", "840", "http://chequerbox.co.za/wp-content/uploads/2015/03/Photobooth.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("844", "1", "2015-03-02 17:59:13", "2015-03-02 17:59:13", "", "Vending2", "", "inherit", "open", "open", "", "vending2", "", "", "2015-03-02 17:59:13", "2015-03-02 17:59:13", "", "840", "http://chequerbox.co.za/wp-content/uploads/2015/03/Vending2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("845", "1", "2015-03-02 17:59:14", "2015-03-02 17:59:14", "", "Wedding", "", "inherit", "open", "open", "", "wedding-2", "", "", "2015-03-02 17:59:14", "2015-03-02 17:59:14", "", "840", "http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("846", "1", "2015-03-02 18:01:32", "2015-03-02 18:01:32", "", "FavIcon", "", "inherit", "open", "open", "", "favicon", "", "", "2015-03-02 18:01:32", "2015-03-02 18:01:32", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/03/FavIcon.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("847", "1", "2015-03-02 18:18:27", "2015-03-02 18:18:27", "", "Joleen Eden", "", "publish", "closed", "closed", "", "joleen-eden", "", "", "2015-03-02 18:20:16", "2015-03-02 18:20:16", "", "0", "http://chequerbox.co.za/?post_type=spa_team&#038;p=847", "0", "spa_team", "", "0");
INSERT INTO `wp_posts` VALUES("848", "1", "2015-03-02 18:19:53", "2015-03-02 18:19:53", "<strong>ChequerBox (Pty) Ltd</strong> is a company that offers various ‘boxed solutions’.  Our products and services range from corporate vending solutions, photo booths and green screen photo booths, baby medical kits and novel wedding day kits.\r\n\r\nThe company was started by Joleen Eden, a marketing graduate from Wits University.  After graduating, Joleen worked in sales &amp; trade marketing before embarking on a two year stint in the UK.  She returned to complete her honours at Wits University and gained a few years’ experience in marketing research.\r\n\r\nFulfilling a lifelong dream, Joleen started her own company, ChequerBox, a company that strives to make clients super happy and deliver innovative products &amp; solutions.", "About Us", "", "inherit", "open", "open", "", "783-revision-v1", "", "", "2015-03-02 18:19:53", "2015-03-02 18:19:53", "", "783", "http://chequerbox.co.za/783-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("849", "1", "2015-03-02 18:20:12", "2015-03-02 18:20:12", "", "Joleen", "", "inherit", "open", "open", "", "joleen", "", "", "2015-03-02 18:20:12", "2015-03-02 18:20:12", "", "847", "http://chequerbox.co.za/wp-content/uploads/2015/03/Joleen.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("850", "1", "2015-03-02 18:24:01", "2015-03-02 18:24:01", "&nbsp;\r\n\r\n<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\"><img class=\"aligncenter wp-image-1176 size-full\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\" alt=\"traditional photo booth\" width=\"700\" height=\"456\" /></a>\r\n<h3>Traditional Photobooths</h3>\r\nA traditional photobooth remains great fun for any party, wedding or corporate function.  There is something about getting dressed up with silly or cute props and getting into a photobooth to have some fun.  This is the perfect ice breaker for any event.\r\n\r\nChequerBox offers The PhotoBox, a traditional photobooth that can be assembled at any party or event and instantly prints a traditional photo strip or postcard size photo with custom design.  We also have a touch screen for ease of use that displays a live view so that you can view the photos before they are printed.  Our photobooth includes the option to select between colour, black and white or sepia photo styles.  We always have assistants with our photobooth to ensure a smooth but fun process for everyone.  A digital copy of all photos will be made available to you after the event.\r\n<h3>Weddings</h3>\r\nThe PhotoBox photobooth hire is the perfect ice breaker for any wedding and you can use the photo strips as a wedding favor.  We bring along small magnets that we hand out to each guest with their first set of photos.  We also include a wedding guest book and encourage your guests to add some of their copies to the book along with hand-written messages.  A digital copy of all photos is given to you after the event.\r\n<h3>Corporate Events</h3>\r\nThe PhotoBox photobooth can be branded for your corporate event along with the photo background.  We can incorporate your logo on the live-display monitor inside the booth to leverage every branding opportunity for your event as well as automatically upload to your Facebook profile.  After each event a copy of all the digital photos is made available for your use.  Enquire about large screen displays for your event or custom props.\r\n<h3><strong>Gallery:</strong></h3>\r\n[gallery link=\"file\" size=\"medium\" ids=\"1129,1130,1131,1132,1133,1134,1135,1136,1137,1128,1138,1139,1140,1141\"]", "Traditional PhotoBooth", "", "publish", "closed", "closed", "", "photo-booth-green-screen-photo-booth-rentals", "", "", "2015-07-06 14:38:44", "2015-07-06 14:38:44", "", "0", "http://chequerbox.co.za/?page_id=850", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("851", "1", "2015-03-02 18:24:01", "2015-03-02 18:24:01", "<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/First-cover-photo.png\"><img class=\"alignnone size-full wp-image-975\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/First-cover-photo.png\" alt=\"First cover photo\" width=\"700\" height=\"456\" /></a>\r\n\r\n<b>ChequerBox Photo Booth</b> and <strong>Green Screen Photo Booth</strong> rentals<strong> </strong>are great fun and will create the ultimate memories at your event and give your guests something tangible to remember.\r\n\r\n<b>How it works:</b>\r\n\r\nWe will deliver, set up and stay by the booth during the booked time for the event making sure everyone understands how it works and receives their photo strips printed after each photo session.\r\n\r\nChoose between three to four photos per strip.  After every photo session (3-4 photos), two copies will be printed and handed to your guests.  On request, we can keep a copy of each photo strip and put it aside for you.  You will receive a USB flash drive with a copy of all the photos taken during the event.\r\n\r\n<b>Custom Logo / Photo strip:</b>\r\n\r\n<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Ellas-Background_21June13_v1.jpg\"><img class=\"alignnone size-medium wp-image-816\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Ellas-Background_21June13_v1-101x300.jpg\" alt=\"Photo Strip Background &amp; Logo Design\" width=\"101\" height=\"300\" /></a><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Copy-of-Kiana_Background_draft1.jpg\"><img class=\"alignnone size-medium wp-image-818\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Copy-of-Kiana_Background_draft1-101x300.jpg\" alt=\"Photo Strip Background &amp; Logo Design\" width=\"101\" height=\"300\" /></a><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Copy-of-Kelly_Background_v1.jpg\"><img class=\"alignnone size-medium wp-image-819\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Copy-of-Kelly_Background_v1-101x300.jpg\" alt=\"Photo Strip Background &amp; Logo Design\" width=\"101\" height=\"300\" /></a><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Copy-of-Background-Design_v1.jpg\"><img class=\"alignnone size-medium wp-image-817\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Copy-of-Background-Design_v1-101x300.jpg\" alt=\"Photo Strip Background &amp; Logo Design\" width=\"101\" height=\"300\" /></a>\r\n\r\nWe’ll design your photo strip background and logo to match your event’s theme.\r\n<p align=\"center\"><b>Custom Branding:</b></p>\r\n<p align=\"center\">Custom branding is an optional extra.  Work with our graphic designer to create the perfect branding for your</p>\r\n<p align=\"center\">corporate event or sponsorship.  We also work with suppliers that can arrange promotional material for brand activations and events.</p>\r\n<p align=\"center\"><img class=\"alignright size-medium wp-image-184\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Photo-Booth_Prop-Display_v1-300x283.jpg\" alt=\"Photo Booth_Prop Display_v1\" width=\"300\" height=\"283\" /></p>\r\n<p align=\"center\"><b>Free Prop Rental:</b></p>\r\nOur props range from funky to retro / vintage themed props that are available to use free of charge to help break the ice among your guests and getting their creative juices flowing\r\n<p align=\"center\"><b>Weddings:</b></p>\r\nEnjoy a free Ginger Ray Wedding Guest Book when booking photo booth for your wedding.  We bring along stationary so that guests can write their personal messages along with your photo strip copies.\r\n\r\n<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/IMG_0545.jpg\"><img class=\"alignnone size-large wp-image-815\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/IMG_0545-1024x879.jpg\" alt=\"ChequerBox Wedding Guest Book\" width=\"1024\" height=\"879\" /></a>\r\n\r\n<b>Kiddies Events / Parties:</b>\r\n\r\nWe’ve done loads of children parties and can ensure you that kids love our photo booths.  We’ll keep them entertained while you can have a breather!\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/131101_153447.jpg\"><img class=\"alignnone size-large wp-image-820\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/131101_153447-350x1024.jpg\" alt=\"131101_153447\" width=\"350\" height=\"1024\" /></a><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/07/130623_153348.jpg\"><img class=\"alignnone size-large wp-image-316\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/07/130623_153348-346x1024.jpg\" alt=\"130623_153348\" width=\"346\" height=\"1024\" /></a><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/10/130928_184005.jpg\"><img class=\"alignnone size-large wp-image-744\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/10/130928_184005-352x1024.jpg\" alt=\"130928_184005\" width=\"352\" height=\"1024\" /></a><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/11/131011_192625.jpg\"><img class=\"alignnone size-large wp-image-768\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/11/131011_192625-354x1024.jpg\" alt=\"131011_192625\" width=\"354\" height=\"1024\" /></a></b>\r\n\r\n<b>Matric Dances:</b>\r\n\r\nContact us for more information on our special offer for matric dances.  Booking in advance essential.\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul>\r\n</section></div>", "Photo Booth & Green Screen Photo Booth Rentals", "", "inherit", "open", "open", "", "850-revision-v1", "", "", "2015-03-02 18:24:01", "2015-03-02 18:24:01", "", "850", "http://chequerbox.co.za/850-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("852", "1", "2015-03-02 18:27:13", "2015-03-02 18:27:13", " ", "", "", "publish", "open", "open", "", "852", "", "", "2015-03-26 19:41:36", "2015-03-26 19:41:36", "", "0", "http://chequerbox.co.za/?p=852", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("853", "1", "2015-03-05 17:29:31", "0000-00-00 00:00:00", "", "Webhook created on Mar 05, 2015 @ 05:29 PM", "", "pending", "open", "closed", "webhook_54f8927ba616", "", "", "", "2015-03-05 17:29:31", "0000-00-00 00:00:00", "", "0", "http://chequerbox.co.za/?post_type=shop_webhook&p=853", "0", "shop_webhook", "", "0");
INSERT INTO `wp_posts` VALUES("854", "1", "2015-03-05 17:52:55", "2015-03-05 17:52:55", "<section class=\"entry\"><strong><img class=\"aligncenter wp-image-1173 size-medium\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/VendingBox-300x128.png\" alt=\"VendingBox\" width=\"300\" height=\"128\" /></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>ChequerBox Vending Machines</strong> were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.\r\n\r\n<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.\r\n\r\nOur contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\">\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"152,151,150,73\"]\r\n\r\n[vfb id=2]\r\n\r\n</div>\r\n</section><!--more-->", "Vending Machines", "", "publish", "closed", "closed", "", "vending-machines", "", "", "2015-03-26 18:42:20", "2015-03-26 18:42:20", "", "850", "http://chequerbox.co.za/?page_id=854", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("855", "1", "2015-03-05 17:52:55", "2015-03-05 17:52:55", "<section class=\"entry\"><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>\r\n\r\nChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.\r\n\r\n<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.\r\n\r\nWe offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.\r\n\r\nIf you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\"><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=177\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Bryanston_May13-200x200.jpg\" alt=\"Bryanston_May13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=152\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-PMP_Apr13-200x200.jpg\" alt=\"Denel PMP_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl>\r\n<dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=151\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Factory_Apr13-200x200.jpg\" alt=\"Denel Factory_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=150\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Admin_Apr131-200x200.jpg\" alt=\"Denel Admin_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl></div>\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul>\r\n</section></div>\r\n</section>", "Vending Machines", "", "inherit", "open", "open", "", "854-revision-v1", "", "", "2015-03-05 17:52:55", "2015-03-05 17:52:55", "", "854", "http://chequerbox.co.za/854-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("856", "1", "2015-03-05 17:53:36", "2015-03-05 17:53:36", "<section class=\"entry\"><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.\r\n\r\n<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.\r\n\r\nWe offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.\r\n\r\nIf you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\"><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=177\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Bryanston_May13-200x200.jpg\" alt=\"Bryanston_May13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=152\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-PMP_Apr13-200x200.jpg\" alt=\"Denel PMP_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=151\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Factory_Apr13-200x200.jpg\" alt=\"Denel Factory_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=150\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Admin_Apr131-200x200.jpg\" alt=\"Denel Admin_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl></div>\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul>\r\n</section></div>\r\n</section>", "Vending Machines", "", "inherit", "open", "open", "", "854-revision-v1", "", "", "2015-03-05 17:53:36", "2015-03-05 17:53:36", "", "854", "http://chequerbox.co.za/854-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("857", "1", "2015-03-05 17:54:06", "2015-03-05 17:54:06", "<section class=\"entry\"><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.\r\n\r\nWe offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.\r\n\r\nIf you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\"><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=177\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Bryanston_May13-200x200.jpg\" alt=\"Bryanston_May13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=152\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-PMP_Apr13-200x200.jpg\" alt=\"Denel PMP_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=151\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Factory_Apr13-200x200.jpg\" alt=\"Denel Factory_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=150\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Admin_Apr131-200x200.jpg\" alt=\"Denel Admin_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl></div>\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul>\r\n</section></div>\r\n</section>", "Vending Machines", "", "inherit", "open", "open", "", "854-revision-v1", "", "", "2015-03-05 17:54:06", "2015-03-05 17:54:06", "", "854", "http://chequerbox.co.za/854-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("858", "1", "2015-03-05 17:54:25", "2015-03-05 17:54:25", "<section class=\"entry\"><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.\r\n\r\nIf you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\"><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=177\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Bryanston_May13-200x200.jpg\" alt=\"Bryanston_May13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=152\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-PMP_Apr13-200x200.jpg\" alt=\"Denel PMP_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=151\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Factory_Apr13-200x200.jpg\" alt=\"Denel Factory_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=150\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Admin_Apr131-200x200.jpg\" alt=\"Denel Admin_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl></div>\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul>\r\n</section></div>\r\n</section>", "Vending Machines", "", "inherit", "open", "open", "", "854-revision-v1", "", "", "2015-03-05 17:54:25", "2015-03-05 17:54:25", "", "854", "http://chequerbox.co.za/854-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("859", "1", "2015-03-05 17:54:43", "2015-03-05 17:54:43", "<section class=\"entry\"><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\"><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=177\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Bryanston_May13-200x200.jpg\" alt=\"Bryanston_May13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=152\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-PMP_Apr13-200x200.jpg\" alt=\"Denel PMP_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=151\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Factory_Apr13-200x200.jpg\" alt=\"Denel Factory_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=150\"><img class=\"attachment-thumbnail\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Admin_Apr131-200x200.jpg\" alt=\"Denel Admin_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl></div>\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul>\r\n</section></div>\r\n</section>", "Vending Machines", "", "inherit", "open", "open", "", "854-revision-v1", "", "", "2015-03-05 17:54:43", "2015-03-05 17:54:43", "", "854", "http://chequerbox.co.za/854-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("860", "1", "2015-03-05 17:55:59", "2015-03-05 17:55:59", "<section class=\"entry\"><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\"><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=177\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Bryanston_May13-200x200.jpg\" alt=\"Bryanston_May13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=152\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-PMP_Apr13-200x200.jpg\" alt=\"Denel PMP_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=151\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Factory_Apr13-200x200.jpg\" alt=\"Denel Factory_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=150\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Admin_Apr131-200x200.jpg\" alt=\"Denel Admin_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl></div>\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul>\r\n</section></div>\r\n</section>", "Vending Machines", "", "inherit", "open", "open", "", "854-revision-v1", "", "", "2015-03-05 17:55:59", "2015-03-05 17:55:59", "", "854", "http://chequerbox.co.za/854-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("861", "1", "2015-03-05 17:56:16", "2015-03-05 17:56:16", "<section class=\"entry\"><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\"><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=177\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Bryanston_May13-200x200.jpg\" alt=\"Bryanston_May13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=152\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-PMP_Apr13-200x200.jpg\" alt=\"Denel PMP_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=151\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Factory_Apr13-200x200.jpg\" alt=\"Denel Factory_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=150\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Admin_Apr131-200x200.jpg\" alt=\"Denel Admin_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl></div>\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3></h3>\r\n<h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul>\r\n</section></div>\r\n</section>", "Vending Machines", "", "inherit", "open", "open", "", "854-revision-v1", "", "", "2015-03-05 17:56:16", "2015-03-05 17:56:16", "", "854", "http://chequerbox.co.za/854-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("862", "1", "2015-03-05 17:56:58", "2015-03-05 17:56:58", "<section class=\"entry\"><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\"><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=177\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Bryanston_May13-200x200.jpg\" alt=\"Bryanston_May13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=152\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-PMP_Apr13-200x200.jpg\" alt=\"Denel PMP_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=151\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Factory_Apr13-200x200.jpg\" alt=\"Denel Factory_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=150\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Admin_Apr131-200x200.jpg\" alt=\"Denel Admin_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl></div>\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3></h3>\r\n<div><h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul></div>\r\n</section></div>\r\n</section>", "Vending Machines", "", "inherit", "open", "open", "", "854-revision-v1", "", "", "2015-03-05 17:56:58", "2015-03-05 17:56:58", "", "854", "http://chequerbox.co.za/854-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("863", "1", "2015-03-05 17:57:28", "2015-03-05 17:57:28", "<section class=\"entry\"><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\"><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=177\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Bryanston_May13-200x200.jpg\" alt=\"Bryanston_May13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=152\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-PMP_Apr13-200x200.jpg\" alt=\"Denel PMP_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=151\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Factory_Apr13-200x200.jpg\" alt=\"Denel Factory_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=150\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Admin_Apr131-200x200.jpg\" alt=\"Denel Admin_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl></div>\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3></h3>\r\n<div style=\"float:left\">\r\n<h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul>\r\n</div>\r\n</section></div>\r\n</section>", "Vending Machines", "", "inherit", "open", "open", "", "854-revision-v1", "", "", "2015-03-05 17:57:28", "2015-03-05 17:57:28", "", "854", "http://chequerbox.co.za/854-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("864", "1", "2015-03-05 17:58:10", "2015-03-05 17:58:10", "<section class=\"entry\"><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\"><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=177\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Bryanston_May13-200x200.jpg\" alt=\"Bryanston_May13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=152\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-PMP_Apr13-200x200.jpg\" alt=\"Denel PMP_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=151\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Factory_Apr13-200x200.jpg\" alt=\"Denel Factory_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl><dl class=\"gallery-item\"><dt class=\"gallery-icon portrait\"><a href=\"http://www.chequerbox.co.za/?attachment_id=150\"><img class=\"attachment-thumbnail alignleft\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/05/Denel-Admin_Apr131-200x200.jpg\" alt=\"Denel Admin_Apr13\" width=\"200\" height=\"200\" /></a></dt></dl></div>\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<p>\r\n<h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul>\r\n</div>\r\n</section></p>\r\n</section>", "Vending Machines", "", "inherit", "open", "open", "", "854-revision-v1", "", "", "2015-03-05 17:58:10", "2015-03-05 17:58:10", "", "854", "http://chequerbox.co.za/854-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("865", "1", "2015-03-05 17:58:44", "2015-03-05 17:58:44", "<section class=\"entry\"><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\"></div>\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul>\r\n</section></div>\r\n</section>", "Vending Machines", "", "inherit", "open", "open", "", "854-revision-v1", "", "", "2015-03-05 17:58:44", "2015-03-05 17:58:44", "", "854", "http://chequerbox.co.za/854-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("866", "1", "2015-03-05 17:59:47", "2015-03-05 17:59:47", "<section class=\"entry\">&nbsp;\r\n\r\n<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\">\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"152,151,150,73\"]\r\n\r\n</div>\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul>\r\n</section></div>\r\n</section>", "Vending Machines", "", "inherit", "open", "open", "", "854-revision-v1", "", "", "2015-03-05 17:59:47", "2015-03-05 17:59:47", "", "854", "http://chequerbox.co.za/854-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("867", "1", "2015-03-05 17:59:52", "2015-03-05 17:59:52", "<section class=\"entry\"><a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\">\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"152,151,150,73\"]\r\n\r\n</div>\r\n<div class=\"location-twitter fix\"><section id=\"office-location\">\r\n<h3>Sandton Office</h3>\r\n<ul>\r\n	<li>Sunninghill\r\nGauteng\r\nSouth Africa</li>\r\n	<li>Tel: +27 72 375 6254</li>\r\n	<li>Email: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a></li>\r\n</ul>\r\n</section></div>\r\n</section>", "Vending Machines", "", "inherit", "open", "open", "", "854-revision-v1", "", "", "2015-03-05 17:59:52", "2015-03-05 17:59:52", "", "854", "http://chequerbox.co.za/854-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("868", "1", "2015-03-05 18:36:18", "2015-03-05 18:36:18", "", "", "", "inherit", "open", "open", "", "dsc_0722", "", "", "2015-03-26 17:58:26", "2015-03-26 17:58:26", "", "822", "http://chequerbox.co.za/wp-content/uploads/2015/02/DSC_0722.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("869", "1", "2015-03-05 18:38:09", "2015-03-05 18:38:09", "", "", "", "inherit", "open", "open", "", "dsc_0794", "", "", "2015-03-26 17:58:23", "2015-03-26 17:58:23", "", "822", "http://chequerbox.co.za/wp-content/uploads/2015/02/DSC_0794.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("870", "1", "2015-03-05 18:40:05", "2015-03-05 18:40:05", "", "", "", "inherit", "open", "open", "", "dsc_0754", "", "", "2015-03-26 17:58:30", "2015-03-26 17:58:30", "", "820", "http://chequerbox.co.za/wp-content/uploads/2015/02/DSC_0754.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("871", "1", "2015-03-05 18:42:10", "2015-03-05 18:42:10", "", "", "", "inherit", "open", "open", "", "dsc_0766", "", "", "2015-03-26 17:58:20", "2015-03-26 17:58:20", "", "812", "http://chequerbox.co.za/wp-content/uploads/2015/02/DSC_0766.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("872", "1", "2015-03-05 18:46:46", "2015-03-05 18:46:46", "The Wedding Day Kit Bag makes a great gift for a bride to be on her wedding day or can be used as bridesmaid gifts.  The bag contains some essentials and is big enough to add a few more items if you would like to.  The Wedding Day Bag is available in a navy red polka dot colour or a jade polka dot colour. Included are: Hold All Bag (navy / jade polka dots) white dressing gown (3/4 sleeve &amp; knee length) comfy white slippers shower cap white scrunchie (45 x 30 x 16cm)", "Wedding Day Kits", "", "publish", "open", "closed", "", "wedding-day-survival-kit", "", "", "2015-03-27 13:38:55", "2015-03-27 13:38:55", "", "0", "http://chequerbox.co.za/?post_type=product&#038;p=872", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("873", "1", "2015-03-05 18:51:47", "2015-03-05 18:51:47", "", "Hold Al -Bag Complete-Navy", "", "inherit", "open", "open", "", "hold-all-bag-complete_navy-1024x681", "", "", "2015-03-26 17:58:14", "2015-03-26 17:58:14", "", "872", "http://chequerbox.co.za/wp-content/uploads/2015/03/Hold-All-Bag-Complete_Navy-1024x681.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("874", "1", "2015-03-05 18:53:02", "2015-03-05 18:53:02", "The Wedding Day Survival Kit is the perfect emergency kit for a bride on her wedding day – a kit containing those just-in-case items that you won’t think of packing for the big day to ensure the perfect wedding day.  The Wedding Day Survival Kit is also great for bridesmaids so that they too can be prepared!\n\nThe Wedding Day Survival Kit includes:\n\nmending kit\n\nfrench manicure essentials &amp; nail care\n\nmini deodorant\n\nlip balm\n\nhair pins\n\nsafety pins\n\nplasters\n\nlint remover\n\nmini hand lotion\n\npain killers\n\nearing backs\n\ndrinking straw\n\nenergy snack", "Wedding Day Survival Kit", "", "inherit", "open", "open", "", "872-autosave-v1", "", "", "2015-03-05 18:53:02", "2015-03-05 18:53:02", "", "872", "http://chequerbox.co.za/872-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("875", "1", "2015-03-05 18:53:12", "2015-03-05 18:53:12", "", "Dressing Gown", "", "inherit", "open", "open", "", "dressing-gown-681x1024", "", "", "2015-03-26 17:57:54", "2015-03-26 17:57:54", "", "872", "http://chequerbox.co.za/wp-content/uploads/2015/03/Dressing-Gown-681x1024.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("876", "1", "2015-03-05 18:53:24", "2015-03-05 18:53:24", "", "Wedding-Day_Weekender-Bag-Jade", "", "inherit", "open", "open", "", "wedding-day_weekender-bag-jade-2", "", "", "2015-03-05 18:53:24", "2015-03-05 18:53:24", "", "872", "http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding-Day_Weekender-Bag-Jade.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("877", "1", "2015-03-05 18:54:58", "2015-03-05 18:54:58", "", "Variation #877 of Wedding Day Kits", "", "publish", "open", "open", "", "product-872-variation", "", "", "2015-03-05 18:54:58", "2015-03-05 18:54:58", "", "872", "http://chequerbox.co.za/product_variation/product-872-variation/", "0", "product_variation", "", "0");
INSERT INTO `wp_posts` VALUES("878", "1", "2015-03-05 18:54:59", "2015-03-05 18:54:59", "", "Variation #878 of Wedding Day Kits", "", "publish", "open", "open", "", "product-872-variation-2", "", "", "2015-03-05 18:54:59", "2015-03-05 18:54:59", "", "872", "http://chequerbox.co.za/product_variation/product-872-variation-2/", "1", "product_variation", "", "0");
INSERT INTO `wp_posts` VALUES("879", "1", "2015-03-05 18:55:46", "2015-03-05 18:55:46", "", "Variation #879 of Wedding Day Kits", "", "publish", "open", "open", "", "product-872-variation-3", "", "", "2015-03-05 18:55:46", "2015-03-05 18:55:46", "", "872", "http://chequerbox.co.za/product_variation/product-872-variation-3/", "2", "product_variation", "", "0");
INSERT INTO `wp_posts` VALUES("880", "1", "2015-03-05 18:59:38", "2015-03-05 18:59:38", "The Wedding Day Survival Kit is the perfect emergency kit for a bride on her wedding day – a kit containing those just-in-case items that you won’t think of packing for the big day to ensure the perfect wedding day.  The Wedding Day Survival Kit is also great for bridesmaids so that they too can be prepared!\r\n\r\nThe Wedding Day Survival Kit includes:\r\n\r\nmending kit\r\n\r\nfrench manicure essentials &amp; nail care\r\n\r\nmini deodorant\r\n\r\nlip balm\r\n\r\nhair pins\r\n\r\nsafety pins\r\n\r\nplasters\r\n\r\nlint remover\r\n\r\nmini hand lotion\r\n\r\npain killers\r\n\r\nearing backs\r\n\r\ndrinking straw\r\n\r\nenergy snack", "Wedding Day Survival Kit", "", "publish", "open", "closed", "", "wedding-day-survival-kit-2", "", "", "2015-03-27 13:37:40", "2015-03-27 13:37:40", "", "0", "http://chequerbox.co.za/?post_type=product&#038;p=880", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("881", "1", "2015-03-05 18:58:55", "2015-03-05 18:58:55", "", "Wedding-Survival-Kit_Top", "", "inherit", "open", "open", "", "wedding-survival-kit_top-2", "", "", "2015-03-05 18:58:55", "2015-03-05 18:58:55", "", "880", "http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding-Survival-Kit_Top.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("882", "1", "2015-03-05 18:59:08", "2015-03-05 18:59:08", "", "Wedding-Survival-Kit_Front-1024x933", "", "inherit", "open", "open", "", "wedding-survival-kit_front-1024x933", "", "", "2015-03-05 18:59:08", "2015-03-05 18:59:08", "", "880", "http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding-Survival-Kit_Front-1024x933.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("884", "1", "2015-03-05 19:12:46", "2015-03-05 19:12:46", "", "Products at a glance", "", "inherit", "open", "open", "", "765-revision-v1", "", "", "2015-03-05 19:12:46", "2015-03-05 19:12:46", "", "765", "http://chequerbox.co.za/765-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("887", "1", "2015-03-05 19:19:27", "2015-03-05 19:19:27", "<h2>Your comprehensive baby medical kit for babies</h2>\n<strong>Baby Medi Box</strong> is a comprehensive baby medical kit containing basic medical equipment as well as tried and tested over the counter medications and products.  <strong>Baby Medi Box</strong> is endorsed by Ann Richardson, qualified Nurse and Midwife, co-author of the international bestsellers, <em>Baby Sense</em>; <em>Sleep Sense</em> and author of the international bestseller <em>Toddler Sense</em>.  We have taken the time to ensure that all the essentials are included thereby making life easier for new moms as well as friends/family running out of original gift ideas.  The kit also includes a booklet that acts as a guideline for new parents on basic baby healthcare.\n\n<strong>Baby Medi Box</strong> includes:\n\n<b><span style=\"text-decoration: underline;\">Pain and Fever</span></b>\n\nDigital Thermometer\n\nParacetamol Syrup\n\nEmpaped Suppositories\n\n<b><span style=\"text-decoration: underline;\">Nasal Care</span></b>\n\nSaline Nose drops &amp; Nasal Aspirator\n\n<b><span style=\"text-decoration: underline;\">Teething</span></b>\n\nTeething Gel\n\nBaby Finger Toothbrush\n\n<b><span style=\"text-decoration: underline;\">Cord Care</span></b>\n\nSurgical Spirits\n\nCotton Wool\n\n<b><span style=\"text-decoration: underline;\">Colic Care</span></b>\n\nGripe Water\n\n<b><span style=\"text-decoration: underline;\">Vomiting and/or Diarrhoea</span></b>\n\nRehydration Mixture\n\n<b><span style=\"text-decoration: underline;\">Burn Wound Care</span></b>\n\nBurn dressings\n\n<b><span style=\"text-decoration: underline;\">First Aid</span></b>\n\nTweezers &amp; Scissors\n\nBandage\n\nWaterproof Plasters\n\nAntiseptic Ointment\n\n<span style=\"text-decoration: underline;\"><strong>Booklet</strong></span>", "Baby Medi Box", "<p>National Delivery (2-3 working days)</p>\n", "inherit", "open", "open", "", "810-autosave-v1", "", "", "2015-03-05 19:19:27", "2015-03-05 19:19:27", "", "810", "http://chequerbox.co.za/810-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("888", "1", "2015-03-05 19:21:15", "2015-03-05 19:21:15", "", "Home", "", "publish", "open", "open", "", "home", "", "", "2015-03-26 19:41:36", "2015-03-26 19:41:36", "", "0", "http://chequerbox.co.za/?p=888", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("889", "1", "2015-03-05 19:24:20", "2015-03-05 19:24:20", "", "", "", "publish", "closed", "closed", "", "889", "", "", "2015-03-05 19:24:51", "2015-03-05 19:24:51", "", "0", "http://chequerbox.co.za/?post_type=spa_products&#038;p=889", "0", "spa_products", "", "0");
INSERT INTO `wp_posts` VALUES("890", "1", "2015-03-05 19:24:16", "2015-03-05 19:24:16", "", "Web_3-1024x207_01", "", "inherit", "open", "open", "", "web_3-1024x207_01-2", "", "", "2015-03-05 19:24:16", "2015-03-05 19:24:16", "", "889", "http://chequerbox.co.za/wp-content/uploads/2015/03/Web_3-1024x207_01.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("891", "1", "2015-03-05 19:25:24", "2015-03-05 19:25:24", "", "", "", "publish", "closed", "closed", "", "891", "", "", "2015-03-05 19:31:21", "2015-03-05 19:31:21", "", "0", "http://chequerbox.co.za/?post_type=spa_products&#038;p=891", "0", "spa_products", "", "0");
INSERT INTO `wp_posts` VALUES("892", "1", "2015-03-05 19:25:13", "2015-03-05 19:25:13", "baby medical kit", "Web_3-1024x207_02", "", "inherit", "open", "open", "", "web_3-1024x207_02-3", "", "", "2015-07-06 14:45:04", "2015-07-06 14:45:04", "", "891", "http://chequerbox.co.za/wp-content/uploads/2015/03/Web_3-1024x207_02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("893", "1", "2015-03-05 19:26:19", "2015-03-05 19:26:19", "", "", "", "publish", "closed", "closed", "", "893", "", "", "2015-03-05 19:26:55", "2015-03-05 19:26:55", "", "0", "http://chequerbox.co.za/?post_type=spa_products&#038;p=893", "0", "spa_products", "", "0");
INSERT INTO `wp_posts` VALUES("894", "1", "2015-03-05 19:26:03", "2015-03-05 19:26:03", "", "Web_3-1024x207_03", "", "inherit", "open", "open", "", "web_3-1024x207_03-2", "", "", "2015-03-05 19:26:03", "2015-03-05 19:26:03", "", "893", "http://chequerbox.co.za/wp-content/uploads/2015/03/Web_3-1024x207_03.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("895", "1", "2015-03-05 19:27:22", "2015-03-05 19:27:22", "", "", "", "publish", "closed", "closed", "", "895", "", "", "2015-03-05 19:27:22", "2015-03-05 19:27:22", "", "0", "http://chequerbox.co.za/?post_type=spa_products&#038;p=895", "0", "spa_products", "", "0");
INSERT INTO `wp_posts` VALUES("896", "1", "2015-03-05 19:27:15", "2015-03-05 19:27:15", "", "Web_3-1024x207_04", "", "inherit", "open", "open", "", "web_3-1024x207_04-3", "", "", "2015-03-05 19:27:15", "2015-03-05 19:27:15", "", "895", "http://chequerbox.co.za/wp-content/uploads/2015/03/Web_3-1024x207_04.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("898", "1", "2015-03-05 19:30:38", "2015-03-05 19:30:38", "", "", "", "publish", "closed", "closed", "", "898", "", "", "2015-03-05 19:30:38", "2015-03-05 19:30:38", "", "0", "http://chequerbox.co.za/?post_type=spa_products&#038;p=898", "0", "spa_products", "", "0");
INSERT INTO `wp_posts` VALUES("899", "1", "2015-03-05 19:54:58", "2015-03-05 19:54:58", "", "Vending Machines", "", "publish", "closed", "closed", "", "vending-machines", "", "", "2015-03-05 19:54:58", "2015-03-05 19:54:58", "", "0", "http://chequerbox.co.za/?post_type=spa_services&#038;p=899", "0", "spa_services", "", "0");
INSERT INTO `wp_posts` VALUES("900", "1", "2015-03-05 20:00:32", "2015-03-05 20:00:32", "", "Wedding", "", "inherit", "open", "open", "", "wedding-3", "", "", "2015-03-05 20:00:32", "2015-03-05 20:00:32", "", "834", "http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("901", "1", "2015-03-05 20:00:58", "2015-03-05 20:00:58", "", "Vending2", "", "inherit", "open", "open", "", "vending2-2", "", "", "2015-03-05 20:00:58", "2015-03-05 20:00:58", "", "840", "http://chequerbox.co.za/wp-content/uploads/2015/03/Vending21.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("902", "1", "2015-03-05 20:01:32", "2015-03-05 20:01:32", "", "Photobooth", "", "inherit", "open", "open", "", "photobooth-3", "", "", "2015-03-05 20:01:32", "2015-03-05 20:01:32", "", "838", "http://chequerbox.co.za/wp-content/uploads/2015/03/Photobooth1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("903", "1", "2015-03-05 20:02:00", "2015-03-05 20:02:00", "", "Baby", "", "inherit", "open", "open", "", "baby-3", "", "", "2015-03-05 20:02:00", "2015-03-05 20:02:00", "", "836", "http://chequerbox.co.za/wp-content/uploads/2015/03/Baby1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("904", "1", "2015-03-06 11:51:05", "2015-03-06 11:51:05", "", "Photo Box", "", "publish", "open", "open", "", "photo-booths", "", "", "2015-03-26 19:41:36", "2015-03-26 19:41:36", "", "0", "http://chequerbox.co.za/?p=904", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("907", "1", "2015-03-06 11:51:05", "2015-03-06 11:51:05", "", "Sketch Booth", "", "publish", "open", "open", "", "sketch-booth", "", "", "2015-03-26 19:41:36", "2015-03-26 19:41:36", "", "0", "http://chequerbox.co.za/?p=907", "9", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("909", "2", "2013-11-05 17:41:35", "2013-11-05 15:41:35", "[gallery ids=\"765,766,767,768,769,770,771,772\"]\n\nTeenagers went crazy in our photo booth at Kiana\'s birthday party!", "Teenage Photo Booth Crazy!", "", "publish", "open", "open", "", "teenage-photo-booth-crazy", "", "", "2013-11-05 17:41:35", "2013-11-05 15:41:35", "", "0", "http://www.chequerbox.co.za/?p=764", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("910", "2", "2013-11-05 17:47:05", "2013-11-05 15:47:05", "[gallery ids=\"777,778,779,780,781,782,783,784,785\"]\n\nCelebrating 10 years post matric by creating more memories in our photo booths...", "Oosterland Reunie & ChequerBox Photo Booth Hire", "", "publish", "open", "open", "", "oosterland-reunie-chequerbox-photo-booth-hire", "", "", "2013-11-05 17:47:05", "2013-11-05 15:47:05", "", "0", "http://www.chequerbox.co.za/?p=776", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("911", "2", "2013-11-05 18:09:50", "2013-11-05 16:09:50", "[gallery columns=\"2\" ids=\"791,792,793,794,795,796\"]\n\nSpecial memories created in a photo booth with friends at an 8th birthday party", "Special Memories at an 8th Birthday Party with ChequerBox Photo Booths", "", "publish", "open", "open", "", "special-memories-at-an-8th-birthday-party-with-chequerbox-photo-booths", "", "", "2013-11-05 18:09:50", "2013-11-05 16:09:50", "", "0", "http://www.chequerbox.co.za/?p=790", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("912", "2", "2013-11-06 08:00:43", "2013-11-06 06:00:43", "<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/11/mm-sticker-04.jpg\"><img class=\"alignnone size-large wp-image-801\" alt=\"Baby Medi Aid at Mamma Magic\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/11/mm-sticker-04-1024x360.jpg\" width=\"1024\" height=\"360\" /></a>\n\nCome and visit Baby Medi Aid - your comprehensive baby medical kit for new-borns at Mamma Magic - The Baby Expo, 28 Nov - 1 Dec at the Coca-Cola Dome Johannesburg", "Baby Medi Aid - your baby medical kit - at Mamma Magic, The Baby Expo", "", "publish", "open", "open", "", "baby-medi-aid-your-baby-medical-kit-at-mamma-magic-the-baby-expo", "", "", "2013-11-06 08:00:43", "2013-11-06 06:00:43", "", "0", "http://www.chequerbox.co.za/?p=800", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("913", "2", "2014-02-27 15:39:19", "2014-02-27 13:39:19", "[gallery columns=\"2\" ids=\"845,846,847,848,849\"]", "Jayne\'s Mad Hatter Birthday Party", "", "publish", "open", "open", "", "jaynes-mad-hatter-birthday-party", "", "", "2014-02-27 15:39:19", "2014-02-27 13:39:19", "", "0", "http://www.chequerbox.co.za/?p=844", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("914", "2", "2014-02-27 16:33:20", "2014-02-27 14:33:20", "[gallery columns=\"2\" ids=\"856,857,858,859,860\"]", "AISJ Homecoming", "", "publish", "open", "open", "", "aisj-homecoming", "", "", "2014-02-27 16:33:20", "2014-02-27 14:33:20", "", "0", "http://www.chequerbox.co.za/?p=855", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("915", "2", "2014-02-27 16:37:45", "2014-02-27 14:37:45", "[gallery columns=\"2\" ids=\"864,865,866,867,868\"]", "Larochelle\'s 21st", "", "publish", "open", "open", "", "larochelles-21st", "", "", "2014-02-27 16:37:45", "2014-02-27 14:37:45", "", "0", "http://www.chequerbox.co.za/?p=863", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("919", "2", "2014-05-20 09:53:06", "2014-05-20 07:53:06", "[gallery columns=\"2\" ids=\"920,921,922,923\"]", "Chili\'s Great Gatsby with Blooming Good Events - what a fabulous event", "", "publish", "open", "open", "", "chilis-great-gatsby-blooming-good-events-fabulous-event", "", "", "2014-05-20 09:53:06", "2014-05-20 07:53:06", "", "0", "http://www.chequerbox.co.za/?p=919", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("925", "2", "2014-05-20 10:10:39", "2014-05-20 08:10:39", "[gallery columns=\"1\" ids=\"927,928,929\"]", "Our first Bar Mitzvah with Blooming Marvellous, what a party!", "", "publish", "open", "open", "", "first-bar-mitzvah-blooming-marvellous-party", "", "", "2014-05-20 10:10:39", "2014-05-20 08:10:39", "", "0", "http://www.chequerbox.co.za/?p=925", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("931", "2", "2014-05-20 10:12:22", "2014-05-20 08:12:22", "[gallery columns=\"1\" ids=\"932,933,934\"]", "Fabulous girls at Ammaarah\'s Chanel inspired birthday party. A very stylish affair:)", "", "publish", "open", "open", "", "fabulous-girls-ammaarahs-chanel-inspired-birthday-party-stylish-affair", "", "", "2014-05-20 10:12:22", "2014-05-20 08:12:22", "", "0", "http://www.chequerbox.co.za/?p=931", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("936", "2", "2014-05-20 10:14:49", "2014-05-20 08:14:49", "[gallery columns=\"1\" ids=\"937,938,939\"]", "ICAS Super You Wellness Day, 11 Aprill 2014", "", "publish", "open", "open", "", "icas-super-wellness-day-11-aprill-2014", "", "", "2014-05-20 10:14:49", "2014-05-20 08:14:49", "", "0", "http://www.chequerbox.co.za/?p=936", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("941", "2", "2014-05-20 10:18:33", "2014-05-20 08:18:33", "Magumbi Marketing / Durban Tourism - \"Spot me at a popular Durban attraction\" Loads of green screen fun furn with this crowd at Imbizo Shisanyama\n\n[gallery columns=\"2\" ids=\"942,943,944,945\"]", "Magumbi Marketing / Durban Tourism - \"Spot me at a popular Durban attraction\"", "", "publish", "open", "open", "", "magumbi-marketing-durban-tourism-spot-popular-durban-attraction", "", "", "2014-05-20 10:18:33", "2014-05-20 08:18:33", "", "0", "http://www.chequerbox.co.za/?p=941", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("947", "2", "2014-05-20 10:19:59", "2014-05-20 08:19:59", "[gallery columns=\"1\" ids=\"948,949,950\"]", "Kaila\'s 13th Birthday - such friendly people:)", "", "publish", "open", "open", "", "kailas-13th-birthday-friendly-people", "", "", "2014-05-20 10:19:59", "2014-05-20 08:19:59", "", "0", "http://www.chequerbox.co.za/?p=947", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("953", "2", "2014-05-21 10:47:45", "2014-05-21 08:47:45", "Baby Medi Aid, our comprehensive baby medical kit has undergone some name, logo and packaging changes.  Our new name is Baby Medi Box!  We still contain all the essential items a new mom would need as well as our new baby medical booklet.  Hope you like the new look :)\n\n<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2014/05/BabyMediBoxAd.jpg\"><img class=\"size-medium wp-image-955\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2014/05/BabyMediBoxAd-300x217.jpg\" alt=\"Baby Medi Box\" width=\"300\" height=\"217\" /></a>\n\n<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2014/05/TheBabyMediBox.png\"><img class=\"alignnone size-medium wp-image-956\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2014/05/TheBabyMediBox-300x131.png\" alt=\"Baby Medi Box\" width=\"300\" height=\"131\" /></a>", "We\'ve changed the name of our baby medical kit - Baby Medi Box!", "", "publish", "open", "open", "", "weve-changed-name-baby-medical-kit-baby-medi-box", "", "", "2014-05-21 10:47:45", "2014-05-21 08:47:45", "", "0", "http://www.chequerbox.co.za/?p=953", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("958", "2", "2014-05-21 17:13:31", "2014-05-21 15:13:31", "&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nBaby Medi Box now includes a baby medical booklet containing basic baby healthcare guidelines as well as some important medical emergency numbers.\n\n<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2014/05/Image-of-Booklet.jpg\"><img class=\"alignnone size-medium wp-image-959\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2014/05/Image-of-Booklet-300x225.jpg\" alt=\"Image of Booklet\" width=\"300\" height=\"225\" /></a>\n\n&nbsp;\n\n&nbsp;", "Baby Medi Box now includes a medical booklet", "", "publish", "open", "open", "", "baby-medi-box-now-includes-medical-booklet", "", "", "2014-05-21 17:13:31", "2014-05-21 15:13:31", "", "0", "http://www.chequerbox.co.za/?p=958", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("961", "2", "2014-05-21 17:24:49", "2014-05-21 15:24:49", "&nbsp;\n\n<em>Baby Medi Box</em> is now endorsed by Ann Richardson, qualified Nurse and Midwife, co-author of the international bestsellers, <em>Baby Sense</em>; <em>Sleep Sense</em> and author of the international bestseller <em>Toddler Sense</em>.\n\n<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2014/05/Toddler-sense-new-ed-jpeg_web.jpg\"><img class=\"alignnone size-medium wp-image-963\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2014/05/Toddler-sense-new-ed-jpeg_web-210x300.jpg\" alt=\"Toddler Sense\" width=\"210\" height=\"300\" /></a> <a href=\"http://www.chequerbox.co.za/wp-content/uploads/2014/05/Baby-Sense.jpg\"><img class=\"alignnone size-medium wp-image-962\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2014/05/Baby-Sense-207x300.jpg\" alt=\"Baby Sense\" width=\"207\" height=\"300\" /></a>\n\n&nbsp;", "Baby Medi Box is endorsed by Ann Richardson", "", "publish", "open", "open", "", "baby-medi-box-endorsed-ann-richardson", "", "", "2014-05-21 17:24:49", "2014-05-21 15:24:49", "", "0", "http://www.chequerbox.co.za/?p=961", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("977", "2", "2014-05-26 10:34:39", "0000-00-00 00:00:00", "<strong>What makes Snappi different from all other chairs?</strong>\n<ul>\n	<li>It has a flexible inner which moulds to a baby’s shape</li>\n	<li>The inner mould offers Pelvic support</li>\n	<li>The Strong outer shell limits the ability to tip over</li>\n	<li>Non slip rubber base</li>\n	<li>It’s Easy to clean</li>\n	<li>SnappiÒ is lightweight and portable</li>\n	<li>Best of all it has wide leg room allowing for extended use</li>\n	<li>Available in pink, turquoise and blue.</li>\n</ul>\nR299\n\n&nbsp;", "Get your Snappi® Baby Chair from ChequerBox", "", "draft", "open", "open", "", "", "", "", "2014-05-26 10:34:39", "0000-00-00 00:00:00", "", "0", "http://www.chequerbox.co.za/?p=977", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("978", "2", "2014-03-03 12:56:02", "2014-03-03 10:56:02", "[gallery columns=\"2\" ids=\"873,874,875,876,877\"]", "Nic\'s 18th Beach Party", "", "publish", "open", "open", "", "nics-18th-beach-party", "", "", "2014-03-03 12:56:02", "2014-03-03 10:56:02", "", "0", "http://www.chequerbox.co.za/?p=872", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("979", "2", "2014-03-03 14:45:07", "2014-03-03 12:45:07", "[gallery ids=\"882,883,884,885,886,887\"]", "Megg\'s 18th Birthday Party", "", "publish", "open", "open", "", "meggs-18th-birthday-party", "", "", "2014-03-03 14:45:07", "2014-03-03 12:45:07", "", "0", "http://www.chequerbox.co.za/?p=881", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("980", "2", "2014-03-03 15:16:56", "2014-03-03 13:16:56", "[gallery columns=\"2\" ids=\"892,893,894,895,896\"]", "Wedding Fun with ChequerBox Photo Booths", "", "publish", "open", "open", "", "wedding-fun-with-chequerbox-photo-booths", "", "", "2014-03-03 15:16:56", "2014-03-03 13:16:56", "", "0", "http://www.chequerbox.co.za/?p=891", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("981", "2", "2014-03-03 15:22:25", "2014-03-03 13:22:25", "[gallery columns=\"2\" ids=\"901,902,903,904,905\"]", "Quality Sugars Year-End Party", "", "publish", "open", "open", "", "quality-sugars-year-end-party", "", "", "2014-03-03 15:22:25", "2014-03-03 13:22:25", "", "0", "http://www.chequerbox.co.za/?p=900", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("982", "2", "2014-05-26 10:37:13", "2014-05-26 08:37:13", "[gallery columns=\"1\" ids=\"649,635,740\"]\n\n<strong>What makes Snappi different from all other chairs?</strong>\n<ul>\n	<li>It has a flexible inner which moulds to a baby’s shape</li>\n	<li>The inner mould offers Pelvic support</li>\n	<li>The Strong outer shell limits the ability to tip over</li>\n	<li>Non slip rubber base</li>\n	<li>It’s Easy to clean</li>\n	<li>SnappiÒ is lightweight and portable</li>\n	<li>Best of all it has wide leg room allowing for extended use</li>\n	<li>Available in pink, turquoise and blue</li>\n</ul>\nR299", "Get your Snappi® Baby Chair from ChequerBox", "", "publish", "open", "open", "", "get-snappi-baby-chair-chequerbox", "", "", "2014-05-26 10:37:13", "2014-05-26 08:37:13", "", "0", "http://www.chequerbox.co.za/?p=978", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("983", "2", "2014-05-27 12:01:03", "2014-05-27 10:01:03", "", "Let\'s get photo booth creative!", "", "publish", "open", "open", "", "lets-get-photo-booth-creative", "", "", "2015-03-06 12:24:47", "2015-03-06 12:24:47", "", "0", "http://www.chequerbox.co.za/?p=980", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("991", "2", "2014-05-27 12:03:50", "2014-05-27 10:03:50", "", "Let me take a selfie!", "", "publish", "open", "open", "", "let-take-selfie", "", "", "2015-03-06 12:24:28", "2015-03-06 12:24:28", "", "0", "http://www.chequerbox.co.za/?p=991", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("998", "2", "2014-05-27 12:06:17", "2014-05-27 10:06:17", "", "Stop photobombing me!", "", "publish", "open", "open", "", "stop-photobombing", "", "", "2015-03-06 12:24:50", "2015-03-06 12:24:50", "", "0", "http://www.chequerbox.co.za/?p=998", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1006", "2", "2014-05-27 12:11:12", "2014-05-27 10:11:12", "<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2014/05/140426_193543.jpg\"><img class=\"alignnone size-medium wp-image-1007\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2014/05/140426_193543-100x300.jpg\" alt=\"140426_193543\" width=\"100\" height=\"300\" /></a> <a href=\"http://www.chequerbox.co.za/wp-content/uploads/2014/05/140430_213430.jpg\"><img class=\"alignnone size-medium wp-image-1008\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2014/05/140430_213430-101x300.jpg\" alt=\"140430_213430\" width=\"101\" height=\"300\" /></a>", "Guess how many people fit in our photo booths?", "", "publish", "open", "open", "", "guess-many-people-fit-photo-booths", "", "", "2014-05-27 12:11:12", "2014-05-27 10:11:12", "", "0", "http://www.chequerbox.co.za/?p=1006", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1017", "2", "2014-06-09 10:38:04", "2014-06-09 08:38:04", "We had great photo booth fun on Friday with ApplePi.  What an awesome team!\r\n\r\n<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2014/06/IMG_0194.jpg\"><img class=\"alignnone size-large wp-image-1018\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2014/06/IMG_0194-1024x682.jpg\" alt=\"IMG_0194\" width=\"1024\" height=\"682\" /></a>", "Photo Booth fun at ApplePi", "", "publish", "open", "open", "", "photo-booth-fun-applepi", "", "", "2015-03-06 12:26:23", "2015-03-06 12:26:23", "", "0", "http://www.chequerbox.co.za/?p=1017", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1019", "1", "2015-03-06 12:16:32", "2015-03-06 12:16:32", "", "Our Blog", "", "inherit", "open", "open", "", "787-revision-v1", "", "", "2015-03-06 12:16:32", "2015-03-06 12:16:32", "", "787", "http://chequerbox.co.za/787-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1020", "1", "2015-03-06 12:19:22", "2015-03-06 12:19:22", "", "IMG_0266-300x200", "Caption Goes Here", "inherit", "open", "open", "", "img_0266-300x200", "", "", "2015-03-14 20:08:43", "2015-03-14 20:08:43", "", "1006", "http://chequerbox.co.za/wp-content/uploads/2014/05/IMG_0266-300x200.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1021", "1", "2015-03-06 12:23:49", "2015-03-06 12:23:49", "", "Let me take a selfie!", "", "inherit", "open", "open", "", "991-autosave-v1", "", "", "2015-03-06 12:23:49", "2015-03-06 12:23:49", "", "991", "http://chequerbox.co.za/991-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1022", "1", "2015-03-06 12:23:52", "2015-03-06 12:23:52", "", "IMG_0194-300x200", "Caption Goes Here", "inherit", "open", "open", "", "img_0194-300x200", "", "", "2015-03-14 20:08:42", "2015-03-14 20:08:42", "", "998", "http://chequerbox.co.za/wp-content/uploads/2014/05/IMG_0194-300x200.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1023", "1", "2015-03-06 12:23:53", "2015-03-06 12:23:53", "", "Stop photobombing me!", "", "inherit", "open", "open", "", "998-autosave-v1", "", "", "2015-03-06 12:23:53", "2015-03-06 12:23:53", "", "998", "http://chequerbox.co.za/998-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1024", "1", "2015-03-06 12:24:00", "2015-03-06 12:24:00", "", "Stop photobombing me!", "", "inherit", "open", "open", "", "998-revision-v1", "", "", "2015-03-06 12:24:00", "2015-03-06 12:24:00", "", "998", "http://chequerbox.co.za/998-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1025", "1", "2015-03-06 12:24:23", "2015-03-06 12:24:23", "", "IMG_0283-300x200", "Caption Goes Here", "inherit", "open", "open", "", "img_0283-300x200", "", "", "2015-03-14 20:08:42", "2015-03-14 20:08:42", "", "991", "http://chequerbox.co.za/wp-content/uploads/2014/05/IMG_0283-300x200.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1026", "1", "2015-03-06 12:24:28", "2015-03-06 12:24:28", "", "Let me take a selfie!", "", "inherit", "open", "open", "", "991-revision-v1", "", "", "2015-03-06 12:24:28", "2015-03-06 12:24:28", "", "991", "http://chequerbox.co.za/991-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1027", "1", "2015-03-06 12:24:30", "2015-03-06 12:24:30", "", "Let\'s get photo booth creative!", "", "inherit", "open", "open", "", "983-autosave-v1", "", "", "2015-03-06 12:24:30", "2015-03-06 12:24:30", "", "983", "http://chequerbox.co.za/983-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1028", "1", "2015-03-06 12:24:37", "2015-03-06 12:24:37", "", "IMG_0300-300x199", "Caption Goes Here", "inherit", "open", "open", "", "img_0300-300x199", "", "", "2015-03-14 20:08:41", "2015-03-14 20:08:41", "", "983", "http://chequerbox.co.za/wp-content/uploads/2014/05/IMG_0300-300x199.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1029", "1", "2015-03-06 12:24:47", "2015-03-06 12:24:47", "", "Let\'s get photo booth creative!", "", "inherit", "open", "open", "", "983-revision-v1", "", "", "2015-03-06 12:24:47", "2015-03-06 12:24:47", "", "983", "http://chequerbox.co.za/983-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1030", "1", "2015-03-06 12:26:16", "2015-03-06 12:26:16", "", "IMG_0194-1024x682", "Caption Goes Here", "inherit", "open", "open", "", "img_0194-1024x682", "", "", "2015-03-14 20:08:41", "2015-03-14 20:08:41", "", "1017", "http://chequerbox.co.za/wp-content/uploads/2014/06/IMG_0194-1024x682.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1031", "1", "2015-03-06 12:26:23", "2015-03-06 12:26:23", "We had great photo booth fun on Friday with ApplePi.  What an awesome team!\r\n\r\n<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2014/06/IMG_0194.jpg\"><img class=\"alignnone size-large wp-image-1018\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2014/06/IMG_0194-1024x682.jpg\" alt=\"IMG_0194\" width=\"1024\" height=\"682\" /></a>", "Photo Booth fun at ApplePi", "", "inherit", "open", "open", "", "1017-revision-v1", "", "", "2015-03-06 12:26:23", "2015-03-06 12:26:23", "", "1017", "http://chequerbox.co.za/1017-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1034", "1", "2015-03-09 07:46:43", "2015-03-09 07:46:43", "", "Cart", "", "publish", "closed", "closed", "", "usces-cart", "", "", "2015-03-28 17:37:30", "2015-03-28 17:37:30", "", "0", "", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1035", "1", "2015-03-09 07:46:43", "2015-03-09 07:46:43", "", "Membership", "", "publish", "closed", "closed", "", "usces-member", "", "", "2015-03-09 07:46:43", "2015-03-09 07:46:43", "", "0", "", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1036", "1", "2015-03-09 13:31:52", "2015-03-09 13:31:52", "http://chequerbox.co.za/wp-content/uploads/2015/03/cropped-Wedding1.jpg", "cropped-Wedding1.jpg", "", "inherit", "open", "open", "", "cropped-wedding1-jpg", "", "", "2015-03-09 13:31:52", "2015-03-09 13:31:52", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/03/cropped-Wedding1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1037", "1", "2015-03-09 13:58:23", "2015-03-09 13:58:23", "", "WebLogo", "", "inherit", "open", "open", "", "weblogo-3", "", "", "2015-03-09 13:58:23", "2015-03-09 13:58:23", "", "0", "http://chequerbox.co.za/wp-content/uploads/2015/03/WebLogo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1038", "1", "2015-03-09 17:08:55", "2015-03-09 17:08:55", "<p>Your Name (required)<br />\r\n    [text* your-name] </p>\r\n\r\n<p>Your Email (required)<br />\r\n    [email* your-email] </p>\r\n\r\n<p>Subject<br />\r\n    [text your-subject] </p>\r\n\r\n<p>Your Message<br />\r\n    [textarea your-message] </p>\r\n\r\n<p>[submit \"Send\"]</p>\n[your-subject]\n[your-name] <info@chequerbox.co.za>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chequerbox (http://chequerbox.co.za/wp2015)\ninfo@chequerbox.co.za\nReply-To: [your-email]\n\n1\n\n1\n[your-subject]\nChequerbox <joleen@chequerbox.co.za>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Chequerbox (http://chequerbox.co.za/wp2015)\n[your-email]\nReply-To: joleen@chequerbox.co.za\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.", "Contact form 1", "", "publish", "open", "open", "", "contact-form-1", "", "", "2015-06-23 18:14:38", "2015-06-23 18:14:38", "", "0", "http://chequerbox.co.za/?post_type=wpcf7_contact_form&#038;p=1038", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("1042", "1", "2015-03-09 18:30:12", "2015-03-09 18:30:12", "", "Vending Box", "", "publish", "open", "open", "", "vending-box-2", "", "", "2015-03-26 19:41:36", "2015-03-26 19:41:36", "", "850", "http://chequerbox.co.za/?p=1042", "12", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1043", "1", "2015-03-09 18:41:19", "2015-03-09 18:41:19", "<h2><a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/\">Your comprehensive baby medical kit for babies</a></h2>\r\n<a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/baby-chair/\"><strong>Baby Medi Box</strong></a> is a comprehensive baby medical kit containing basic medical equipment as well as tried and tested over the counter medications and products.  <a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/baby-chair/\"><strong>Baby Medi Box</strong></a> is endorsed by Ann Richardson, qualified Nurse and Midwife, co-author of the international bestsellers, <em>Baby Sense</em>; <em>Sleep Sense</em> and author of the international bestseller <em>Toddler Sense</em>.  We have taken the time to ensure that all the essentials are included thereby making life easier for new moms as well as friends/family running out of original gift ideas.  The kit also includes a booklet that acts as a guideline for new parents on basic baby healthcare.\r\n<h3><strong><a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/\">Buy one today!</a></strong></h3>\r\n<a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/baby-chair/\"><strong>Baby Medi Box</strong></a> includes:\r\n\r\n<span style=\"text-decoration: underline;\"><b>Pain and Fever</b></span>\r\n<ul>\r\n	<li>Digital Thermometer</li>\r\n	<li>Paracetamol Syrup</li>\r\n	<li>Empaped Suppositories</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Nasal Care</b></span>\r\n<ul>\r\n	<li>Saline Nose drops &amp; Nasal Aspirator</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Teething</b></span>\r\n<ul>\r\n	<li>Teething Gel</li>\r\n	<li>Baby Finger Toothbrush</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Cord Care</b></span>\r\n<ul>\r\n	<li>Surgical Spirits</li>\r\n	<li>Cotton Wool</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Colic Care</b></span>\r\n<ul>\r\n	<li>Gripe Water</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Vomiting and/or Diarrhoea</b></span>\r\n<ul>\r\n	<li>Rehydration Mixture</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Burn Wound Care</b></span>\r\n<ul>\r\n	<li>Burn dressings</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>First Aid</b></span>\r\n<ul>\r\n	<li>Tweezers &amp; Scissors</li>\r\n	<li>Bandage</li>\r\n	<li>Waterproof Plasters</li>\r\n	<li>Antiseptic Ointment</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><strong>Booklet</strong></span>", "Baby Medi Box", "", "publish", "closed", "closed", "", "baby-chair", "", "", "2015-03-26 18:58:30", "2015-03-26 18:58:30", "", "0", "http://chequerbox.co.za/?p=1043", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1044", "1", "2015-03-09 18:41:19", "2015-03-09 18:41:19", "The Bobbiyo™ Baby Chair has a flexible inner lining, which moulds to baby’s shape, offering the correct support for developing their pelvic muscles and little backs.\r\n<h3>Snappi® Baby Chair</h3>\r\n<a href=\"http://chequerbox.co.za/shop/baby-chair/snappi-baby-chair/\"><span class=\"price\"><span class=\"amount\">R299.00</span></span></a>\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"778,777,776,775,774\"]", "Baby Chair", "", "inherit", "open", "open", "", "1043-revision-v1", "", "", "2015-03-09 18:41:19", "2015-03-09 18:41:19", "", "1043", "http://chequerbox.co.za/1043-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1049", "1", "2012-03-11 11:53:28", "2012-03-11 11:53:28", "", "Weddings", "", "publish", "closed", "closed", "", "weddings", "", "", "2015-03-11 12:07:51", "2015-03-11 12:07:51", "", "0", "http://chequerbox.co.za/?p=1049", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1050", "1", "2015-03-11 11:53:28", "2015-03-11 11:53:28", "", "Weddings", "", "inherit", "open", "open", "", "1049-revision-v1", "", "", "2015-03-11 11:53:28", "2015-03-11 11:53:28", "", "1049", "http://chequerbox.co.za/1049-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1051", "1", "2012-03-11 12:03:56", "2012-03-11 12:03:56", "", "Photobooth", "", "publish", "closed", "closed", "", "photobooth", "", "", "2015-03-11 12:07:42", "2015-03-11 12:07:42", "", "0", "http://chequerbox.co.za/?p=1051", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1052", "1", "2015-03-11 12:03:56", "2015-03-11 12:03:56", "", "Photobooth", "", "inherit", "open", "open", "", "1051-revision-v1", "", "", "2015-03-11 12:03:56", "2015-03-11 12:03:56", "", "1051", "http://chequerbox.co.za/1051-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1053", "1", "2012-03-11 12:04:28", "2012-03-11 12:04:28", "", "Vending Machines", "", "publish", "closed", "closed", "", "vending-machines", "", "", "2015-03-11 12:07:23", "2015-03-11 12:07:23", "", "0", "http://chequerbox.co.za/?p=1053", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1054", "1", "2015-03-11 12:04:28", "2015-03-11 12:04:28", "", "Vending Machines", "", "inherit", "open", "open", "", "1053-revision-v1", "", "", "2015-03-11 12:04:28", "2015-03-11 12:04:28", "", "1053", "http://chequerbox.co.za/1053-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1055", "1", "2012-03-11 12:04:58", "2012-03-11 12:04:58", "", "Baby", "", "publish", "closed", "closed", "", "baby", "", "", "2015-03-11 12:07:15", "2015-03-11 12:07:15", "", "0", "http://chequerbox.co.za/?p=1055", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1056", "1", "2015-03-11 12:04:58", "2015-03-11 12:04:58", "", "Baby", "", "inherit", "open", "open", "", "1055-revision-v1", "", "", "2015-03-11 12:04:58", "2015-03-11 12:04:58", "", "1055", "http://chequerbox.co.za/1055-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1057", "1", "2015-03-14 20:02:32", "2015-03-14 20:02:32", "[posts-for-page cat_slug=\'baby-chair\' hide_images=\'false\' num=\'5\' read_more=\'Read More »\' show_full_posts=\'false\' use_wp_excerpt=\'true\' strip_html=\'true\' hide_post_content=\'false\' show_meta=\'true\']", "Our Blog", "", "inherit", "open", "open", "", "787-autosave-v1", "", "", "2015-03-14 20:02:32", "2015-03-14 20:02:32", "", "787", "http://chequerbox.co.za/787-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1060", "1", "2015-03-14 20:09:02", "2015-03-14 20:09:02", "<h2>ChequerBox introduces SocialBox – our new hashtag printer</h2>\r\nWith the phenomenon of selfies, a lot of photos are taken and shared on social media sites using mobile devices.  Why not utilise these uniquely captured moments for your brand and create another engaging experience for your customer via our new hashtag printer\r\n<h3>How it works:</h3>\r\nChequerBox SocialBox is a hashtag printer that allows you to crowdsource your event photos.  Pick a hashtag for your event and tell your guests to tag their photos when they upload them to Instagram and Twitter.  ChequerBox SocialBox will monitor these platforms for photos matching the hashtag and will automatically download them.  Your guests can then visit the hashtag printer station, find the photos that they have uploaded a then choose to print a branded copy.\r\n<h3><a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/SocialBooth.jpg\"><img class=\"aligncenter  wp-image-1239\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/SocialBooth.jpg\" alt=\"SocialBooth / HashtagPrinter\" width=\"2241\" height=\"1022\" /></a></h3>\r\n<h3>Three easy steps:</h3>\r\n<ol>\r\n	<li>Take a photo</li>\r\n</ol>\r\nTake a photo using your mobile phone\r\n<ol start=\"2\">\r\n	<li>Hashtag</li>\r\n</ol>\r\nUpload the image to Instagram or Twitter using the unique hashtag\r\n<ol start=\"3\">\r\n	<li>Print</li>\r\n</ol>\r\nVisit the hashtag printer station, select your image on the screen and print", "SocialBox Hashtag Printer", "", "publish", "closed", "closed", "", "social-booths", "", "", "2015-07-06 14:33:45", "2015-07-06 14:33:45", "", "850", "http://chequerbox.co.za/?page_id=1060", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1061", "1", "2015-03-14 20:09:02", "2015-03-14 20:09:02", "Gallery:\r\n\r\n&nbsp;\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"1030,1028,1025,1022,1020,735,538,497\"]", "Social Booths", "", "inherit", "open", "open", "", "1060-revision-v1", "", "", "2015-03-14 20:09:02", "2015-03-14 20:09:02", "", "1060", "http://chequerbox.co.za/1060-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1062", "1", "2015-03-14 20:09:45", "2015-03-14 20:09:45", "Gallery:\r\n\r\n&nbsp;\r\n\r\n[gallery columns=\"4\" link=\"none\" ids=\"1030,1028,1025,1022,1020,735,538,497\"]", "Social Booths", "", "inherit", "open", "open", "", "1060-revision-v1", "", "", "2015-03-14 20:09:45", "2015-03-14 20:09:45", "", "1060", "http://chequerbox.co.za/1060-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1063", "1", "2015-03-14 20:10:18", "2015-03-14 20:10:18", "Gallery:\r\n\r\n&nbsp;\r\n\r\n[gallery columns=\"4\" link=\"file\" type=\"slideshow\" ids=\"1030,1028,1025,1022,1020,735,538,497\"]", "Social Booths", "", "inherit", "open", "open", "", "1060-revision-v1", "", "", "2015-03-14 20:10:18", "2015-03-14 20:10:18", "", "1060", "http://chequerbox.co.za/1060-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1064", "1", "2015-03-14 20:10:59", "2015-03-14 20:10:59", "Gallery:\r\n\r\n&nbsp;\r\n\r\n[gallery columns=\"4\" link=\"file\" type=\"slideshow\" ids=\"1030,1028,1025,1022,1020,735,538,497\"]\r\n\r\n&nbsp;\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"1030,1028,1025,1022,1020,735,538,497\"]", "Social Booths", "", "inherit", "open", "open", "", "1060-revision-v1", "", "", "2015-03-14 20:10:59", "2015-03-14 20:10:59", "", "1060", "http://chequerbox.co.za/1060-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1065", "1", "2015-03-14 20:16:06", "2015-03-14 20:16:06", " ", "", "", "publish", "open", "open", "", "1065", "", "", "2015-03-26 19:41:36", "2015-03-26 19:41:36", "", "850", "http://chequerbox.co.za/?p=1065", "8", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1066", "1", "2015-03-14 20:25:27", "2015-03-14 20:25:27", "&nbsp;\r\n\r\n<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/VendingBox.png\"><img class=\"aligncenter size-medium wp-image-1173\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/VendingBox-300x128.png\" alt=\"VendingBox\" width=\"300\" height=\"128\" /></a>\r\n\r\n<strong>ChequerBox Vending Machines</strong> were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.\r\n\r\n<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.\r\n\r\nOur contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\">\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"152,151,150,73\"]\r\n\r\n[vfb id=2]\r\n\r\n</div>", "Vending Machines", "", "publish", "closed", "closed", "", "vending-machines-2", "", "", "2015-03-26 18:58:01", "2015-03-26 18:58:01", "", "0", "http://chequerbox.co.za/?p=1066", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1067", "1", "2015-03-14 20:25:15", "2015-03-14 20:25:15", "", "VendingBox_436px-x-273px", "", "inherit", "open", "open", "", "vendingbox_436px-x-273px", "", "", "2015-03-14 20:25:15", "2015-03-14 20:25:15", "", "1066", "http://chequerbox.co.za/wp-content/uploads/2015/03/VendingBox_436px-x-273px.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1068", "1", "2015-03-14 20:25:27", "2015-03-14 20:25:27", "<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\"></div>", "Vending Machines", "", "inherit", "open", "open", "", "1066-revision-v1", "", "", "2015-03-14 20:25:27", "2015-03-14 20:25:27", "", "1066", "http://chequerbox.co.za/1066-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1069", "1", "2015-03-14 20:26:47", "2015-03-14 20:26:47", "<h2>Novel wedding day survival kits and bags for brides and bridesmaids.</h2>\r\n<a title=\"Wedding Day Kits\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit/\"><strong>The Wedding Day Kit Bag</strong></a> makes a great gift for a bride to be on her wedding day or can be used as bridesmaid gifts.  The bag contains some essentials and is big enough to add a few more items if you would like to.  The Wedding Day Bag is available in a navy red polka dot colour or a jade polka dot colour. Included are: Hold All Bag (navy / jade polka dots) white dressing gown (3/4 sleeve &amp; knee length) comfy white slippers shower cap white scrunchie (45 x 30 x 16cm)\r\n<h3><strong><a title=\"Wedding Day Kits\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit/\">Buy online</a></strong></h3>\r\n&nbsp;\r\n\r\n<a title=\"Wedding Day Survival Kit\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit-2/\"><strong>The Wedding Day Survival Kit</strong></a> is the perfect emergency kit for a bride on her wedding day – a kit containing those just-in-case items that you won’t think of packing for the big day to ensure the perfect wedding day.  The Wedding Day Survival Kit is also great for bridesmaids so that they too can be prepared!\r\n<h3><strong><a title=\"Wedding Day Survival Kit\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit-2/\">Buy online</a></strong></h3>\r\n<h3> The Wedding Day Survival Kit includes:</h3>\r\n<ul>\r\n	<li>mending kit</li>\r\n	<li>french manicure essentials &amp; nail care</li>\r\n	<li>mini deodorant</li>\r\n	<li>lip balm</li>\r\n	<li>hair pins</li>\r\n	<li>safety pins</li>\r\n	<li>plasters</li>\r\n	<li>lint remover</li>\r\n	<li>mini hand lotion</li>\r\n	<li>pain killers</li>\r\n	<li>earing backs</li>\r\n	<li>drinking straw</li>\r\n	<li>energy snack</li>\r\n</ul>", "Wedding Box", "", "publish", "closed", "closed", "", "wedding-box", "", "", "2015-03-26 18:57:11", "2015-03-26 18:57:11", "", "0", "http://chequerbox.co.za/?p=1069", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1070", "1", "2015-03-14 20:26:36", "2015-03-14 20:26:36", "", "weddingkits_436px-x-273px", "", "inherit", "open", "open", "", "weddingkits_436px-x-273px", "", "", "2015-03-14 20:26:36", "2015-03-14 20:26:36", "", "1069", "http://chequerbox.co.za/wp-content/uploads/2015/03/weddingkits_436px-x-273px.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1071", "1", "2015-03-14 20:26:47", "2015-03-14 20:26:47", "Novel wedding day survival kits and bags for brides and bridesmaids", "Wedding Box", "", "inherit", "open", "open", "", "1069-revision-v1", "", "", "2015-03-14 20:26:47", "2015-03-14 20:26:47", "", "1069", "http://chequerbox.co.za/1069-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1072", "1", "2015-03-14 20:27:13", "2015-03-14 20:27:13", "Novel wedding day survival kits and bags for brides and bridesmaids.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing 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.", "Wedding Box", "", "inherit", "open", "open", "", "1069-revision-v1", "", "", "2015-03-14 20:27:13", "2015-03-14 20:27:13", "", "1069", "http://chequerbox.co.za/1069-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1073", "1", "2015-03-14 20:27:30", "2015-03-14 20:27:30", "ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\"></div>", "Vending Machines", "", "inherit", "open", "open", "", "1066-revision-v1", "", "", "2015-03-14 20:27:30", "2015-03-14 20:27:30", "", "1066", "http://chequerbox.co.za/1066-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1074", "1", "2015-03-14 20:28:13", "2015-03-14 20:28:13", "<a title=\"Traditional Photo Booths\" href=\"http://chequerbox.co.za/photo-booth-green-screen-photo-booth-rentals/\"><b>ChequerBox Photo Booth</b></a> and <a title=\"Green Screen Open Photo Booth\" href=\"http://chequerbox.co.za/photo-booth-green-screen-photo-booth-rentals/green-screen-open-photo-booth/\"><strong>Green Screen Photo Booth</strong></a> rentals<strong> </strong>are great fun and will create the ultimate memories at your event and give your guests something tangible to remember.\r\n\r\n<em><strong><a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\"><img class=\"alignleft wp-image-1175 size-medium\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen-300x195.jpg\" alt=\"GreenScreen\" width=\"300\" height=\"195\" /></a> <a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\"><img class=\"alignleft wp-image-1176 size-medium\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth-300x195.jpg\" alt=\"traditional photo booth\" width=\"300\" height=\"195\" /></a> </strong></em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>How it works:</b>\r\n\r\nWe will deliver, set up and stay by the booth during the booked time for the event making sure everyone understands how it works and receives their photo strips printed after each photo session.", "Photo Booths", "", "publish", "closed", "closed", "", "photo-booths", "", "", "2015-03-26 18:56:42", "2015-03-26 18:56:42", "", "0", "http://chequerbox.co.za/?p=1074", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1075", "1", "2015-03-14 20:28:13", "2015-03-14 20:28:13", "<b>ChequerBox Photo Booth</b> and <strong>Green Screen Photo Booth</strong> rentals<strong> </strong>are great fun and will create the ultimate memories at your event and give your guests something tangible to remember.\r\n\r\n<b>How it works:</b>\r\n\r\nWe will deliver, set up and stay by the booth during the booked time for the event making sure everyone understands how it works and receives their photo strips printed after each photo session.", "Photo Booths", "", "inherit", "open", "open", "", "1074-revision-v1", "", "", "2015-03-14 20:28:13", "2015-03-14 20:28:13", "", "1074", "http://chequerbox.co.za/1074-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1076", "1", "2015-03-14 20:29:58", "2015-03-14 20:29:58", "Comprehensive medical kits for new-born babies.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing 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.", "Baby Medi Box", "", "inherit", "open", "open", "", "1043-revision-v1", "", "", "2015-03-14 20:29:58", "2015-03-14 20:29:58", "", "1043", "http://chequerbox.co.za/1043-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1077", "1", "2015-03-14 20:32:27", "2015-03-14 20:32:27", "", "Web_3-1024x207_01", "", "inherit", "open", "open", "", "web_3-1024x207_01-3", "", "", "2015-03-14 20:32:27", "2015-03-14 20:32:27", "", "1043", "http://chequerbox.co.za/wp-content/uploads/2015/03/Web_3-1024x207_011.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1078", "1", "2015-03-14 20:32:28", "2015-03-14 20:32:28", "", "Web_3-1024x207_02", "", "inherit", "open", "open", "", "web_3-1024x207_02-4", "", "", "2015-03-14 20:32:28", "2015-03-14 20:32:28", "", "1043", "http://chequerbox.co.za/wp-content/uploads/2015/03/Web_3-1024x207_021.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1079", "1", "2015-03-14 20:32:29", "2015-03-14 20:32:29", "", "Web_3-1024x207_03", "", "inherit", "open", "open", "", "web_3-1024x207_03-3", "", "", "2015-03-14 20:32:29", "2015-03-14 20:32:29", "", "1043", "http://chequerbox.co.za/wp-content/uploads/2015/03/Web_3-1024x207_031.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1080", "1", "2015-03-14 20:32:30", "2015-03-14 20:32:30", "", "Web_3-1024x207_04", "", "inherit", "open", "open", "", "web_3-1024x207_04-4", "", "", "2015-03-14 20:32:30", "2015-03-14 20:32:30", "", "1043", "http://chequerbox.co.za/wp-content/uploads/2015/03/Web_3-1024x207_041.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1081", "1", "2015-03-21 17:40:11", "2015-03-21 17:40:11", "[wpmp-cart]", "Cart", "", "publish", "closed", "closed", "", "cart-2", "", "", "2015-03-28 17:41:46", "2015-03-28 17:41:46", "", "0", "http://chequerbox.co.za/cart-2/", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1082", "1", "2015-03-21 17:40:11", "2015-03-21 17:40:11", "[woocommerce_checkout]", "Checkout", "", "publish", "closed", "closed", "", "checkout-2", "", "", "2015-03-28 17:42:57", "2015-03-28 17:42:57", "", "0", "http://chequerbox.co.za/checkout-2/", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1083", "1", "2015-03-21 17:40:11", "2015-03-21 17:40:11", "[my-orders]", "Orders", "", "publish", "closed", "closed", "", "orders", "", "", "2015-03-28 17:42:02", "2015-03-28 17:42:02", "", "0", "http://chequerbox.co.za/orders/", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1084", "1", "2015-03-21 17:40:11", "2015-03-21 17:40:11", "[wpmp-frontend]", "My Shop", "", "publish", "open", "open", "", "my-shop", "", "", "2015-03-21 17:40:11", "2015-03-21 17:40:11", "", "0", "http://chequerbox.co.za/my-shop/", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1086", "1", "2015-03-23 17:00:04", "2015-03-23 17:00:04", "Gallery:\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"1030,1028,1025,1022,1020,735,538,497\"]", "Social Booths", "", "inherit", "open", "open", "", "1060-revision-v1", "", "", "2015-03-23 17:00:04", "2015-03-23 17:00:04", "", "1060", "http://chequerbox.co.za/1060-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1087", "1", "2015-03-23 19:00:12", "2015-03-23 19:00:12", "[woocommerce_checkout]", "Checkout", "", "inherit", "open", "open", "", "767-revision-v1", "", "", "2015-03-23 19:00:12", "2015-03-23 19:00:12", "", "767", "http://chequerbox.co.za/767-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1090", "1", "2015-03-23 19:08:23", "2015-03-23 19:08:23", "", "Snappi® Baby Chair", "", "publish", "open", "open", "", "snappi-baby-chair-2", "", "", "2015-03-26 19:41:36", "2015-03-26 19:41:36", "", "0", "http://chequerbox.co.za/?p=1090", "11", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1091", "1", "2015-03-23 19:13:21", "2015-03-23 19:13:21", "<h2>ChequerBox introduces The Social Booth – a social media printing station.</h2>\r\nWith the phenomenon of selfies, a lot of photos are taken and shared on social media sites using mobile devices.  Why not utilise these uniquely captured moments for your brand and create another engaging experience for your customer.\r\n<h3>How it works:</h3>\r\nChequerBox Social Booth allows you to crowdsource your event photos.  Pick a hashtag for your event and tell your guests to tag their photos when they upload them to Instagram and Twitter.  ChequerBox Social Booth will monitor these platforms for photos matching the hashtag and will automatically download them.  Your guests can then visit the social media printing station, find the photos that they have uploaded a then choose to print a branded copy.\r\n\r\n&nbsp;\r\n<h3>Three easy steps:</h3>\r\n<ol>\r\n	<li>Take a photo</li>\r\n</ol>\r\nTake a photo using your mobile phone\r\n<ol start=\"2\">\r\n	<li>Hashtag</li>\r\n</ol>\r\nUpload the image to Instagram or Twitter using the unique hashtag\r\n<ol start=\"3\">\r\n	<li>Print</li>\r\n</ol>\r\nVisit the social printing station, select your image on the screen and print\r\n\r\nGallery:\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"1030,1028,1025,1022,1020,735,538,497\"]", "Social Booths", "", "inherit", "open", "open", "", "1060-revision-v1", "", "", "2015-03-23 19:13:21", "2015-03-23 19:13:21", "", "1060", "http://chequerbox.co.za/1060-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1092", "1", "2015-03-23 19:14:05", "2015-03-23 19:14:05", "<h2>ChequerBox introduces The Social Booth – a social media printing station.</h2>\r\nWith the phenomenon of selfies, a lot of photos are taken and shared on social media sites using mobile devices.  Why not utilise these uniquely captured moments for your brand and create another engaging experience for your customer.\r\n<h3>How it works:</h3>\r\nChequerBox Social Booth allows you to crowdsource your event photos.  Pick a hashtag for your event and tell your guests to tag their photos when they upload them to Instagram and Twitter.  ChequerBox Social Booth will monitor these platforms for photos matching the hashtag and will automatically download them.  Your guests can then visit the social media printing station, find the photos that they have uploaded a then choose to print a branded copy.\r\n<h3>Three easy steps:</h3>\r\n<ol>\r\n	<li>Take a photo</li>\r\n</ol>\r\nTake a photo using your mobile phone\r\n<ol start=\"2\">\r\n	<li>Hashtag</li>\r\n</ol>\r\nUpload the image to Instagram or Twitter using the unique hashtag\r\n<ol start=\"3\">\r\n	<li>Print</li>\r\n</ol>\r\nVisit the social printing station, select your image on the screen and print\r\n\r\n&nbsp;\r\n<h3>Gallery:</h3>\r\n[gallery columns=\"4\" link=\"file\" ids=\"1030,1028,1025,1022,1020,735,538,497\"]", "Social Booths", "", "inherit", "open", "open", "", "1060-revision-v1", "", "", "2015-03-23 19:14:05", "2015-03-23 19:14:05", "", "1060", "http://chequerbox.co.za/1060-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1093", "1", "2015-03-23 19:25:39", "2015-03-23 19:25:39", "<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\"><img class=\"aligncenter wp-image-1175 size-full\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\" alt=\"GreenScreen\" width=\"700\" height=\"456\" /></a>\r\n\r\n&nbsp;\r\n<h3>Why have a green screen photobooth?</h3>\r\nA green screen photobooth includes all the fun of a traditional photo booth, but now you can have different digital backgrounds instead of the standard backdrop.  Why not have some crazy fun with a PhotoBox Green Screen Photobooth (open) and create the ultimate memories for your event.\r\n\r\n&nbsp;\r\n<h3>How it works:</h3>\r\nA PhotoBox Green Screen Photobooth includes a green backdrop , a touch screen monitor, camera and stand - so that is why we call it an \'open\' photo booth.  Along with your input, we select digital backgrounds that will suit your event’s theme.  Custom backgrounds can be designed to suit your needs, along with branding of photos.  Photos are printed immediately at your event.\r\n\r\nWe setup a green screen photobooth backdrop with a touch screen that displays the various backgrounds and a live view so that you can interact with the chosen background.  Now it works just like a photobooth: press start, wait for the count down, snap, print!\r\n<h3><strong>Gallery:</strong></h3>\r\n[gallery columns=\"2\" size=\"medium\" link=\"file\" ids=\"1114,1115,1116,1117,1118,1119,1120,1121,1122,1123\"]", "Green Screen Photobooth", "", "publish", "closed", "closed", "", "green-screen-open-photo-booth", "", "", "2015-07-06 14:30:56", "2015-07-06 14:30:56", "", "850", "http://chequerbox.co.za/?page_id=1093", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1094", "1", "2015-03-23 19:25:39", "2015-03-23 19:25:39", "Looking for something different from a traditional photo booth.  Why not have some crazy fun with a ChequerBox Green Screen Open Photo Booth and create the ultimate memories for your event.\r\n<h3>How it works:</h3>\r\nAlong with your input, we select digital backgrounds that will suit your event’s theme.  Custom backgrounds can be designed to suit your needs, along with branding of photos.\r\n\r\nWe setup a green screen backdrop with a touch screen that displays the various backgrounds and a live view so that you can interact with the chosen background.  Now it works just like a photo booth: press start, wait for the count down, snap, print!", "Green Screen Open Photo Booth", "", "inherit", "open", "open", "", "1093-revision-v1", "", "", "2015-03-23 19:25:39", "2015-03-23 19:25:39", "", "1093", "http://chequerbox.co.za/1093-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1095", "1", "2015-03-23 19:30:25", "2015-03-23 19:30:25", " ", "", "", "publish", "open", "open", "", "1095", "", "", "2015-03-26 19:41:36", "2015-03-26 19:41:36", "", "850", "http://chequerbox.co.za/?p=1095", "7", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1096", "1", "2015-03-25 19:20:48", "2015-03-25 19:20:48", "<h2><a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/\">Your comprehensive baby medical kit for babies</a></h2>\n<a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/baby-chair/\"><strong>Baby Medi Box</strong></a> is a comprehensive baby medical kit containing basic medical equipment as well as tried and tested over the counter medications and products.  <a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/baby-chair/\"><strong>Baby Medi Box</strong></a> is endorsed by Ann Richardson, qualified Nurse and Midwife, co-author of the international bestsellers, <em>Baby Sense</em>; <em>Sleep Sense</em> and author of the international bestseller <em>Toddler Sense</em>.  We have taken the time to ensure that all the essentials are included thereby making life easier for new moms as well as friends/family running out of original gift ideas.  The kit also includes a booklet that acts as a guideline for new parents on basic baby healthcare.\n<h3><strong><a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/\">Buy one today!</a></strong></h3>\n<a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/baby-chair/\"><strong>Baby Medi Box</strong></a> includes:\n\n<span style=\"text-decoration: underline;\"><b>Pain and Fever</b></span>\n<ul>\n	<li>Digital Thermometer</li>\n	<li>Paracetamol Syrup</li>\n	<li>Empaped Suppositories</li>\n</ul>\n<span style=\"text-decoration: underline;\"><b>Nasal Care</b></span>\n<ul>\n	<li>Saline Nose drops &amp; Nasal Aspirator</li>\n</ul>\n<span style=\"text-decoration: underline;\"><b>Teething</b></span>\n<ul>\n	<li>Teething Gel</li>\n	<li>Baby Finger Toothbrush</li>\n</ul>\n<span style=\"text-decoration: underline;\"><b>Cord Care</b></span>\n<ul>\n	<li>Surgical Spirits</li>\n	<li>Cotton Wool</li>\n</ul>\n<b>Colic Care</b>\n\nGripe Water\n\n<b>Vomiting and/or Diarrhoea</b>\n\nRehydration Mixture\n\n<b>Burn Wound Care</b>\n\nBurn dressings\n\n<b>First Aid</b>\n\nTweezers &amp; Scissors\n\nBandage\n\nWaterproof Plasters\n\nAntiseptic Ointment\n\n<strong>Booklet</strong>", "Baby Medi Box", "", "inherit", "open", "open", "", "1043-autosave-v1", "", "", "2015-03-25 19:20:48", "2015-03-25 19:20:48", "", "1043", "http://chequerbox.co.za/1043-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1097", "1", "2015-03-25 17:42:18", "2015-03-25 17:42:18", "<h2><a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/\">Your comprehensive baby medical kit for babies</a></h2>\r\n<strong>Baby Medi Box</strong> is a comprehensive baby medical kit containing basic medical equipment as well as tried and tested over the counter medications and products.  <strong>Baby Medi Box</strong> is endorsed by Ann Richardson, qualified Nurse and Midwife, co-author of the international bestsellers, <em>Baby Sense</em>; <em>Sleep Sense</em> and author of the international bestseller <em>Toddler Sense</em>.  We have taken the time to ensure that all the essentials are included thereby making life easier for new moms as well as friends/family running out of original gift ideas.  The kit also includes a booklet that acts as a guideline for new parents on basic baby healthcare.\r\n\r\n<strong>Baby Medi Box</strong> includes:\r\n\r\n<b>Pain and Fever</b>\r\n\r\nDigital Thermometer\r\n\r\nParacetamol Syrup\r\n\r\nEmpaped Suppositories\r\n\r\n<b>Nasal Care</b>\r\n\r\nSaline Nose drops &amp; Nasal Aspirator\r\n\r\n<b>Teething</b>\r\n\r\nTeething Gel\r\n\r\nBaby Finger Toothbrush\r\n\r\n<b>Cord Care</b>\r\n\r\nSurgical Spirits\r\n\r\nCotton Wool\r\n\r\n<b>Colic Care</b>\r\n\r\nGripe Water\r\n\r\n<b>Vomiting and/or Diarrhoea</b>\r\n\r\nRehydration Mixture\r\n\r\n<b>Burn Wound Care</b>\r\n\r\nBurn dressings\r\n\r\n<b>First Aid</b>\r\n\r\nTweezers &amp; Scissors\r\n\r\nBandage\r\n\r\nWaterproof Plasters\r\n\r\nAntiseptic Ointment\r\n\r\n<strong>Booklet</strong>", "Baby Medi Box", "", "inherit", "open", "open", "", "1043-revision-v1", "", "", "2015-03-25 17:42:18", "2015-03-25 17:42:18", "", "1043", "http://chequerbox.co.za/1043-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1098", "1", "2015-03-25 17:42:43", "2015-03-25 17:42:43", "<h2><a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/\">Your comprehensive baby medical kit for babies</a></h2>\r\n<strong>Baby Medi Box</strong> is a comprehensive baby medical kit containing basic medical equipment as well as tried and tested over the counter medications and products.  <strong>Baby Medi Box</strong> is endorsed by Ann Richardson, qualified Nurse and Midwife, co-author of the international bestsellers, <em>Baby Sense</em>; <em>Sleep Sense</em> and author of the international bestseller <em>Toddler Sense</em>.  We have taken the time to ensure that all the essentials are included thereby making life easier for new moms as well as friends/family running out of original gift ideas.  The kit also includes a booklet that acts as a guideline for new parents on basic baby healthcare.\r\n\r\n<a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/\">Buy one today!</a>\r\n\r\n<strong>Baby Medi Box</strong> includes:\r\n\r\n<b>Pain and Fever</b>\r\n\r\nDigital Thermometer\r\n\r\nParacetamol Syrup\r\n\r\nEmpaped Suppositories\r\n\r\n<b>Nasal Care</b>\r\n\r\nSaline Nose drops &amp; Nasal Aspirator\r\n\r\n<b>Teething</b>\r\n\r\nTeething Gel\r\n\r\nBaby Finger Toothbrush\r\n\r\n<b>Cord Care</b>\r\n\r\nSurgical Spirits\r\n\r\nCotton Wool\r\n\r\n<b>Colic Care</b>\r\n\r\nGripe Water\r\n\r\n<b>Vomiting and/or Diarrhoea</b>\r\n\r\nRehydration Mixture\r\n\r\n<b>Burn Wound Care</b>\r\n\r\nBurn dressings\r\n\r\n<b>First Aid</b>\r\n\r\nTweezers &amp; Scissors\r\n\r\nBandage\r\n\r\nWaterproof Plasters\r\n\r\nAntiseptic Ointment\r\n\r\n<strong>Booklet</strong>", "Baby Medi Box", "", "inherit", "open", "open", "", "1043-revision-v1", "", "", "2015-03-25 17:42:43", "2015-03-25 17:42:43", "", "1043", "http://chequerbox.co.za/1043-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1099", "1", "2015-03-25 17:43:07", "2015-03-25 17:43:07", "<h2><a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/\">Your comprehensive baby medical kit for babies</a></h2>\r\n<strong>Baby Medi Box</strong> is a comprehensive baby medical kit containing basic medical equipment as well as tried and tested over the counter medications and products.  <strong>Baby Medi Box</strong> is endorsed by Ann Richardson, qualified Nurse and Midwife, co-author of the international bestsellers, <em>Baby Sense</em>; <em>Sleep Sense</em> and author of the international bestseller <em>Toddler Sense</em>.  We have taken the time to ensure that all the essentials are included thereby making life easier for new moms as well as friends/family running out of original gift ideas.  The kit also includes a booklet that acts as a guideline for new parents on basic baby healthcare.\r\n<h3><strong><a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/\">Buy one today!</a></strong></h3>\r\n<strong>Baby Medi Box</strong> includes:\r\n\r\n<b>Pain and Fever</b>\r\n\r\nDigital Thermometer\r\n\r\nParacetamol Syrup\r\n\r\nEmpaped Suppositories\r\n\r\n<b>Nasal Care</b>\r\n\r\nSaline Nose drops &amp; Nasal Aspirator\r\n\r\n<b>Teething</b>\r\n\r\nTeething Gel\r\n\r\nBaby Finger Toothbrush\r\n\r\n<b>Cord Care</b>\r\n\r\nSurgical Spirits\r\n\r\nCotton Wool\r\n\r\n<b>Colic Care</b>\r\n\r\nGripe Water\r\n\r\n<b>Vomiting and/or Diarrhoea</b>\r\n\r\nRehydration Mixture\r\n\r\n<b>Burn Wound Care</b>\r\n\r\nBurn dressings\r\n\r\n<b>First Aid</b>\r\n\r\nTweezers &amp; Scissors\r\n\r\nBandage\r\n\r\nWaterproof Plasters\r\n\r\nAntiseptic Ointment\r\n\r\n<strong>Booklet</strong>", "Baby Medi Box", "", "inherit", "open", "open", "", "1043-revision-v1", "", "", "2015-03-25 17:43:07", "2015-03-25 17:43:07", "", "1043", "http://chequerbox.co.za/1043-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1100", "1", "2015-03-25 17:46:21", "2015-03-25 17:46:21", "<h2>Novel wedding day survival kits and bags for brides and bridesmaids.</h2>\n<a title=\"Wedding Day Kits\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit/\"><strong>The Wedding Day Kit Bag</strong></a> makes a great gift for a bride to be on her wedding day or can be used as bridesmaid gifts.  The bag contains some essentials and is big enough to add a few more items if you would like to.  The Wedding Day Bag is available in a navy red polka dot colour or a jade polka dot colour. Included are: Hold All Bag (navy / jade polka dots) white dressing gown (3/4 sleeve &amp; knee length) comfy white slippers shower cap white scrunchie (45 x 30 x 16cm)\n<h3>Buy online&gt;</h3>\n&nbsp;\n\n<strong>The Wedding Day Survival Kit</strong> is the perfect emergency kit for a bride on her wedding day – a kit containing those just-in-case items that you won’t think of packing for the big day to ensure the perfect wedding day.  The Wedding Day Survival Kit is also great for bridesmaids so that they too can be prepared!\n<h3>Buy online&gt;</h3>\n&nbsp;\n\nThe Wedding Day Survival Kit includes:\n\nmending kit\n\nfrench manicure essentials &amp; nail care\n\nmini deodorant\n\nlip balm\n\nhair pins\n\nsafety pins\n\nplasters\n\nlint remover\n\nmini hand lotion\n\npain killers\n\nearing backs\n\ndrinking straw\n\nenergy snack", "Wedding Box", "", "inherit", "open", "open", "", "1069-autosave-v1", "", "", "2015-03-25 17:46:21", "2015-03-25 17:46:21", "", "1069", "http://chequerbox.co.za/1069-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1101", "1", "2015-03-25 17:46:46", "2015-03-25 17:46:46", "<h2>Novel wedding day survival kits and bags for brides and bridesmaids.</h2>\r\n<a title=\"Wedding Day Kits\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit/\"><strong>The Wedding Day Kit Bag</strong></a> makes a great gift for a bride to be on her wedding day or can be used as bridesmaid gifts.  The bag contains some essentials and is big enough to add a few more items if you would like to.  The Wedding Day Bag is available in a navy red polka dot colour or a jade polka dot colour. Included are: Hold All Bag (navy / jade polka dots) white dressing gown (3/4 sleeve &amp; knee length) comfy white slippers shower cap white scrunchie (45 x 30 x 16cm)\r\n<h3><a title=\"Wedding Day Kits\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit/\">Buy online&gt;</a></h3>\r\n&nbsp;\r\n\r\n<a title=\"Wedding Day Survival Kit\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit-2/\"><strong>The Wedding Day Survival Kit</strong></a> is the perfect emergency kit for a bride on her wedding day – a kit containing those just-in-case items that you won’t think of packing for the big day to ensure the perfect wedding day.  The Wedding Day Survival Kit is also great for bridesmaids so that they too can be prepared!\r\n<h3><a title=\"Wedding Day Survival Kit\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit-2/\">Buy online&gt;</a></h3>\r\n&nbsp;\r\n\r\nThe Wedding Day Survival Kit includes:\r\n\r\nmending kit\r\n\r\nfrench manicure essentials &amp; nail care\r\n\r\nmini deodorant\r\n\r\nlip balm\r\n\r\nhair pins\r\n\r\nsafety pins\r\n\r\nplasters\r\n\r\nlint remover\r\n\r\nmini hand lotion\r\n\r\npain killers\r\n\r\nearing backs\r\n\r\ndrinking straw\r\n\r\nenergy snack", "Wedding Box", "", "inherit", "open", "open", "", "1069-revision-v1", "", "", "2015-03-25 17:46:46", "2015-03-25 17:46:46", "", "1069", "http://chequerbox.co.za/1069-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1102", "1", "2015-03-25 17:47:25", "2015-03-25 17:47:25", "<h2>Novel wedding day survival kits and bags for brides and bridesmaids.</h2>\r\n<a title=\"Wedding Day Kits\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit/\"><strong>The Wedding Day Kit Bag</strong></a> makes a great gift for a bride to be on her wedding day or can be used as bridesmaid gifts.  The bag contains some essentials and is big enough to add a few more items if you would like to.  The Wedding Day Bag is available in a navy red polka dot colour or a jade polka dot colour. Included are: Hold All Bag (navy / jade polka dots) white dressing gown (3/4 sleeve &amp; knee length) comfy white slippers shower cap white scrunchie (45 x 30 x 16cm)\r\n<h3><strong><a title=\"Wedding Day Kits\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit/\">Buy online</a></strong></h3>\r\n&nbsp;\r\n\r\n<a title=\"Wedding Day Survival Kit\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit-2/\"><strong>The Wedding Day Survival Kit</strong></a> is the perfect emergency kit for a bride on her wedding day – a kit containing those just-in-case items that you won’t think of packing for the big day to ensure the perfect wedding day.  The Wedding Day Survival Kit is also great for bridesmaids so that they too can be prepared!\r\n<h3><strong><a title=\"Wedding Day Survival Kit\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit-2/\">Buy online</a></strong></h3>\r\n&nbsp;\r\n\r\nThe Wedding Day Survival Kit includes:\r\n\r\nmending kit\r\n\r\nfrench manicure essentials &amp; nail care\r\n\r\nmini deodorant\r\n\r\nlip balm\r\n\r\nhair pins\r\n\r\nsafety pins\r\n\r\nplasters\r\n\r\nlint remover\r\n\r\nmini hand lotion\r\n\r\npain killers\r\n\r\nearing backs\r\n\r\ndrinking straw\r\n\r\nenergy snack", "Wedding Box", "", "inherit", "open", "open", "", "1069-revision-v1", "", "", "2015-03-25 17:47:25", "2015-03-25 17:47:25", "", "1069", "http://chequerbox.co.za/1069-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1103", "1", "2015-03-25 17:47:50", "2015-03-25 17:47:50", "<h2>Novel wedding day survival kits and bags for brides and bridesmaids.</h2>\r\n<a title=\"Wedding Day Kits\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit/\"><strong>The Wedding Day Kit Bag</strong></a> makes a great gift for a bride to be on her wedding day or can be used as bridesmaid gifts.  The bag contains some essentials and is big enough to add a few more items if you would like to.  The Wedding Day Bag is available in a navy red polka dot colour or a jade polka dot colour. Included are: Hold All Bag (navy / jade polka dots) white dressing gown (3/4 sleeve &amp; knee length) comfy white slippers shower cap white scrunchie (45 x 30 x 16cm)\r\n<h3><strong><a title=\"Wedding Day Kits\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit/\">Buy online</a></strong></h3>\r\n&nbsp;\r\n\r\n<a title=\"Wedding Day Survival Kit\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit-2/\"><strong>The Wedding Day Survival Kit</strong></a> is the perfect emergency kit for a bride on her wedding day – a kit containing those just-in-case items that you won’t think of packing for the big day to ensure the perfect wedding day.  The Wedding Day Survival Kit is also great for bridesmaids so that they too can be prepared!\r\n<h3><strong><a title=\"Wedding Day Survival Kit\" href=\"http://chequerbox.co.za/shop/wedding-day-kits/wedding-day-survival-kit-2/\">Buy online</a></strong></h3>\r\n<h3> The Wedding Day Survival Kit includes:</h3>\r\n<ul>\r\n	<li>mending kit</li>\r\n	<li>french manicure essentials &amp; nail care</li>\r\n	<li>mini deodorant</li>\r\n	<li>lip balm</li>\r\n	<li>hair pins</li>\r\n	<li>safety pins</li>\r\n	<li>plasters</li>\r\n	<li>lint remover</li>\r\n	<li>mini hand lotion</li>\r\n	<li>pain killers</li>\r\n	<li>earing backs</li>\r\n	<li>drinking straw</li>\r\n	<li>energy snack</li>\r\n</ul>", "Wedding Box", "", "inherit", "open", "open", "", "1069-revision-v1", "", "", "2015-03-25 17:47:50", "2015-03-25 17:47:50", "", "1069", "http://chequerbox.co.za/1069-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1104", "1", "2015-03-25 17:49:51", "2015-03-25 17:49:51", "<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\">\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"152,151,150,73\"]\r\n\r\n</div>", "Vending Machines", "", "inherit", "open", "open", "", "1066-revision-v1", "", "", "2015-03-25 17:49:51", "2015-03-25 17:49:51", "", "1066", "http://chequerbox.co.za/1066-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1105", "1", "2015-03-25 17:50:07", "2015-03-25 17:50:07", "<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>ChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since. <strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\">\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"152,151,150,73\"]\r\n\r\n</div>", "Vending Machines", "", "inherit", "open", "open", "", "1066-revision-v1", "", "", "2015-03-25 17:50:07", "2015-03-25 17:50:07", "", "1066", "http://chequerbox.co.za/1066-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1106", "1", "2015-03-25 17:53:14", "2015-03-25 17:53:14", "<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>\r\n\r\nChequerBox Vending Machines were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since. <strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.  Our contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\">\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"152,151,150,73\"]\r\n\r\n</div>", "Vending Machines", "", "inherit", "open", "open", "", "1066-revision-v1", "", "", "2015-03-25 17:53:14", "2015-03-25 17:53:14", "", "1066", "http://chequerbox.co.za/1066-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1107", "1", "2015-03-25 17:53:47", "2015-03-25 17:53:47", "<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>\r\n\r\n<strong>ChequerBox Vending Machines</strong> were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.\r\n\r\n<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.\r\n\r\nOur contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\">\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"152,151,150,73\"]\r\n\r\n</div>", "Vending Machines", "", "inherit", "open", "open", "", "1066-revision-v1", "", "", "2015-03-25 17:53:47", "2015-03-25 17:53:47", "", "1066", "http://chequerbox.co.za/1066-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1108", "1", "2015-03-25 17:57:59", "2015-03-25 17:57:59", "<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>\n\n<strong>ChequerBox Vending Machines</strong> were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.\n\n<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.\n\nOur contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\">\n\n[gallery columns=\"4\" link=\"file\" ids=\"152,151,150,73\"]\n\n&nbsp;\n\n</div>", "Vending Machines", "", "inherit", "open", "open", "", "1066-autosave-v1", "", "", "2015-03-25 17:57:59", "2015-03-25 17:57:59", "", "1066", "http://chequerbox.co.za/1066-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1109", "1", "2015-03-25 17:58:05", "2015-03-25 17:58:05", "<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2.jpg\"><img class=\"alignnone size-large wp-image-805\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/Vending-Machine-Banner_v2-1024x350.jpg\" alt=\"Vending Machine Solutions\" width=\"1024\" height=\"350\" /></a>\r\n\r\n<strong>ChequerBox Vending Machines</strong> were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.\r\n\r\n<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.\r\n\r\nOur contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\">\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"152,151,150,73\"]\r\n\r\n[vfb id=2]\r\n\r\n</div>", "Vending Machines", "", "inherit", "open", "open", "", "1066-revision-v1", "", "", "2015-03-25 17:58:05", "2015-03-25 17:58:05", "", "1066", "http://chequerbox.co.za/1066-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1110", "1", "2015-03-25 18:02:12", "2015-03-25 18:02:12", "Snappi baby chair", "49_resized", "", "inherit", "open", "open", "", "49_resized", "", "", "2015-07-06 14:44:48", "2015-07-06 14:44:48", "", "769", "http://chequerbox.co.za/wp-content/uploads/2015/02/49_resized.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1111", "1", "2015-03-25 18:09:06", "2015-03-25 18:09:06", "&nbsp;\r\n\r\n<img class=\"aligncenter size-full wp-image-1080\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/Web_3-1024x207_041.jpg\" alt=\"Web_3-1024x207_04\" width=\"277\" height=\"161\" />\r\n\r\n<strong>ChequerBox Vending Machines</strong> were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.\r\n\r\n<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.\r\n\r\nOur contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\">\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"152,151,150,73\"]\r\n\r\n[vfb id=2]\r\n\r\n</div>", "Vending Machines", "", "inherit", "open", "open", "", "1066-revision-v1", "", "", "2015-03-25 18:09:06", "2015-03-25 18:09:06", "", "1066", "http://chequerbox.co.za/1066-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1112", "1", "2015-03-25 18:09:44", "2015-03-25 18:09:44", "<img class=\"aligncenter size-full wp-image-1080\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/Web_3-1024x207_041.jpg\" alt=\"Web_3-1024x207_04\" width=\"277\" height=\"161\" />\r\n\r\n<strong>ChequerBox Vending Machines</strong> were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.\r\n\r\n<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.\r\n\r\nOur contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\">\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"152,151,150,73\"]\r\n\r\n[vfb id=2]\r\n\r\n</div>", "Vending Machines", "", "inherit", "open", "open", "", "1066-revision-v1", "", "", "2015-03-25 18:09:44", "2015-03-25 18:09:44", "", "1066", "http://chequerbox.co.za/1066-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1113", "1", "2015-03-25 18:42:17", "2015-03-25 18:42:17", "Looking for something different from a traditional photo booth.  Why not have some crazy fun with a ChequerBox Green Screen Open Photo Booth and create the ultimate memories for your event.\n<h3>How it works:</h3>\nAlong with your input, we select digital backgrounds that will suit your event’s theme.  Custom backgrounds can be designed to suit your needs, along with branding of photos.\n\nWe setup a green screen backdrop with a touch screen that displays the various backgrounds and a live view so that you can interact with the chosen background.  Now it works just like a photo booth: press start, wait for the count down, snap, print!\n\n&nbsp;", "Green Screen Open Photo Booth", "", "inherit", "open", "open", "", "1093-autosave-v1", "", "", "2015-03-25 18:42:17", "2015-03-25 18:42:17", "", "1093", "http://chequerbox.co.za/1093-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1114", "1", "2015-03-25 18:42:31", "2015-03-25 18:42:31", "green screen photobooth", "140831_131016", "", "inherit", "open", "open", "", "140831_131016", "", "", "2015-07-06 14:44:38", "2015-07-06 14:44:38", "", "1093", "http://chequerbox.co.za/wp-content/uploads/2015/03/140831_131016.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1115", "1", "2015-03-25 18:42:32", "2015-03-25 18:42:32", "green screen photobooth", "140831_164527", "", "inherit", "open", "open", "", "140831_164527", "", "", "2015-07-06 14:44:30", "2015-07-06 14:44:30", "", "1093", "http://chequerbox.co.za/wp-content/uploads/2015/03/140831_164527.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1116", "1", "2015-03-25 18:42:34", "2015-03-25 18:42:34", "green screen photobooth", "20140927_145942", "", "inherit", "open", "open", "", "20140927_145942", "", "", "2015-07-06 14:44:20", "2015-07-06 14:44:20", "", "1093", "http://chequerbox.co.za/wp-content/uploads/2015/03/20140927_145942.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1117", "1", "2015-03-25 18:42:36", "2015-03-25 18:42:36", "green screen photobooth", "20140927_150916", "", "inherit", "open", "open", "", "20140927_150916", "", "", "2015-07-06 14:44:12", "2015-07-06 14:44:12", "", "1093", "http://chequerbox.co.za/wp-content/uploads/2015/03/20140927_150916.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1118", "1", "2015-03-25 18:42:37", "2015-03-25 18:42:37", "green screen photobooth", "IMG_0017", "", "inherit", "open", "open", "", "img_0017", "", "", "2015-07-06 14:44:02", "2015-07-06 14:44:02", "", "1093", "http://chequerbox.co.za/wp-content/uploads/2015/03/IMG_0017.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1119", "1", "2015-03-25 18:42:39", "2015-03-25 18:42:39", "green screen photobooth", "IMG_0021", "", "inherit", "open", "open", "", "img_0021-3", "", "", "2015-07-06 14:43:55", "2015-07-06 14:43:55", "", "1093", "http://chequerbox.co.za/wp-content/uploads/2015/03/IMG_0021.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1120", "1", "2015-03-25 18:42:40", "2015-03-25 18:42:40", "green screen photobooth", "IMG_0030", "", "inherit", "open", "open", "", "img_0030", "", "", "2015-07-06 14:43:42", "2015-07-06 14:43:42", "", "1093", "http://chequerbox.co.za/wp-content/uploads/2015/03/IMG_0030.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1121", "1", "2015-03-25 18:42:42", "2015-03-25 18:42:42", "green screen photobooth", "IMG_0032", "", "inherit", "open", "open", "", "img_0032-2", "", "", "2015-07-06 14:43:32", "2015-07-06 14:43:32", "", "1093", "http://chequerbox.co.za/wp-content/uploads/2015/03/IMG_0032.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1122", "1", "2015-03-25 18:42:44", "2015-03-25 18:42:44", "green screen photobooth", "IMG_0035", "", "inherit", "open", "open", "", "img_0035", "", "", "2015-07-06 14:43:22", "2015-07-06 14:43:22", "", "1093", "http://chequerbox.co.za/wp-content/uploads/2015/03/IMG_0035.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1123", "1", "2015-03-25 18:42:46", "2015-03-25 18:42:46", "", "IMG_0315", "", "inherit", "open", "open", "", "img_0315", "", "", "2015-03-25 18:42:46", "2015-03-25 18:42:46", "", "1093", "http://chequerbox.co.za/wp-content/uploads/2015/03/IMG_0315.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1124", "1", "2015-03-25 18:49:48", "2015-03-25 18:49:48", "Looking for something different from a traditional photo booth.  Why not have some crazy fun with a ChequerBox Green Screen Open Photo Booth and create the ultimate memories for your event.\r\n<h3>How it works:</h3>\r\nAlong with your input, we select digital backgrounds that will suit your event’s theme.  Custom backgrounds can be designed to suit your needs, along with branding of photos.\r\n\r\nWe setup a green screen backdrop with a touch screen that displays the various backgrounds and a live view so that you can interact with the chosen background.  Now it works just like a photo booth: press start, wait for the count down, snap, print!\r\n\r\n[gallery columns=\"2\" size=\"medium\" link=\"file\" ids=\"1114,1115,1116,1117,1118,1119,1120,1121,1122,1123\"]", "Green Screen Open Photo Booth", "", "inherit", "open", "open", "", "1093-revision-v1", "", "", "2015-03-25 18:49:48", "2015-03-25 18:49:48", "", "1093", "http://chequerbox.co.za/1093-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1125", "1", "2015-03-25 18:52:14", "2015-03-25 18:52:14", "<h2>ChequerBox introduces The Social Booth – a social media printing station.</h2>\r\nWith the phenomenon of selfies, a lot of photos are taken and shared on social media sites using mobile devices.  Why not utilise these uniquely captured moments for your brand and create another engaging experience for your customer.\r\n<h3>How it works:</h3>\r\nChequerBox Social Booth allows you to crowdsource your event photos.  Pick a hashtag for your event and tell your guests to tag their photos when they upload them to Instagram and Twitter.  ChequerBox Social Booth will monitor these platforms for photos matching the hashtag and will automatically download them.  Your guests can then visit the social media printing station, find the photos that they have uploaded a then choose to print a branded copy.\r\n<h3>Three easy steps:</h3>\r\n<ol>\r\n	<li>Take a photo</li>\r\n</ol>\r\nTake a photo using your mobile phone\r\n<ol start=\"2\">\r\n	<li>Hashtag</li>\r\n</ol>\r\nUpload the image to Instagram or Twitter using the unique hashtag\r\n<ol start=\"3\">\r\n	<li>Print</li>\r\n</ol>\r\nVisit the social printing station, select your image on the screen and print", "Social Booths", "", "inherit", "open", "open", "", "1060-revision-v1", "", "", "2015-03-25 18:52:14", "2015-03-25 18:52:14", "", "1060", "http://chequerbox.co.za/1060-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1126", "1", "2015-03-25 18:52:45", "2015-03-25 18:52:45", "Looking for something different from a traditional photo booth.  Why not have some crazy fun with a ChequerBox Green Screen Open Photo Booth and create the ultimate memories for your event.\r\n<h3>How it works:</h3>\r\nAlong with your input, we select digital backgrounds that will suit your event’s theme.  Custom backgrounds can be designed to suit your needs, along with branding of photos.\r\n\r\nWe setup a green screen backdrop with a touch screen that displays the various backgrounds and a live view so that you can interact with the chosen background.  Now it works just like a photo booth: press start, wait for the count down, snap, print!\r\n<h3><strong>Gallery:</strong></h3>\r\n[gallery columns=\"2\" size=\"medium\" link=\"file\" ids=\"1114,1115,1116,1117,1118,1119,1120,1121,1122,1123\"]", "Green Screen Open Photo Booth", "", "inherit", "open", "open", "", "1093-revision-v1", "", "", "2015-03-25 18:52:45", "2015-03-25 18:52:45", "", "1093", "http://chequerbox.co.za/1093-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1127", "1", "2015-03-25 18:53:11", "2015-03-25 18:53:11", "<a href=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/First-cover-photo.png\"><img class=\"alignnone size-full wp-image-975\" src=\"http://www.chequerbox.co.za/wp-content/uploads/2013/06/First-cover-photo.png\" alt=\"First cover photo\" width=\"700\" height=\"456\" /></a>\n\nThe traditional photo booth remains great fun for any party, wedding or corporate function.  There is something about getting dressed up with silly or cute props and getting into an enclosed photo box to have some fun.  This is the perfect ice breaker for any event.\n\nChequerBox offers The Photo Box, a traditional photo booth that can be assembled at any party or event and instantly prints a traditional photo strip or postcard size photo with custom design.  We also have a touch screen for ease of use that displays a live view so that you can view the photos before they are printed.  There is the option to select between colour, black and white or sepia photo styles.  We always have assistants with our photo booths to ensure a smooth but fun process for everyone.  A digital copy of all photos will be made available to you after the event.\n<h3>Weddings</h3>\nThe Photo Box is the perfect ice breaker for any wedding and you can use the photo strips as a wedding favor.  We bring along small magnets that we hand out to each guest with their first set of photos.  We also include a wedding guest book and encourage your guests to add some of their copies to the book along with hand-written messages.  A digital copy of all photos is given to you after the event\n<h3>Corporate Events</h3>\nThe Photo Box can be branded for your corporate event along with the photo background.  We can incorporate your logo on the live-display monitor inside the booth to leverage every branding opportunity for your event as well as automatically upload to your Facebook profile.  After each event a copy of all the digital photos is made available for your use.  Enquire about large screen displays for your event or custom props.\n\n&nbsp;", "Traditional Photo Booths", "", "inherit", "open", "open", "", "850-autosave-v1", "", "", "2015-03-25 18:53:11", "2015-03-25 18:53:11", "", "850", "http://chequerbox.co.za/850-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1128", "1", "2015-03-25 18:57:08", "2015-03-25 18:57:08", "photobooth", "_R5A0113", "", "inherit", "open", "open", "", "_r5a0113", "", "", "2015-07-06 14:43:08", "2015-07-06 14:43:08", "", "850", "http://chequerbox.co.za/wp-content/uploads/2015/03/R5A0113.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1129", "1", "2015-03-25 18:57:10", "2015-03-25 18:57:10", "photobooth", "140830_211147", "", "inherit", "open", "open", "", "140830_211147", "", "", "2015-07-06 14:42:59", "2015-07-06 14:42:59", "", "850", "http://chequerbox.co.za/wp-content/uploads/2015/03/140830_211147.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1130", "1", "2015-03-25 18:57:12", "2015-03-25 18:57:12", "", "141115_115751", "", "inherit", "open", "open", "", "141115_115751", "", "", "2015-03-25 18:57:12", "2015-03-25 18:57:12", "", "850", "http://chequerbox.co.za/wp-content/uploads/2015/03/141115_115751.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1131", "1", "2015-03-25 18:57:14", "2015-03-25 18:57:14", "photobooth", "141115_191649", "", "inherit", "open", "open", "", "141115_191649", "", "", "2015-07-06 14:42:53", "2015-07-06 14:42:53", "", "850", "http://chequerbox.co.za/wp-content/uploads/2015/03/141115_191649.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1132", "1", "2015-03-25 18:57:16", "2015-03-25 18:57:16", "photobooth", "141116_093812", "", "inherit", "open", "open", "", "141116_093812", "", "", "2015-07-06 14:42:48", "2015-07-06 14:42:48", "", "850", "http://chequerbox.co.za/wp-content/uploads/2015/03/141116_093812.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1133", "1", "2015-03-25 18:57:18", "2015-03-25 18:57:18", "photobooth", "141205_131033", "", "inherit", "open", "open", "", "141205_131033", "", "", "2015-07-06 14:42:32", "2015-07-06 14:42:32", "", "850", "http://chequerbox.co.za/wp-content/uploads/2015/03/141205_131033.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1134", "1", "2015-03-25 18:57:20", "2015-03-25 18:57:20", "", "141206_130131", "", "inherit", "open", "open", "", "141206_130131", "", "", "2015-03-25 18:57:20", "2015-03-25 18:57:20", "", "850", "http://chequerbox.co.za/wp-content/uploads/2015/03/141206_130131.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1135", "1", "2015-03-25 18:57:23", "2015-03-25 18:57:23", "photobooth", "141210_124043", "", "inherit", "open", "open", "", "141210_124043", "", "", "2015-07-06 14:42:25", "2015-07-06 14:42:25", "", "850", "http://chequerbox.co.za/wp-content/uploads/2015/03/141210_124043.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1136", "1", "2015-03-25 18:57:25", "2015-03-25 18:57:25", "photobooth", "141211_164842", "", "inherit", "open", "open", "", "141211_164842", "", "", "2015-07-06 14:42:12", "2015-07-06 14:42:12", "", "850", "http://chequerbox.co.za/wp-content/uploads/2015/03/141211_164842.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1137", "1", "2015-03-25 18:57:27", "2015-03-25 18:57:27", "photobooth", "141212_121038", "", "inherit", "open", "open", "", "141212_121038", "", "", "2015-07-06 14:42:07", "2015-07-06 14:42:07", "", "850", "http://chequerbox.co.za/wp-content/uploads/2015/03/141212_121038.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1138", "1", "2015-03-25 18:57:29", "2015-03-25 18:57:29", "photobooth hire for weddings", "141216_204140", "", "inherit", "open", "open", "", "141216_204140", "", "", "2015-07-06 14:42:02", "2015-07-06 14:42:02", "", "850", "http://chequerbox.co.za/wp-content/uploads/2015/03/141216_204140.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1139", "1", "2015-03-25 18:57:30", "2015-03-25 18:57:30", "photobooth", "new photo booth", "", "inherit", "open", "open", "", "new-photo-booth", "", "", "2015-07-06 14:41:45", "2015-07-06 14:41:45", "", "850", "http://chequerbox.co.za/wp-content/uploads/2015/03/new-photo-booth.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1140", "1", "2015-03-25 18:58:15", "2015-03-25 18:58:15", "photobooth", "141123_160014", "", "inherit", "open", "open", "", "141123_160014", "", "", "2015-07-06 14:41:38", "2015-07-06 14:41:38", "", "850", "http://chequerbox.co.za/wp-content/uploads/2015/03/141123_160014.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1141", "1", "2015-03-25 18:58:17", "2015-03-25 18:58:17", "photobooth", "IMG_0140", "", "inherit", "open", "open", "", "img_0140", "", "", "2015-07-06 14:41:30", "2015-07-06 14:41:30", "", "850", "http://chequerbox.co.za/wp-content/uploads/2015/03/IMG_0140.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1142", "1", "2015-03-25 19:07:24", "2015-03-25 19:07:24", "", "DSC_0646", "", "inherit", "open", "open", "", "dsc_0646", "", "", "2015-03-25 19:07:24", "2015-03-25 19:07:24", "", "810", "http://chequerbox.co.za/wp-content/uploads/2015/02/DSC_0646.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1143", "1", "2015-03-25 19:11:15", "2015-03-25 19:11:15", "baby medical kit", "DSC_0705", "", "inherit", "open", "open", "", "dsc_0705", "", "", "2015-07-06 14:45:42", "2015-07-06 14:45:42", "", "810", "http://chequerbox.co.za/wp-content/uploads/2015/02/DSC_0705.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1144", "1", "2015-03-25 19:12:03", "2015-03-25 19:12:03", "", "DSC_0650", "", "inherit", "open", "open", "", "dsc_0650", "", "", "2015-03-25 19:12:03", "2015-03-25 19:12:03", "", "810", "http://chequerbox.co.za/wp-content/uploads/2015/02/DSC_0650.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1145", "1", "2015-03-25 19:17:55", "2015-03-25 19:17:55", "<a title=\"Traditional Photo Booths\" href=\"http://chequerbox.co.za/photo-booth-green-screen-photo-booth-rentals/\"><b>ChequerBox Photo Booth</b></a> and <a title=\"Green Screen Open Photo Booth\" href=\"http://chequerbox.co.za/photo-booth-green-screen-photo-booth-rentals/green-screen-open-photo-booth/\"><strong>Green Screen Photo Booth</strong></a> rentals<strong> </strong>are great fun and will create the ultimate memories at your event and give your guests something tangible to remember.\r\n\r\n<b>How it works:</b>\r\n\r\nWe will deliver, set up and stay by the booth during the booked time for the event making sure everyone understands how it works and receives their photo strips printed after each photo session.", "Photo Booths", "", "inherit", "open", "open", "", "1074-revision-v1", "", "", "2015-03-25 19:17:55", "2015-03-25 19:17:55", "", "1074", "http://chequerbox.co.za/1074-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1146", "1", "2015-03-25 19:18:38", "2015-03-25 19:18:38", "<a title=\"Traditional Photo Booths\" href=\"http://chequerbox.co.za/photo-booth-green-screen-photo-booth-rentals/\"><b>ChequerBox Photo Booth</b></a> and <a title=\"Green Screen Open Photo Booth\" href=\"http://chequerbox.co.za/photo-booth-green-screen-photo-booth-rentals/green-screen-open-photo-booth/\"><strong>Green Screen Photo Booth</strong></a> rentals<strong> </strong>are great fun and will create the ultimate memories at your event and give your guests something tangible to remember.\r\n\r\n[Hier kan ons die onderskeie images insit soos Nicol vir ons gaan skep en link na die photo booths toe]\r\n\r\n&nbsp;\r\n\r\n<b>How it works:</b>\r\n\r\nWe will deliver, set up and stay by the booth during the booked time for the event making sure everyone understands how it works and receives their photo strips printed after each photo session.", "Photo Booths", "", "inherit", "open", "open", "", "1074-revision-v1", "", "", "2015-03-25 19:18:38", "2015-03-25 19:18:38", "", "1074", "http://chequerbox.co.za/1074-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1147", "1", "2015-03-25 19:18:48", "2015-03-25 19:18:48", "<a title=\"Traditional Photo Booths\" href=\"http://chequerbox.co.za/photo-booth-green-screen-photo-booth-rentals/\"><b>ChequerBox Photo Booth</b></a> and <a title=\"Green Screen Open Photo Booth\" href=\"http://chequerbox.co.za/photo-booth-green-screen-photo-booth-rentals/green-screen-open-photo-booth/\"><strong>Green Screen Photo Booth</strong></a> rentals<strong> </strong>are great fun and will create the ultimate memories at your event and give your guests something tangible to remember.\r\n\r\n<em><strong>[Hier kan ons die onderskeie images insit soos Nicol vir ons gaan skep en link na die photo booths toe]</strong></em>\r\n\r\n<em><strong> </strong></em>\r\n\r\n<b>How it works:</b>\r\n\r\nWe will deliver, set up and stay by the booth during the booked time for the event making sure everyone understands how it works and receives their photo strips printed after each photo session.", "Photo Booths", "", "inherit", "open", "open", "", "1074-revision-v1", "", "", "2015-03-25 19:18:48", "2015-03-25 19:18:48", "", "1074", "http://chequerbox.co.za/1074-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1148", "1", "2015-03-25 19:21:22", "2015-03-25 19:21:22", "<h2><a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/\">Your comprehensive baby medical kit for babies</a></h2>\r\n<a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/baby-chair/\"><strong>Baby Medi Box</strong></a> is a comprehensive baby medical kit containing basic medical equipment as well as tried and tested over the counter medications and products.  <a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/baby-chair/\"><strong>Baby Medi Box</strong></a> is endorsed by Ann Richardson, qualified Nurse and Midwife, co-author of the international bestsellers, <em>Baby Sense</em>; <em>Sleep Sense</em> and author of the international bestseller <em>Toddler Sense</em>.  We have taken the time to ensure that all the essentials are included thereby making life easier for new moms as well as friends/family running out of original gift ideas.  The kit also includes a booklet that acts as a guideline for new parents on basic baby healthcare.\r\n<h3><strong><a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/\">Buy one today!</a></strong></h3>\r\n<a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/baby-chair/\"><strong>Baby Medi Box</strong></a> includes:\r\n\r\n<span style=\"text-decoration: underline;\"><b>Pain and Fever</b></span>\r\n<ul>\r\n	<li>Digital Thermometer</li>\r\n	<li>Paracetamol Syrup</li>\r\n	<li>Empaped Suppositories</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Nasal Care</b></span>\r\n<ul>\r\n	<li>Saline Nose drops &amp; Nasal Aspirator</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Teething</b></span>\r\n<ul>\r\n	<li>Teething Gel</li>\r\n	<li>Baby Finger Toothbrush</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Cord Care</b></span>\r\n<ul>\r\n	<li>Surgical Spirits</li>\r\n	<li>Cotton Wool</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Colic Care</b></span>\r\n\r\n<span style=\"text-decoration: underline;\">Gripe Water</span>\r\n\r\n<span style=\"text-decoration: underline;\"><b>Vomiting and/or Diarrhoea</b></span>\r\n<ul>\r\n	<li>Rehydration Mixture</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Burn Wound Care</b></span>\r\n<ul>\r\n	<li>Burn dressings</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>First Aid</b></span>\r\n<ul>\r\n	<li>Tweezers &amp; Scissors</li>\r\n	<li>Bandage</li>\r\n	<li>Waterproof Plasters</li>\r\n	<li>Antiseptic Ointment</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><strong>Booklet</strong></span>", "Baby Medi Box", "", "inherit", "open", "open", "", "1043-revision-v1", "", "", "2015-03-25 19:21:22", "2015-03-25 19:21:22", "", "1043", "http://chequerbox.co.za/1043-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1149", "1", "2015-03-25 19:22:02", "2015-03-25 19:22:02", "<h2><a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/\">Your comprehensive baby medical kit for babies</a></h2>\r\n<a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/baby-chair/\"><strong>Baby Medi Box</strong></a> is a comprehensive baby medical kit containing basic medical equipment as well as tried and tested over the counter medications and products.  <a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/baby-chair/\"><strong>Baby Medi Box</strong></a> is endorsed by Ann Richardson, qualified Nurse and Midwife, co-author of the international bestsellers, <em>Baby Sense</em>; <em>Sleep Sense</em> and author of the international bestseller <em>Toddler Sense</em>.  We have taken the time to ensure that all the essentials are included thereby making life easier for new moms as well as friends/family running out of original gift ideas.  The kit also includes a booklet that acts as a guideline for new parents on basic baby healthcare.\r\n<h3><strong><a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/shop/baby-medi-aid/baby-medi-box-your-comprehensive-baby-medical-kit-for-babies/\">Buy one today!</a></strong></h3>\r\n<a title=\"Baby Medi Box\" href=\"http://chequerbox.co.za/baby-chair/\"><strong>Baby Medi Box</strong></a> includes:\r\n\r\n<span style=\"text-decoration: underline;\"><b>Pain and Fever</b></span>\r\n<ul>\r\n	<li>Digital Thermometer</li>\r\n	<li>Paracetamol Syrup</li>\r\n	<li>Empaped Suppositories</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Nasal Care</b></span>\r\n<ul>\r\n	<li>Saline Nose drops &amp; Nasal Aspirator</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Teething</b></span>\r\n<ul>\r\n	<li>Teething Gel</li>\r\n	<li>Baby Finger Toothbrush</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Cord Care</b></span>\r\n<ul>\r\n	<li>Surgical Spirits</li>\r\n	<li>Cotton Wool</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Colic Care</b></span>\r\n<ul>\r\n	<li>Gripe Water</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Vomiting and/or Diarrhoea</b></span>\r\n<ul>\r\n	<li>Rehydration Mixture</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>Burn Wound Care</b></span>\r\n<ul>\r\n	<li>Burn dressings</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><b>First Aid</b></span>\r\n<ul>\r\n	<li>Tweezers &amp; Scissors</li>\r\n	<li>Bandage</li>\r\n	<li>Waterproof Plasters</li>\r\n	<li>Antiseptic Ointment</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><strong>Booklet</strong></span>", "Baby Medi Box", "", "inherit", "open", "open", "", "1043-revision-v1", "", "", "2015-03-25 19:22:02", "2015-03-25 19:22:02", "", "1043", "http://chequerbox.co.za/1043-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1150", "1", "2015-03-26 08:06:24", "2015-03-26 08:06:24", "<i id=\"yui_3_16_0_1_1427356990066_16505\"><span id=\"yui_3_16_0_1_1427356990066_16504\">I bought this gift for a baby shower, a must for any mom. It was the talk of the day as it’s not the norm. I can definitely recommend it if you’re out of gift ideas for baby showers and want to buy a practical gift for mom and baby</span></i>", "Bernice Eden", "", "publish", "open", "open", "", "1150", "", "", "2015-03-27 13:49:36", "2015-03-27 13:49:36", "", "0", "http://chequerbox.co.za/?p=1150", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1151", "1", "2015-03-26 08:06:24", "2015-03-26 08:06:24", "<i id=\"yui_3_16_0_1_1427356990066_16505\"><span id=\"yui_3_16_0_1_1427356990066_16504\">I bought this gift for a baby shower, a must for any mom. It was the talk of the day as it’s not the norm. I can definitely recommend it if you’re out of gift ideas for baby showers and want to buy a practical gift for mom and baby. </span></i>\r\n\r\n<span id=\"yui_3_16_0_1_1427356990066_16506\">Bernice Eden</span>", "", "", "inherit", "open", "open", "", "1150-revision-v1", "", "", "2015-03-26 08:06:24", "2015-03-26 08:06:24", "", "1150", "http://chequerbox.co.za/1150-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1152", "1", "2015-03-26 08:34:50", "2015-03-26 08:34:50", "<i id=\"yui_3_16_0_1_1427356990066_45810\"><span id=\"yui_3_16_0_1_1427356990066_45809\">Thank you to your company and the excellent service provided. My wedding went off without a hitch and all the guests enjoyed the photo booth tremendously. I would love to recommend your company to anyone who needs a photo booth and or any other products you may offer.<br clear=\"none\" />Sincerely,</span></i><span id=\"yui_3_16_0_1_1427356990066_45808\">\r\n</span>", "Nicol", "", "publish", "open", "open", "", "1152", "", "", "2015-03-27 13:49:09", "2015-03-27 13:49:09", "", "0", "http://chequerbox.co.za/?p=1152", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1153", "1", "2015-03-26 08:34:50", "2015-03-26 08:34:50", "<i id=\"yui_3_16_0_1_1427356990066_45810\"><span id=\"yui_3_16_0_1_1427356990066_45809\">Thank you to your company and the excellent service provided. My wedding went off without a hitch and all the guests enjoyed the photo booth tremendously. I would love to recommend your company to anyone who needs a photo booth and or any other products you may offer.<br clear=\"none\" />Sincerely,</span></i><span id=\"yui_3_16_0_1_1427356990066_45808\"><br clear=\"none\" /><span id=\"yui_3_16_0_1_1427356990066_45807\">Nicol</span></span>", "", "", "inherit", "open", "open", "", "1152-revision-v1", "", "", "2015-03-26 08:34:50", "2015-03-26 08:34:50", "", "1152", "http://chequerbox.co.za/1152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1154", "1", "2015-03-26 08:35:31", "2015-03-26 08:35:31", "<p id=\"yui_3_16_0_1_1427356990066_45837\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45836\"><span id=\"yui_3_16_0_1_1427356990066_45835\">Just wanted to say thank-you for such an fun evening with your photo booth-it was a REAL HIT!!!!</span></i></p>\r\n<p class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45839\"><span id=\"yui_3_16_0_1_1427356990066_45838\">Just made our wedding extra special and memorable</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45842\" class=\"yiv1180303284MsoNormal\"></p>", "Kerryn", "", "publish", "open", "open", "", "1154", "", "", "2015-03-27 13:48:28", "2015-03-27 13:48:28", "", "0", "http://chequerbox.co.za/?p=1154", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1155", "1", "2015-03-26 08:35:31", "2015-03-26 08:35:31", "<p id=\"yui_3_16_0_1_1427356990066_45837\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45836\"><span id=\"yui_3_16_0_1_1427356990066_45835\">Just wanted to say thank-you for such an fun evening with your photo booth-it was a REAL HIT!!!!</span></i></p>\r\n<p class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45839\"><span id=\"yui_3_16_0_1_1427356990066_45838\">Just made our wedding extra special and memorable</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45842\" class=\"yiv1180303284MsoNormal\"><span id=\"yui_3_16_0_1_1427356990066_45841\">Kerryn</span></p>", "", "", "inherit", "open", "open", "", "1154-revision-v1", "", "", "2015-03-26 08:35:31", "2015-03-26 08:35:31", "", "1154", "http://chequerbox.co.za/1154-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1156", "1", "2015-03-26 08:37:11", "2015-03-26 08:37:11", "<p id=\"yui_3_16_0_1_1427356990066_45834\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45833\"><span id=\"yui_3_16_0_1_1427356990066_45832\">We would just like to thank you for sharing our special day with us and for the time and effort you made to get everything set up.</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45874\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45873\"><span id=\"yui_3_16_0_1_1427356990066_45872\">We had an absolute blast and love all the photos!!! Everyone keeps talking about the photo booth and how awesome it was!</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45871\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45876\"><span id=\"yui_3_16_0_1_1427356990066_45875\">Memories we will always keep! J</span></i></p>", "Carmen", "", "publish", "open", "open", "", "1156", "", "", "2015-03-27 13:48:02", "2015-03-27 13:48:02", "", "0", "http://chequerbox.co.za/?p=1156", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1157", "1", "2015-03-26 08:37:11", "2015-03-26 08:37:11", "<p id=\"yui_3_16_0_1_1427356990066_45834\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45833\"><span id=\"yui_3_16_0_1_1427356990066_45832\">We would just like to thank you for sharing our special day with us and for the time and effort you made to get everything set up.</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45874\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45873\"><span id=\"yui_3_16_0_1_1427356990066_45872\">We had an absolute blast and love all the photos!!! Everyone keeps talking about the photo booth and how awesome it was!</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45871\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45876\"><span id=\"yui_3_16_0_1_1427356990066_45875\">Memories we will always keep! J</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45870\" class=\"yiv1180303284MsoNormal\"><span id=\"yui_3_16_0_1_1427356990066_45878\">Carmen</span></p>", "", "", "inherit", "open", "open", "", "1156-revision-v1", "", "", "2015-03-26 08:37:11", "2015-03-26 08:37:11", "", "1156", "http://chequerbox.co.za/1156-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1158", "1", "2015-03-26 08:37:35", "2015-03-26 08:37:35", "<p id=\"yui_3_16_0_1_1427356990066_45903\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45923\"><span id=\"yui_3_16_0_1_1427356990066_45922\">Thank you very much for the Baby Medi Box, it looks awesome.</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45902\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45926\"><span id=\"yui_3_16_0_1_1427356990066_45925\">I’m sure the mommy to be will love it.</span></i></p>", "Yolandi", "", "publish", "open", "open", "", "1158", "", "", "2015-03-27 13:47:41", "2015-03-27 13:47:41", "", "0", "http://chequerbox.co.za/?p=1158", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1159", "1", "2015-03-26 08:37:35", "2015-03-26 08:37:35", "<p id=\"yui_3_16_0_1_1427356990066_45903\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45923\"><span id=\"yui_3_16_0_1_1427356990066_45922\">Thank you very much for the Baby Medi Box, it looks awesome.</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45902\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45926\"><span id=\"yui_3_16_0_1_1427356990066_45925\">I’m sure the mommy to be will love it.</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45919\" class=\"yiv1180303284MsoNormal\"><span id=\"yui_3_16_0_1_1427356990066_45921\">Yolandi</span></p>", "", "", "inherit", "open", "open", "", "1158-revision-v1", "", "", "2015-03-26 08:37:35", "2015-03-26 08:37:35", "", "1158", "http://chequerbox.co.za/1158-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1160", "1", "2015-03-26 17:52:01", "2015-03-26 17:52:01", "", "Wedding Day Kits4", "", "inherit", "open", "open", "", "wedding-day-kits4", "", "", "2015-03-26 17:52:01", "2015-03-26 17:52:01", "", "872", "http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding-Day-Kits4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1161", "1", "2015-03-26 17:54:06", "2015-03-26 17:54:06", "", "Wedding Day Kits1", "", "inherit", "open", "open", "", "wedding-day-kits1", "", "", "2015-03-26 17:54:06", "2015-03-26 17:54:06", "", "872", "http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding-Day-Kits1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1162", "1", "2015-03-26 17:54:40", "2015-03-26 17:54:40", "", "Wedding Day Kits2", "", "inherit", "open", "open", "", "wedding-day-kits2", "", "", "2015-03-26 17:54:40", "2015-03-26 17:54:40", "", "872", "http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding-Day-Kits2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1163", "1", "2015-03-26 17:55:25", "2015-03-26 17:55:25", "", "Wedding Day Kits3", "", "inherit", "open", "open", "", "wedding-day-kits3", "", "", "2015-03-26 17:55:25", "2015-03-26 17:55:25", "", "872", "http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding-Day-Kits3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1164", "1", "2015-03-26 18:02:35", "2015-03-26 18:02:35", "", "Shopperbag1", "", "inherit", "open", "open", "", "shopperbag1", "", "", "2015-03-26 18:02:35", "2015-03-26 18:02:35", "", "822", "http://chequerbox.co.za/wp-content/uploads/2015/02/Shopperbag1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1165", "1", "2015-03-26 18:02:59", "2015-03-26 18:02:59", "", "Shopperbag2", "", "inherit", "open", "open", "", "shopperbag2", "", "", "2015-03-26 18:02:59", "2015-03-26 18:02:59", "", "822", "http://chequerbox.co.za/wp-content/uploads/2015/02/Shopperbag2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1166", "1", "2015-03-26 18:05:07", "2015-03-26 18:05:07", "", "Hold All Bags", "", "inherit", "open", "open", "", "hold-all-bags-2", "", "", "2015-03-26 18:05:07", "2015-03-26 18:05:07", "", "812", "http://chequerbox.co.za/wp-content/uploads/2015/02/Hold-All-Bags.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1167", "1", "2015-03-26 18:05:11", "2015-03-26 18:05:11", "", "Hold All Bags2", "", "inherit", "open", "open", "", "hold-all-bags2", "", "", "2015-03-26 18:05:11", "2015-03-26 18:05:11", "", "812", "http://chequerbox.co.za/wp-content/uploads/2015/02/Hold-All-Bags2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1168", "1", "2015-03-26 18:08:44", "2015-03-26 18:08:44", "", "Hold-All-Bag-Complete_Navy", "", "inherit", "open", "open", "", "hold-all-bag-complete_navy-2", "", "", "2015-03-26 18:08:44", "2015-03-26 18:08:44", "", "822", "http://chequerbox.co.za/wp-content/uploads/2015/02/Hold-All-Bag-Complete_Navy.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1169", "1", "2015-03-26 18:10:22", "2015-03-26 18:10:22", "", "Wedding-Kit_Hold-All-Bag_Navy", "", "inherit", "open", "open", "", "wedding-kit_hold-all-bag_navy-2", "", "", "2015-03-26 18:10:22", "2015-03-26 18:10:22", "", "822", "http://chequerbox.co.za/wp-content/uploads/2015/02/Wedding-Kit_Hold-All-Bag_Navy.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1170", "1", "2015-03-26 18:17:32", "2015-03-26 18:17:32", "baby medical kit", "Baby Medi Box Booklet", "", "inherit", "open", "open", "", "baby-medi-box-booklet", "", "", "2015-07-06 14:45:46", "2015-07-06 14:45:46", "", "810", "http://chequerbox.co.za/wp-content/uploads/2015/02/Baby-Medi-Box-Booklet.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1171", "1", "2015-03-26 18:19:01", "2015-03-26 18:19:01", "", "Baby Medi Box 1", "", "inherit", "open", "open", "", "baby-medi-box-1", "", "", "2015-03-26 18:19:01", "2015-03-26 18:19:01", "", "810", "http://chequerbox.co.za/wp-content/uploads/2015/02/Baby-Medi-Box-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1172", "1", "2015-03-26 18:20:22", "2015-03-26 18:20:22", "", "Baby Medi Box 2", "", "inherit", "open", "open", "", "baby-medi-box-2", "", "", "2015-03-26 18:20:22", "2015-03-26 18:20:22", "", "810", "http://chequerbox.co.za/wp-content/uploads/2015/02/Baby-Medi-Box-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1173", "1", "2015-03-26 18:42:03", "2015-03-26 18:42:03", "", "VendingBox", "", "inherit", "open", "open", "", "vendingbox", "", "", "2015-03-26 18:42:03", "2015-03-26 18:42:03", "", "854", "http://chequerbox.co.za/wp-content/uploads/2015/03/VendingBox.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1174", "1", "2015-03-26 18:50:16", "2015-03-26 18:50:16", "", "ThePhotoBox", "", "inherit", "open", "open", "", "thephotobox", "", "", "2015-03-26 18:50:16", "2015-03-26 18:50:16", "", "1074", "http://chequerbox.co.za/wp-content/uploads/2015/03/ThePhotoBox.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1175", "1", "2015-03-26 18:51:00", "2015-03-26 18:51:00", "", "GreenScreen", "", "inherit", "open", "open", "", "greenscreen", "", "", "2015-03-26 18:51:00", "2015-03-26 18:51:00", "", "1074", "http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1176", "1", "2015-03-26 18:51:06", "2015-03-26 18:51:06", "", "traditional photo booth", "", "inherit", "open", "open", "", "traditional-photo-booth", "", "", "2015-03-26 18:51:06", "2015-03-26 18:51:06", "", "1074", "http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1177", "1", "2015-03-26 18:51:29", "2015-03-26 18:51:29", "<a title=\"Traditional Photo Booths\" href=\"http://chequerbox.co.za/photo-booth-green-screen-photo-booth-rentals/\"><b>ChequerBox Photo Booth</b></a> and <a title=\"Green Screen Open Photo Booth\" href=\"http://chequerbox.co.za/photo-booth-green-screen-photo-booth-rentals/green-screen-open-photo-booth/\"><strong>Green Screen Photo Booth</strong></a> rentals<strong> </strong>are great fun and will create the ultimate memories at your event and give your guests something tangible to remember.\n\n<em><strong><a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\"><img class=\"alignleft wp-image-1175 size-medium\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen-300x195.jpg\" alt=\"GreenScreen\" width=\"300\" height=\"195\" /></a> <a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\"><img class=\"alignright wp-image-1176 size-medium\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth-300x195.jpg\" alt=\"traditional photo booth\" width=\"300\" height=\"195\" /></a> </strong></em>\n\n<b>How it works:</b>\n\nWe will deliver, set up and stay by the booth during the booked time for the event making sure everyone understands how it works and receives their photo strips printed after each photo session.", "Photo Booths", "", "inherit", "open", "open", "", "1074-autosave-v1", "", "", "2015-03-26 18:51:29", "2015-03-26 18:51:29", "", "1074", "http://chequerbox.co.za/1074-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1178", "1", "2015-03-26 18:51:38", "2015-03-26 18:51:38", "<a title=\"Traditional Photo Booths\" href=\"http://chequerbox.co.za/photo-booth-green-screen-photo-booth-rentals/\"><b>ChequerBox Photo Booth</b></a> and <a title=\"Green Screen Open Photo Booth\" href=\"http://chequerbox.co.za/photo-booth-green-screen-photo-booth-rentals/green-screen-open-photo-booth/\"><strong>Green Screen Photo Booth</strong></a> rentals<strong> </strong>are great fun and will create the ultimate memories at your event and give your guests something tangible to remember.\r\n\r\n<em><strong><a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\"><img class=\"alignleft wp-image-1175 size-medium\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen-300x195.jpg\" alt=\"GreenScreen\" width=\"300\" height=\"195\" /></a> <a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\"><img class=\"alignleft wp-image-1176 size-medium\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth-300x195.jpg\" alt=\"traditional photo booth\" width=\"300\" height=\"195\" /></a> </strong></em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>How it works:</b>\r\n\r\nWe will deliver, set up and stay by the booth during the booked time for the event making sure everyone understands how it works and receives their photo strips printed after each photo session.", "Photo Booths", "", "inherit", "open", "open", "", "1074-revision-v1", "", "", "2015-03-26 18:51:38", "2015-03-26 18:51:38", "", "1074", "http://chequerbox.co.za/1074-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1179", "1", "2015-03-26 18:56:33", "2015-03-26 18:56:33", "", "TheBabyMediBox", "", "inherit", "open", "open", "", "thebabymedibox", "", "", "2015-03-26 18:56:33", "2015-03-26 18:56:33", "", "1074", "http://chequerbox.co.za/wp-content/uploads/2015/03/TheBabyMediBox.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1180", "1", "2015-03-26 18:56:34", "2015-03-26 18:56:34", "", "ThePhotoBox", "", "inherit", "open", "open", "", "thephotobox-2", "", "", "2015-03-26 18:56:34", "2015-03-26 18:56:34", "", "1074", "http://chequerbox.co.za/wp-content/uploads/2015/03/ThePhotoBox.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1181", "1", "2015-03-26 18:56:35", "2015-03-26 18:56:35", "", "VendingBox", "", "inherit", "open", "open", "", "vendingbox-2", "", "", "2015-03-26 18:56:35", "2015-03-26 18:56:35", "", "1074", "http://chequerbox.co.za/wp-content/uploads/2015/03/VendingBox.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1182", "1", "2015-03-26 18:56:35", "2015-03-26 18:56:35", "", "WeddingBox", "", "inherit", "open", "open", "", "weddingbox", "", "", "2015-03-26 18:56:35", "2015-03-26 18:56:35", "", "1074", "http://chequerbox.co.za/wp-content/uploads/2015/03/WeddingBox.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1183", "1", "2015-03-26 18:58:01", "2015-03-26 18:58:01", "&nbsp;\r\n\r\n<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/VendingBox.png\"><img class=\"aligncenter size-medium wp-image-1173\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/VendingBox-300x128.png\" alt=\"VendingBox\" width=\"300\" height=\"128\" /></a>\r\n\r\n<strong>ChequerBox Vending Machines</strong> were the start of “boxed solutions” in the<strong> ChequerBox</strong> service offering.  It all started with one vending machine called Walter and has grown since.\r\n\r\n<strong>ChequerBox Vending Machines</strong> can place a free vending machine at sites across Johannesburg to suit your company’s needs.  Whether you have limited space or a large number of employees, we have a machine to suit your needs.We offer friendly and reliable service and we ensure regular contact with our clients to ensure trust and satisfaction of their vending machines.\r\n\r\nOur contents include popular branded snacks and cool drinks, however we believe in catering for each site’s unique needs.If you require a snack solution, send us a message below and we will get back to you.\r\n<div id=\"gallery-1\" class=\"gallery galleryid-259 gallery-columns-2 gallery-size-thumbnail\">\r\n\r\n[gallery columns=\"4\" link=\"file\" ids=\"152,151,150,73\"]\r\n\r\n[vfb id=2]\r\n\r\n</div>", "Vending Machines", "", "inherit", "open", "open", "", "1066-revision-v1", "", "", "2015-03-26 18:58:01", "2015-03-26 18:58:01", "", "1066", "http://chequerbox.co.za/1066-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1184", "1", "2015-03-26 18:59:20", "2015-03-26 18:59:20", "<p id=\"yui_3_16_0_1_1427356990066_45903\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45923\"><span id=\"yui_3_16_0_1_1427356990066_45922\">Thank you very much for the Baby Medi Box, it looks awesome.</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45902\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45926\"><span id=\"yui_3_16_0_1_1427356990066_45925\">I’m sure the mommy to be will love it.</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45919\" class=\"yiv1180303284MsoNormal\"><span id=\"yui_3_16_0_1_1427356990066_45921\">Yolandi</span></p>", "Testimonial 1", "", "inherit", "open", "open", "", "1158-revision-v1", "", "", "2015-03-26 18:59:20", "2015-03-26 18:59:20", "", "1158", "http://chequerbox.co.za/1158-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1185", "1", "2015-03-26 19:05:42", "2015-03-26 19:05:42", "", "Testimonials", "", "inherit", "open", "open", "", "testimonials", "", "", "2015-03-26 19:05:42", "2015-03-26 19:05:42", "", "1158", "http://chequerbox.co.za/wp-content/uploads/2015/03/Testimonials.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1186", "1", "2015-03-26 19:06:14", "2015-03-26 19:06:14", "<p id=\"yui_3_16_0_1_1427356990066_45903\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45923\"><span id=\"yui_3_16_0_1_1427356990066_45922\">Thank you very much for the Baby Medi Box, it looks awesome.</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45902\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45926\"><span id=\"yui_3_16_0_1_1427356990066_45925\">I’m sure the mommy to be will love it.</span></i></p>", "Yolandi", "", "inherit", "open", "open", "", "1158-revision-v1", "", "", "2015-03-26 19:06:14", "2015-03-26 19:06:14", "", "1158", "http://chequerbox.co.za/1158-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1187", "1", "2015-03-26 19:06:41", "2015-03-26 19:06:41", "<p id=\"yui_3_16_0_1_1427356990066_45834\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45833\"><span id=\"yui_3_16_0_1_1427356990066_45832\">We would just like to thank you for sharing our special day with us and for the time and effort you made to get everything set up.</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45874\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45873\"><span id=\"yui_3_16_0_1_1427356990066_45872\">We had an absolute blast and love all the photos!!! Everyone keeps talking about the photo booth and how awesome it was!</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45871\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45876\"><span id=\"yui_3_16_0_1_1427356990066_45875\">Memories we will always keep! J</span></i></p>", "Carmen", "", "inherit", "open", "open", "", "1156-revision-v1", "", "", "2015-03-26 19:06:41", "2015-03-26 19:06:41", "", "1156", "http://chequerbox.co.za/1156-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1188", "1", "2015-03-26 19:07:04", "2015-03-26 19:07:04", "<p id=\"yui_3_16_0_1_1427356990066_45837\" class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45836\"><span id=\"yui_3_16_0_1_1427356990066_45835\">Just wanted to say thank-you for such an fun evening with your photo booth-it was a REAL HIT!!!!</span></i></p>\r\n<p class=\"yiv1180303284MsoNormal\"><i id=\"yui_3_16_0_1_1427356990066_45839\"><span id=\"yui_3_16_0_1_1427356990066_45838\">Just made our wedding extra special and memorable</span></i></p>\r\n<p id=\"yui_3_16_0_1_1427356990066_45842\" class=\"yiv1180303284MsoNormal\"></p>", "Kerryn", "", "inherit", "open", "open", "", "1154-revision-v1", "", "", "2015-03-26 19:07:04", "2015-03-26 19:07:04", "", "1154", "http://chequerbox.co.za/1154-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1189", "1", "2015-03-26 19:07:33", "2015-03-26 19:07:33", "<i id=\"yui_3_16_0_1_1427356990066_45810\"><span id=\"yui_3_16_0_1_1427356990066_45809\">Thank you to your company and the excellent service provided. My wedding went off without a hitch and all the guests enjoyed the photo booth tremendously. I would love to recommend your company to anyone who needs a photo booth and or any other products you may offer.<br clear=\"none\" />Sincerely,</span></i><span id=\"yui_3_16_0_1_1427356990066_45808\">\r\n</span>", "Nicol", "", "inherit", "open", "open", "", "1152-revision-v1", "", "", "2015-03-26 19:07:33", "2015-03-26 19:07:33", "", "1152", "http://chequerbox.co.za/1152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1190", "1", "2015-03-26 19:08:05", "2015-03-26 19:08:05", "<i id=\"yui_3_16_0_1_1427356990066_16505\"><span id=\"yui_3_16_0_1_1427356990066_16504\">I bought this gift for a baby shower, a must for any mom. It was the talk of the day as it’s not the norm. I can definitely recommend it if you’re out of gift ideas for baby showers and want to buy a practical gift for mom and baby</span></i>", "Bernice Eden", "", "inherit", "open", "open", "", "1150-revision-v1", "", "", "2015-03-26 19:08:05", "2015-03-26 19:08:05", "", "1150", "http://chequerbox.co.za/1150-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1191", "1", "2015-03-26 19:16:26", "2015-03-26 19:16:26", "", "Shopperbag1", "", "inherit", "open", "open", "", "shopperbag1-2", "", "", "2015-03-26 19:16:26", "2015-03-26 19:16:26", "", "820", "http://chequerbox.co.za/wp-content/uploads/2015/02/Shopperbag11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1192", "1", "2015-03-26 19:18:02", "2015-03-26 19:18:02", "<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\"><img class=\"aligncenter wp-image-1175 size-full\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\" alt=\"GreenScreen\" width=\"700\" height=\"456\" /></a>\r\n\r\nLooking for something different from a traditional photo booth.  Why not have some crazy fun with a ChequerBox Green Screen Open Photo Booth and create the ultimate memories for your event.\r\n<h3>How it works:</h3>\r\nAlong with your input, we select digital backgrounds that will suit your event’s theme.  Custom backgrounds can be designed to suit your needs, along with branding of photos.\r\n\r\nWe setup a green screen backdrop with a touch screen that displays the various backgrounds and a live view so that you can interact with the chosen background.  Now it works just like a photo booth: press start, wait for the count down, snap, print!\r\n<h3><strong>Gallery:</strong></h3>\r\n[gallery columns=\"2\" size=\"medium\" link=\"file\" ids=\"1114,1115,1116,1117,1118,1119,1120,1121,1122,1123\"]", "Green Screen Open Photo Booth", "", "inherit", "open", "open", "", "1093-revision-v1", "", "", "2015-03-26 19:18:02", "2015-03-26 19:18:02", "", "1093", "http://chequerbox.co.za/1093-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1193", "1", "2015-03-27 13:37:20", "2015-03-27 13:37:20", "", "weddingSurvivalkit", "", "inherit", "open", "open", "", "weddingsurvivalkit", "", "", "2015-03-27 13:37:20", "2015-03-27 13:37:20", "", "880", "http://chequerbox.co.za/wp-content/uploads/2015/03/weddingSurvivalkit.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1194", "1", "2015-03-27 13:38:45", "2015-03-27 13:38:45", "", "Wedding Day Kits5", "", "inherit", "open", "open", "", "wedding-day-kits5", "", "", "2015-03-27 13:38:45", "2015-03-27 13:38:45", "", "872", "http://chequerbox.co.za/wp-content/uploads/2015/03/Wedding-Day-Kits5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1195", "1", "2015-03-27 13:47:35", "2015-03-27 13:47:35", "", "Comment_ReviewIcon", "", "inherit", "open", "open", "", "comment_reviewicon", "", "", "2015-03-27 13:47:35", "2015-03-27 13:47:35", "", "1158", "http://chequerbox.co.za/wp-content/uploads/2015/03/Comment_ReviewIcon.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1196", "1", "2015-03-27 13:47:36", "2015-03-27 13:47:36", "", "Comment_ReviewIcon2", "", "inherit", "open", "open", "", "comment_reviewicon2", "", "", "2015-03-27 13:47:36", "2015-03-27 13:47:36", "", "1158", "http://chequerbox.co.za/wp-content/uploads/2015/03/Comment_ReviewIcon2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1197", "1", "2015-03-27 13:47:37", "2015-03-27 13:47:37", "", "Comment_ReviewIcon3", "", "inherit", "open", "open", "", "comment_reviewicon3", "", "", "2015-03-27 13:47:37", "2015-03-27 13:47:37", "", "1158", "http://chequerbox.co.za/wp-content/uploads/2015/03/Comment_ReviewIcon3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1198", "1", "2015-03-28 17:39:52", "2015-03-28 17:39:52", "[woocommerce_checkout]", "Checkout", "", "inherit", "open", "open", "", "1082-revision-v1", "", "", "2015-03-28 17:39:52", "2015-03-28 17:39:52", "", "1082", "http://chequerbox.co.za/1082-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1200", "1", "2015-03-28 17:41:46", "2015-03-28 17:41:46", "[wpmp-cart]", "Cart", "", "inherit", "open", "open", "", "1081-revision-v1", "", "", "2015-03-28 17:41:46", "2015-03-28 17:41:46", "", "1081", "http://chequerbox.co.za/1081-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1201", "1", "2015-03-28 17:42:02", "2015-03-28 17:42:02", "[my-orders]", "Orders", "", "inherit", "open", "open", "", "1083-revision-v1", "", "", "2015-03-28 17:42:02", "2015-03-28 17:42:02", "", "1083", "http://chequerbox.co.za/1083-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1207", "1", "2015-05-20 09:03:40", "2015-05-20 09:03:40", " ", "", "", "publish", "open", "open", "", "1207", "", "", "2015-05-20 09:04:13", "2015-05-20 09:04:13", "", "0", "http://chequerbox.co.za/?p=1207", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1209", "1", "2015-05-20 09:03:40", "2015-05-20 09:03:40", " ", "", "", "publish", "open", "open", "", "1209", "", "", "2015-05-20 09:04:13", "2015-05-20 09:04:13", "", "0", "http://chequerbox.co.za/?p=1209", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1210", "1", "2015-05-21 06:04:20", "2015-05-21 06:04:20", "", "Order &ndash; May 21, 2015 @ 06:04 AM", "", "wc-processing", "open", "closed", "order_555d72a1eefd5", "order-may-21-2015-0552-am", "", "", "2015-05-21 06:04:20", "2015-05-21 06:04:20", "", "0", "http://chequerbox.co.za/?post_type=shop_order&#038;p=1210", "0", "shop_order", "", "3");
INSERT INTO `wp_posts` VALUES("1212", "2", "2015-06-08 20:16:46", "2015-06-08 20:16:46", "We have been busy here at The PhotoBox with lots of photo booths at weddings.  From Ballito to Pretoria!  A traditional photo booth remains a great addition to your wedding and your guests will still go crazy for it.  Fun props, printed photos, you and your friends doing funny poses - what\'s not to like?  Not to mention a gorgeous photo strip background designed especially for your event.\r\n\r\nThank you for making The PhotoBox photo booth part of your special day:)\r\n\r\n[gallery type=\"slideshow\" size=\"medium\" ids=\"1214,1213\"]\r\n\r\n&nbsp;", "Photo Booths at Weddings", "", "publish", "open", "open", "", "photo-booths-at-weddings", "", "", "2015-06-08 20:16:46", "2015-06-08 20:16:46", "", "0", "http://chequerbox.co.za/?p=1212", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1213", "2", "2015-06-08 20:03:22", "2015-06-08 20:03:22", "photobooth hire for weddings", "150530_183743", "", "inherit", "open", "open", "", "150530_183743", "", "", "2015-07-06 14:41:18", "2015-07-06 14:41:18", "", "1212", "http://chequerbox.co.za/wp-content/uploads/2015/06/150530_183743.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1214", "2", "2015-06-08 20:03:43", "2015-06-08 20:03:43", "photobooth hire for weddings", "150606_204843", "", "inherit", "open", "open", "", "150606_204843", "", "", "2015-07-06 14:41:07", "2015-07-06 14:41:07", "", "1212", "http://chequerbox.co.za/wp-content/uploads/2015/06/150606_204843.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1215", "2", "2015-06-08 20:09:37", "2015-06-08 20:09:37", "photobooth", "IMG_0152", "", "inherit", "open", "open", "", "img_0152", "", "", "2015-07-06 14:40:53", "2015-07-06 14:40:53", "", "1212", "http://chequerbox.co.za/wp-content/uploads/2015/06/IMG_0152.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1216", "2", "2015-06-08 20:13:42", "2015-06-08 20:13:42", "We have been busy here at The PhotoBox with lots of photo booths at weddings.  From Ballito to Pretoria!  A traditional photo booth remains a great addition to your wedding and your guests will still go crazy for it.  Fun props, printed photos, you and your friends doing funny poses - what\'s not to like?  Not to mention a gorgeous photo strip background designed especially for your event.\r\n\r\nThank you for making The PhotoBox photo booth part of your special day:)\r\n\r\n[gallery columns=\"1\" ids=\"1213,1214\"]", "Photo Booths at Weddings", "", "inherit", "open", "open", "", "1212-revision-v1", "", "", "2015-06-08 20:13:42", "2015-06-08 20:13:42", "", "1212", "http://chequerbox.co.za/1212-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1217", "2", "2015-06-08 20:16:16", "2015-06-08 20:16:16", "We have been busy here at The PhotoBox with lots of photo booths at weddings.  From Ballito to Pretoria!  A traditional photo booth remains a great addition to your wedding and your guests will still go crazy for it.  Fun props, printed photos, you and your friends doing funny poses - what\'s not to like?  Not to mention a gorgeous photo strip background designed especially for your event.\r\n\r\nThank you for making The PhotoBox photo booth part of your special day:)\r\n\r\n[gallery type=\"slideshow\" size=\"medium\" ids=\"1214,1213\"]\r\n\r\n&nbsp;", "Photo Booths at Weddings", "", "inherit", "open", "open", "", "1212-revision-v1", "", "", "2015-06-08 20:16:16", "2015-06-08 20:16:16", "", "1212", "http://chequerbox.co.za/1212-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1218", "2", "2015-06-10 07:12:12", "2015-06-10 07:12:12", "&lt;a target=\"_blank\" title=\"Visit ChequerBox on Jozikids.co.za\" href=\"http://www.jozikids.co.za/listing/chequerbox\"&gt;&lt;img src=\"http://www.jozikids.co.za/images/jzk_button_100x100.png\" width=\"100\" height=\"100\" border=\"0\" /&gt;&lt;/a&gt;", "Products at a glance", "", "inherit", "open", "open", "", "765-autosave-v1", "", "", "2015-06-10 07:12:12", "2015-06-10 07:12:12", "", "765", "http://chequerbox.co.za/765-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1219", "2", "2015-06-10 07:12:42", "2015-06-10 07:12:42", "&lt;a target=\"_blank\" title=\"Visit ChequerBox on Jozikids.co.za\" href=\"http://www.jozikids.co.za/listing/chequerbox\"&gt;&lt;img src=\"http://www.jozikids.co.za/images/jzk_button_100x100.png\" width=\"100\" height=\"100\" border=\"0\" /&gt;&lt;/a&gt;", "Products at a glance", "", "inherit", "open", "open", "", "765-revision-v1", "", "", "2015-06-10 07:12:42", "2015-06-10 07:12:42", "", "765", "http://chequerbox.co.za/765-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1220", "2", "2015-06-10 07:13:26", "2015-06-10 07:13:26", "", "Products at a glance", "", "inherit", "open", "open", "", "765-revision-v1", "", "", "2015-06-10 07:13:26", "2015-06-10 07:13:26", "", "765", "http://chequerbox.co.za/765-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1221", "2", "2015-06-10 16:14:09", "2015-06-10 16:14:09", "Check out our Winter Wedding Photo Booth Specials!  This special is for rental of a photo booth for weddings from June to August.  Tell your friends:)\r\n\r\nR2800 (including VAT) for two hours photo booth\r\n\r\nIncluded:<span class=\"text_exposed_show\">\r\nPrints for the two hours (two strips per photo booth session)\r\nFun props\r\nWedding guest book\r\nPhoto strip background design\r\nDigital copy\r\nTransport included for Johannesburg &amp; Pretoria\r\n*The location of your venue has to be specified before this special can be confirmed</span>", "Winter Wedding Photo Booth Specials with The PhotoBox", "", "publish", "open", "open", "", "winter-wedding-photo-booth-special-with-the-photobox", "", "", "2015-06-10 16:17:54", "2015-06-10 16:17:54", "", "0", "http://chequerbox.co.za/?p=1221", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1223", "2", "2015-06-10 16:13:17", "2015-06-10 16:13:17", "", "photo booth hire for winter weddings", "", "inherit", "open", "open", "", "copy-of-1-69", "", "", "2015-06-10 16:13:41", "2015-06-10 16:13:41", "", "1221", "http://chequerbox.co.za/wp-content/uploads/2015/06/Copy-of-1-69.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1224", "2", "2015-06-10 16:13:53", "2015-06-10 16:13:53", "Check out or Winter Wedding Special!  This special is for rental of a photo booth for weddings from June to August.  Tell your friends:)\r\n\r\nR2800 (including VAT) for two hours photo booth\r\n\r\nIncluded:<span class=\"text_exposed_show\">\r\nPrints for the two hours (two strips per photo booth session)\r\nFun props\r\nWedding guest book\r\nPhoto strip background design\r\nDigital copy\r\nTransport included for Johannesburg &amp; Pretoria\r\n*The location of your venue has to be specified before this special can be confirmed</span>", "Winter Wedding Photo Booth Special with The PhotoBox", "", "inherit", "open", "open", "", "1221-revision-v1", "", "", "2015-06-10 16:13:53", "2015-06-10 16:13:53", "", "1221", "http://chequerbox.co.za/1221-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1225", "2", "2015-06-10 16:16:53", "2015-06-10 16:16:53", "Check out or Winter Wedding Special!  This special is for rental of a photo booth for weddings from June to August.  Tell your friends:)\n\nR2800 (including VAT) for two hours photo booth\n\nIncluded:<span class=\"text_exposed_show\">\nPrints for the two hours (two strips per photo booth session)\nFun props\nWedding guest book\nPhoto strip background design\nDigital copy\nTransport included for Johannesburg &amp; Pretoria\n*The location of your venue has to be specified before this special can be confirmed</span>", "Winter Wedding Photo Booth Specials with The PhotoBox", "", "inherit", "open", "open", "", "1221-autosave-v1", "", "", "2015-06-10 16:16:53", "2015-06-10 16:16:53", "", "1221", "http://chequerbox.co.za/1221-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1226", "2", "2015-06-10 16:17:54", "2015-06-10 16:17:54", "Check out our Winter Wedding Photo Booth Specials!  This special is for rental of a photo booth for weddings from June to August.  Tell your friends:)\r\n\r\nR2800 (including VAT) for two hours photo booth\r\n\r\nIncluded:<span class=\"text_exposed_show\">\r\nPrints for the two hours (two strips per photo booth session)\r\nFun props\r\nWedding guest book\r\nPhoto strip background design\r\nDigital copy\r\nTransport included for Johannesburg &amp; Pretoria\r\n*The location of your venue has to be specified before this special can be confirmed</span>", "Winter Wedding Photo Booth Specials with The PhotoBox", "", "inherit", "open", "open", "", "1221-revision-v1", "", "", "2015-06-10 16:17:54", "2015-06-10 16:17:54", "", "1221", "http://chequerbox.co.za/1221-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1227", "2", "2015-06-11 10:31:56", "2015-06-11 10:31:56", "", "new photo booth", "", "inherit", "open", "open", "", "new-photo-booth-2", "", "", "2015-06-11 10:33:20", "2015-06-11 10:33:20", "", "783", "http://chequerbox.co.za/wp-content/uploads/2015/06/new-photo-booth.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1229", "2", "2015-06-24 09:48:22", "2015-06-24 09:48:22", "ChequerBox (Pty) Ltd  offers a range of products and services ‘boxed’, ranging from photo booths and other event photography, baby medical kits, novel wedding kits and coroporate vending machines.  The common thread among the various solutions offered by ChequerBox is the strong focus on quality and value offered to clients.  We aim to please…\n\n&nbsp;\n\n&nbsp;\n<h2><a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Joleen_small.jpg\"><img class=\"alignnone size-full wp-image-1234\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Joleen_small.jpg\" alt=\"Joleen_small\" width=\"135\" height=\"203\" /></a>Founder and Director – Joleen Eden</h2>\nThe company’s founder, Joleen Matthee, graduated with a Communications Management degree from Tuks and later completed her honours in Marketing at Wits University.  Her work experience ranged from sales and trade marketing to more recently marketing research with a strong focus on brand equity and copy testing.\n\n&nbsp;\n<h2> <a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Jet_small.jpg\"><img class=\"alignnone size-full wp-image-1233\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Jet_small.jpg\" alt=\"Jet_small\" width=\"135\" height=\"203\" /></a>Partner – Jethran Matthee</h2>\nJet is a silent partner with all the technical knowhow and savvy to give CheqeuerBox the edge.  Jet operates as a project engineer by day, however it doesn’t stop there.  He’s a keen pilot of small aircrafts and quite the IT specialist.", "About Us", "", "inherit", "open", "open", "", "783-autosave-v1", "", "", "2015-06-24 09:48:22", "2015-06-24 09:48:22", "", "783", "http://chequerbox.co.za/783-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1232", "1", "2015-06-23 18:22:23", "2015-06-23 18:22:23", "<h3>Sandton Office</h3>\r\nSunninghill\r\nGauteng\r\nSouth Africa\r\n\r\nTel: +27 72 375 6254\r\n\r\nEmail: <a href=\"mailto:info@chequerbox.co.za\">info@chequerbox.co.za</a>\r\n\r\n[vfb id=3]", "Contact Us", "", "inherit", "open", "open", "", "789-revision-v1", "", "", "2015-06-23 18:22:23", "2015-06-23 18:22:23", "", "789", "http://chequerbox.co.za/789-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1233", "2", "2015-06-24 09:13:04", "2015-06-24 09:13:04", "", "Jet_small", "", "inherit", "open", "open", "", "jet_small", "", "", "2015-06-24 09:35:27", "2015-06-24 09:35:27", "", "783", "http://chequerbox.co.za/wp-content/uploads/2015/06/Jet_small.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1234", "2", "2015-06-24 09:13:06", "2015-06-24 09:13:06", "", "Joleen_small", "", "inherit", "open", "open", "", "joleen_small", "", "", "2015-06-24 09:34:24", "2015-06-24 09:34:24", "", "783", "http://chequerbox.co.za/wp-content/uploads/2015/06/Joleen_small.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1235", "2", "2015-06-24 09:44:25", "2015-06-24 09:44:25", "ChequerBox (Pty) Ltd  offers a range of products and services ‘boxed’, ranging from photo booths and other event photography, baby medical kits, novel wedding kits and coroporate vending machines.  The common thread among the various solutions offered by ChequerBox is the strong focus on quality and value offered to clients.  We aim to please…\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-1234 alignleft\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Joleen_small.jpg\" alt=\"Joleen_small\" width=\"135\" height=\"203\" />\r\n<h2> Founder and Director – Joleen Eden</h2>\r\nThe company’s founder, Joleen Eden, graduated with a Communications Management degree from Tuks and later completed her honours in Marketing at Wits University.        Her work experience ranged from sales and trade marketing to more recently marketing research with a strong focus on brand equity and copy testing.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2>\r\n<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Jet_small.jpg\"><img class=\" size-full wp-image-1233 alignleft\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Jet_small.jpg\" alt=\"Jet_small\" width=\"135\" height=\"203\" /></a>Partner – Jethran Matthee</h2>\r\nJet is a silent partner with all the technical knowhow and savvy to give CheqeuerBox the edge.  Jet operates as a mechanical project engineer by day, however it doesn’t stop        there.  He’s a keen pilot of small aircrafts and quite the IT specialist.", "About Us", "", "inherit", "open", "open", "", "783-revision-v1", "", "", "2015-06-24 09:44:25", "2015-06-24 09:44:25", "", "783", "http://chequerbox.co.za/783-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1236", "2", "2015-06-24 09:47:16", "2015-06-24 09:47:16", "ChequerBox (Pty) Ltd  offers a range of products and services ‘boxed’, ranging from photo booths and other event photography, baby medical kits, novel wedding kits and coroporate vending machines.  The common thread among the various solutions offered by ChequerBox is the strong focus on quality and value offered to clients.  We aim to please…\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Joleen_small.jpg\"><img class=\"alignnone size-full wp-image-1234\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Joleen_small.jpg\" alt=\"Joleen_small\" width=\"135\" height=\"203\" /></a>Founder and Director – Joleen Eden</h2>\r\nThe company’s founder, Joleen Eden, graduated with a Communications Management degree from Tuks and later completed her honours in Marketing at Wits University.        Her work experience ranged from sales and trade marketing to more recently marketing research with a strong focus on brand equity and copy testing.\r\n\r\n&nbsp;\r\n<h2> <a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Jet_small.jpg\"><img class=\"alignnone size-full wp-image-1233\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Jet_small.jpg\" alt=\"Jet_small\" width=\"135\" height=\"203\" /></a>Partner – Jethran Matthee</h2>\r\nJet is a silent partner with all the technical knowhow and savvy to give CheqeuerBox the edge.  Jet operates as a mechanical project engineer by day, however it doesn’t stop        there.  He’s a keen pilot of small aircrafts and quite the IT specialist.", "About Us", "", "inherit", "open", "open", "", "783-revision-v1", "", "", "2015-06-24 09:47:16", "2015-06-24 09:47:16", "", "783", "http://chequerbox.co.za/783-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1237", "2", "2015-06-24 09:48:25", "2015-06-24 09:48:25", "ChequerBox (Pty) Ltd  offers a range of products and services ‘boxed’, ranging from photo booths and other event photography, baby medical kits, novel wedding kits and coroporate vending machines.  The common thread among the various solutions offered by ChequerBox is the strong focus on quality and value offered to clients.  We aim to please…\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Joleen_small.jpg\"><img class=\"alignnone size-full wp-image-1234\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Joleen_small.jpg\" alt=\"Joleen_small\" width=\"135\" height=\"203\" /></a>Founder and Director – Joleen Eden</h2>\r\nThe company’s founder, Joleen Matthee, graduated with a Communications Management degree from Tuks and later completed her honours in Marketing at Wits University.  Her work experience ranged from sales and trade marketing to more recently marketing research with a strong focus on brand equity and copy testing.\r\n\r\n&nbsp;\r\n<h2> <a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Jet_small.jpg\"><img class=\"alignnone size-full wp-image-1233\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Jet_small.jpg\" alt=\"Jet_small\" width=\"135\" height=\"203\" /></a>Partner – Jethran Matthee</h2>\r\nJet is a silent partner with all the technical knowhow and savvy to give CheqeuerBox the edge.  Jet operates as a project engineer by day, however it doesn’t stop there.  He’s a keen pilot of small aircrafts and quite the IT specialist.", "About Us", "", "inherit", "open", "open", "", "783-revision-v1", "", "", "2015-06-24 09:48:25", "2015-06-24 09:48:25", "", "783", "http://chequerbox.co.za/783-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1238", "2", "2015-06-24 09:48:37", "2015-06-24 09:48:37", "ChequerBox (Pty) Ltd  offers a range of products and services ‘boxed’, ranging from photo booths and other event photography, baby medical kits, novel wedding kits and coroporate vending machines.  The common thread among the various solutions offered by ChequerBox is the strong focus on quality and value offered to clients.  We aim to please…\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Joleen_small.jpg\"><img class=\"alignnone size-full wp-image-1234\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Joleen_small.jpg\" alt=\"Joleen_small\" width=\"135\" height=\"203\" /></a>Founder and Director – Joleen Matthee</h2>\r\nThe company’s founder, Joleen Matthee, graduated with a Communications Management degree from Tuks and later completed her honours in Marketing at Wits University.  Her work experience ranged from sales and trade marketing to more recently marketing research with a strong focus on brand equity and copy testing.\r\n\r\n&nbsp;\r\n<h2> <a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Jet_small.jpg\"><img class=\"alignnone size-full wp-image-1233\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/Jet_small.jpg\" alt=\"Jet_small\" width=\"135\" height=\"203\" /></a>Partner – Jethran Matthee</h2>\r\nJet is a silent partner with all the technical knowhow and savvy to give CheqeuerBox the edge.  Jet operates as a project engineer by day, however it doesn’t stop there.  He’s a keen pilot of small aircrafts and quite the IT specialist.", "About Us", "", "inherit", "open", "open", "", "783-revision-v1", "", "", "2015-06-24 09:48:37", "2015-06-24 09:48:37", "", "783", "http://chequerbox.co.za/783-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1239", "2", "2015-06-24 09:55:16", "2015-06-24 09:55:16", "Social Booth, hashtag printer", "SocialBooth / HashtagPrinter", "", "inherit", "open", "open", "", "socialbooth", "", "", "2015-06-24 09:57:08", "2015-06-24 09:57:08", "", "1060", "http://chequerbox.co.za/wp-content/uploads/2015/06/SocialBooth.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1240", "2", "2015-07-06 14:33:38", "2015-07-06 14:33:38", "<h2>ChequerBox introduces SocialBox – our new hashtag printer</h2>\nWith the phenomenon of selfies, a lot of photos are taken and shared on social media sites using mobile devices.  Why not utilise these uniquely captured moments for your brand and create another engaging experience for your customer via our new hashtag printer\n<h3>How it works:</h3>\nChequerBox SocialBox is a hashtag printer that allows you to crowdsource your event photos.  Pick a hashtag for your event and tell your guests to tag their photos when they upload them to Instagram and Twitter.  ChequerBox SocialBox will monitor these platforms for photos matching the hashtag and will automatically download them.  Your guests can then visit the hashtag printer station, find the photos that they have uploaded a then choose to print a branded copy.\n<h3><a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/SocialBooth.jpg\"><img class=\"aligncenter  wp-image-1239\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/SocialBooth.jpg\" alt=\"SocialBooth / HashtagPrinter\" width=\"2241\" height=\"1022\" /></a></h3>\n<h3>Three easy steps:</h3>\n<ol>\n	<li>Take a photo</li>\n</ol>\nTake a photo using your mobile phone\n<ol start=\"2\">\n	<li>Hashtag</li>\n</ol>\nUpload the image to Instagram or Twitter using the unique hashtag\n<ol start=\"3\">\n	<li>Print</li>\n</ol>\nVisit the hashtag printer station, select your image on the screen and print", "SocialBox Hashtag Printer", "", "inherit", "open", "open", "", "1060-autosave-v1", "", "", "2015-07-06 14:33:38", "2015-07-06 14:33:38", "", "1060", "http://chequerbox.co.za/1060-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1241", "2", "2015-06-24 09:57:55", "2015-06-24 09:57:55", "<h2>ChequerBox introduces The Social Booth – a social media printing station.</h2>\r\nWith the phenomenon of selfies, a lot of photos are taken and shared on social media sites using mobile devices.  Why not utilise these uniquely captured moments for your brand and create another engaging experience for your customer.\r\n<h3>How it works:</h3>\r\nChequerBox Social Booth allows you to crowdsource your event photos.  Pick a hashtag for your event and tell your guests to tag their photos when they upload them to Instagram and Twitter.  ChequerBox Social Booth will monitor these platforms for photos matching the hashtag and will automatically download them.  Your guests can then visit the social media printing station, find the photos that they have uploaded a then choose to print a branded copy.\r\n<h3><a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/SocialBooth.jpg\"><img class=\"aligncenter size-full wp-image-1239\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/SocialBooth.jpg\" alt=\"SocialBooth / HashtagPrinter\" width=\"2000\" height=\"816\" /></a></h3>\r\n<h3>Three easy steps:</h3>\r\n<ol>\r\n	<li>Take a photo</li>\r\n</ol>\r\nTake a photo using your mobile phone\r\n<ol start=\"2\">\r\n	<li>Hashtag</li>\r\n</ol>\r\nUpload the image to Instagram or Twitter using the unique hashtag\r\n<ol start=\"3\">\r\n	<li>Print</li>\r\n</ol>\r\nVisit the social printing station, select your image on the screen and print", "Social Booths", "", "inherit", "open", "open", "", "1060-revision-v1", "", "", "2015-06-24 09:57:55", "2015-06-24 09:57:55", "", "1060", "http://chequerbox.co.za/1060-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1242", "2", "2015-06-24 09:58:53", "2015-06-24 09:58:53", "<h2>ChequerBox introduces The Social Booth – a social media printing station.</h2>\r\nWith the phenomenon of selfies, a lot of photos are taken and shared on social media sites using mobile devices.  Why not utilise these uniquely captured moments for your brand and create another engaging experience for your customer.\r\n<h3>How it works:</h3>\r\nChequerBox Social Booth allows you to crowdsource your event photos.  Pick a hashtag for your event and tell your guests to tag their photos when they upload them to Instagram and Twitter.  ChequerBox Social Booth will monitor these platforms for photos matching the hashtag and will automatically download them.  Your guests can then visit the social media printing station, find the photos that they have uploaded a then choose to print a branded copy.\r\n<h3><a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/SocialBooth.jpg\"><img class=\"aligncenter  wp-image-1239\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/SocialBooth.jpg\" alt=\"SocialBooth / HashtagPrinter\" width=\"2241\" height=\"1022\" /></a></h3>\r\n<h3>Three easy steps:</h3>\r\n<ol>\r\n	<li>Take a photo</li>\r\n</ol>\r\nTake a photo using your mobile phone\r\n<ol start=\"2\">\r\n	<li>Hashtag</li>\r\n</ol>\r\nUpload the image to Instagram or Twitter using the unique hashtag\r\n<ol start=\"3\">\r\n	<li>Print</li>\r\n</ol>\r\nVisit the social printing station, select your image on the screen and print", "Social Booths", "", "inherit", "open", "open", "", "1060-revision-v1", "", "", "2015-06-24 09:58:53", "2015-06-24 09:58:53", "", "1060", "http://chequerbox.co.za/1060-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1243", "2", "2015-06-29 09:00:52", "2015-06-29 09:00:52", "<h2>ChequerBox introduces SocialBox – our new hashtag printer.</h2>\r\nWith the phenomenon of selfies, a lot of photos are taken and shared on social media sites using mobile devices.  Why not utilise these uniquely captured moments for your brand and create another engaging experience for your customer via our new hashtag printer\r\n<h3>How it works:</h3>\r\nChequerBox SocialBox allows you to crowdsource your event photos.  Pick a hashtag for your event and tell your guests to tag their photos when they upload them to Instagram and Twitter.  ChequerBox SocialBox will monitor these platforms for photos matching the hashtag and will automatically download them.  Your guests can then visit the social media printing station, find the photos that they have uploaded a then choose to print a branded copy.\r\n<h3><a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/SocialBooth.jpg\"><img class=\"aligncenter  wp-image-1239\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/SocialBooth.jpg\" alt=\"SocialBooth / HashtagPrinter\" width=\"2241\" height=\"1022\" /></a></h3>\r\n<h3>Three easy steps:</h3>\r\n<ol>\r\n	<li>Take a photo</li>\r\n</ol>\r\nTake a photo using your mobile phone\r\n<ol start=\"2\">\r\n	<li>Hashtag</li>\r\n</ol>\r\nUpload the image to Instagram or Twitter using the unique hashtag\r\n<ol start=\"3\">\r\n	<li>Print</li>\r\n</ol>\r\nVisit the social printing station, select your image on the screen and print", "SocialBox Hashtag Printer", "", "inherit", "open", "open", "", "1060-revision-v1", "", "", "2015-06-29 09:00:52", "2015-06-29 09:00:52", "", "1060", "http://chequerbox.co.za/1060-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1246", "2", "2015-07-06 14:38:21", "2015-07-06 14:38:21", "&nbsp;\n\n<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\"><img class=\"aligncenter wp-image-1176 size-full\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\" alt=\"traditional photo booth\" width=\"700\" height=\"456\" /></a>\n<h3>Traditional Photobooths</h3>\nA traditional photobooth remains great fun for any party, wedding or corporate function.  There is something about getting dressed up with silly or cute props and getting into a photobooth to have some fun.  This is the perfect ice breaker for any event.\n\nChequerBox offers The PhotoBox, a traditional photobooth that can be assembled at any party or event and instantly prints a traditional photo strip or postcard size photo with custom design.  We also have a touch screen for ease of use that displays a live view so that you can view the photos before they are printed.  Our photobooth includes the option to select between colour, black and white or sepia photo styles.  We always have assistants with our photobooth to ensure a smooth but fun process for everyone.  A digital copy of all photos will be made available to you after the event.\n<h3>Weddings</h3>\nThe PhotoBox photobooth hire is the perfect ice breaker for any wedding and you can use the photo strips as a wedding favor.  We bring along small magnets that we hand out to each guest with their first set of photos.  We also include a wedding guest book and encourage your guests to add some of their copies to the book along with hand-written messages.  A digital copy of all photos is given to you after the event.\n<h3>Corporate Events</h3>\nThe PhotoBox photobooth can be branded for your corporate event along with the photo background.  We can incorporate your logo on the live-display monitor inside the booth to leverage every branding opportunity for your event as well as automatically upload to your Facebook profile.  After each event a copy of all the digital photos is made available for your use.  Enquire about large screen displays for your event or custom props.\n<h3><strong>Gallery:</strong></h3>\n[gallery link=\"file\" size=\"medium\" ids=\"1129,1130,1131,1132,1133,1134,1135,1136,1137,1128,1138,1139,1140,1141\"]", "Traditional PhotoBooth", "", "inherit", "open", "open", "", "850-autosave-v1", "", "", "2015-07-06 14:38:21", "2015-07-06 14:38:21", "", "850", "http://chequerbox.co.za/850-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1247", "2", "2015-07-06 14:09:22", "2015-07-06 14:09:22", "&nbsp;\r\n\r\n<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\"><img class=\"aligncenter wp-image-1176 size-full\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\" alt=\"traditional photo booth\" width=\"700\" height=\"456\" /></a>\r\n\r\nTraditional photobooths remains great fun for any party, wedding or corporate function.  There is something about getting dressed up with silly or cute props and getting into an enclosed photo box to have some fun.  This is the perfect ice breaker for any event.\r\n\r\nChequerBox offers The PhotoBox, a traditional photobooth that can be assembled at any party or event and instantly prints a traditional photo strip or postcard size photo with custom design.  We also have a touch screen for ease of use that displays a live view so that you can view the photos before they are printed.  There is the option to select between colour, black and white or sepia photo styles.  We always have assistants with our photo booths to ensure a smooth but fun process for everyone.  A digital copy of all photos will be made available to you after the event.\r\n<h3>Weddings</h3>\r\nThe PhotoBox photobooth hire is the perfect ice breaker for any wedding and you can use the photo strips as a wedding favor.  We bring along small magnets that we hand out to each guest with their first set of photos.  We also include a wedding guest book and encourage your guests to add some of their copies to the book along with hand-written messages.  A digital copy of all photos is given to you after the event\r\n<h3>Corporate Events</h3>\r\nThe PhotoBox can be branded for your corporate event along with the photo background.  We can incorporate your logo on the live-display monitor inside the booth to leverage every branding opportunity for your event as well as automatically upload to your Facebook profile.  After each event a copy of all the digital photos is made available for your use.  Enquire about large screen displays for your event or custom props.\r\n<h3><strong>Gallery:</strong></h3>\r\n[gallery link=\"file\" size=\"medium\" ids=\"1129,1130,1131,1132,1133,1134,1135,1136,1137,1128,1138,1139,1140,1141\"]", "Traditional Photobooths", "", "inherit", "open", "open", "", "850-revision-v1", "", "", "2015-07-06 14:09:22", "2015-07-06 14:09:22", "", "850", "http://chequerbox.co.za/850-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1248", "2", "2015-07-06 14:29:55", "2015-07-06 14:29:55", "<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\"><img class=\"aligncenter wp-image-1175 size-full\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\" alt=\"GreenScreen\" width=\"700\" height=\"456\" /></a>\n\n&nbsp;\n<h3>Why have a green screen photobooth?</h3>\nA green screen photobooth includes all the fun of a traditional photo booth, but now you can have different digital backgrounds instead of the standard backdrop.  Why not have some crazy fun with a PhotoBox Green Screen Photobooth (open) and create the ultimate memories for your event.\n\n&nbsp;\n<h3>How it works:</h3>\nA PhotoBox Green Screen Photobooth includes a green backdrop , a touch screen pc, camera and stand - so that is why we call it an \'open\' photo booth.  Along with your input, we select digital backgrounds that will suit your event’s theme.  Custom backgrounds can be designed to suit your needs, along with branding of photos.  Photos are printed immediately\n\nWe setup a green screen photobooth backdrop with a touch screen that displays the various backgrounds and a live view so that you can interact with the chosen background.  Now it works just like a photobooth: press start, wait for the count down, snap, print!\n<h3><strong>Gallery:</strong></h3>\n[gallery columns=\"2\" size=\"medium\" link=\"file\" ids=\"1114,1115,1116,1117,1118,1119,1120,1121,1122,1123\"]", "Green Screen Photobooth", "", "inherit", "open", "open", "", "1093-autosave-v1", "", "", "2015-07-06 14:29:55", "2015-07-06 14:29:55", "", "1093", "http://chequerbox.co.za/1093-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1249", "2", "2015-07-06 14:12:02", "2015-07-06 14:12:02", "<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\"><img class=\"aligncenter wp-image-1175 size-full\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\" alt=\"GreenScreen\" width=\"700\" height=\"456\" /></a>\r\n\r\nLooking for something different from a traditional photobooth?  Why not have some crazy fun with a ChequerBox Green Screen Open Photobooth and create the ultimate memories for your event.\r\n<h3>How it works:</h3>\r\nAlong with your input, we select digital backgrounds that will suit your event’s theme.  Custom backgrounds can be designed to suit your needs, along with branding of photos.\r\n\r\nWe setup a green screen backdrop with a touch screen that displays the various backgrounds and a live view so that you can interact with the chosen background.  Now it works just like a photobooth: press start, wait for the count down, snap, print!\r\n<h3><strong>Gallery:</strong></h3>\r\n[gallery columns=\"2\" size=\"medium\" link=\"file\" ids=\"1114,1115,1116,1117,1118,1119,1120,1121,1122,1123\"]", "Green Screen Open Photobooth", "", "inherit", "open", "open", "", "1093-revision-v1", "", "", "2015-07-06 14:12:02", "2015-07-06 14:12:02", "", "1093", "http://chequerbox.co.za/1093-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1250", "2", "2015-07-06 14:16:01", "2015-07-06 14:16:01", "&nbsp;\r\n\r\n<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\"><img class=\"aligncenter wp-image-1176 size-full\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\" alt=\"traditional photo booth\" width=\"700\" height=\"456\" /></a>\r\n\r\nTraditional photobooths remains great fun for any party, wedding or corporate function.  There is something about getting dressed up with silly or cute props and getting into an enclosed photo box to have some fun.  This is the perfect ice breaker for any event.\r\n\r\nChequerBox offers The PhotoBox, a traditional photobooth that can be assembled at any party or event and instantly prints a traditional photo strip or postcard size photo with custom design.  We also have a touch screen for ease of use that displays a live view so that you can view the photos before they are printed.  There is the option to select between colour, black and white or sepia photo styles.  We always have assistants with our photo booths to ensure a smooth but fun process for everyone.  A digital copy of all photos will be made available to you after the event.\r\n<h3>Weddings</h3>\r\nThe PhotoBox photobooth hire is the perfect ice breaker for any wedding and you can use the photo strips as a wedding favor.  We bring along small magnets that we hand out to each guest with their first set of photos.  We also include a wedding guest book and encourage your guests to add some of their copies to the book along with hand-written messages.  A digital copy of all photos is given to you after the event\r\n<h3>Corporate Events</h3>\r\nThe PhotoBox can be branded for your corporate event along with the photo background.  We can incorporate your logo on the live-display monitor inside the booth to leverage every branding opportunity for your event as well as automatically upload to your Facebook profile.  After each event a copy of all the digital photos is made available for your use.  Enquire about large screen displays for your event or custom props.\r\n<h3><strong>Gallery:</strong></h3>\r\n[gallery link=\"file\" size=\"medium\" ids=\"1129,1130,1131,1132,1133,1134,1135,1136,1137,1128,1138,1139,1140,1141\"]", "Traditional Photobooth", "", "inherit", "open", "open", "", "850-revision-v1", "", "", "2015-07-06 14:16:01", "2015-07-06 14:16:01", "", "850", "http://chequerbox.co.za/850-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1251", "2", "2015-07-06 14:18:14", "2015-07-06 14:18:14", "<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\"><img class=\"aligncenter wp-image-1175 size-full\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\" alt=\"GreenScreen\" width=\"700\" height=\"456\" /></a>\r\n\r\nLooking for something different from a traditional photobooth?  Why not have some crazy fun with a ChequerBox Green Screen Photobooth (open) and create the ultimate memories for your event.\r\n<h3>How it works:</h3>\r\nAlong with your input, we select digital backgrounds that will suit your event’s theme.  Custom backgrounds can be designed to suit your needs, along with branding of photos.\r\n\r\nWe setup a green screen backdrop with a touch screen that displays the various backgrounds and a live view so that you can interact with the chosen background.  Now it works just like a photobooth: press start, wait for the count down, snap, print!\r\n<h3><strong>Gallery:</strong></h3>\r\n[gallery columns=\"2\" size=\"medium\" link=\"file\" ids=\"1114,1115,1116,1117,1118,1119,1120,1121,1122,1123\"]", "Green Screen Photobooth", "", "inherit", "open", "open", "", "1093-revision-v1", "", "", "2015-07-06 14:18:14", "2015-07-06 14:18:14", "", "1093", "http://chequerbox.co.za/1093-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1252", "2", "2015-07-06 14:30:56", "2015-07-06 14:30:56", "<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\"><img class=\"aligncenter wp-image-1175 size-full\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/GreenScreen.jpg\" alt=\"GreenScreen\" width=\"700\" height=\"456\" /></a>\r\n\r\n&nbsp;\r\n<h3>Why have a green screen photobooth?</h3>\r\nA green screen photobooth includes all the fun of a traditional photo booth, but now you can have different digital backgrounds instead of the standard backdrop.  Why not have some crazy fun with a PhotoBox Green Screen Photobooth (open) and create the ultimate memories for your event.\r\n\r\n&nbsp;\r\n<h3>How it works:</h3>\r\nA PhotoBox Green Screen Photobooth includes a green backdrop , a touch screen monitor, camera and stand - so that is why we call it an \'open\' photo booth.  Along with your input, we select digital backgrounds that will suit your event’s theme.  Custom backgrounds can be designed to suit your needs, along with branding of photos.  Photos are printed immediately at your event.\r\n\r\nWe setup a green screen photobooth backdrop with a touch screen that displays the various backgrounds and a live view so that you can interact with the chosen background.  Now it works just like a photobooth: press start, wait for the count down, snap, print!\r\n<h3><strong>Gallery:</strong></h3>\r\n[gallery columns=\"2\" size=\"medium\" link=\"file\" ids=\"1114,1115,1116,1117,1118,1119,1120,1121,1122,1123\"]", "Green Screen Photobooth", "", "inherit", "open", "open", "", "1093-revision-v1", "", "", "2015-07-06 14:30:56", "2015-07-06 14:30:56", "", "1093", "http://chequerbox.co.za/1093-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1253", "2", "2015-07-06 14:33:45", "2015-07-06 14:33:45", "<h2>ChequerBox introduces SocialBox – our new hashtag printer</h2>\r\nWith the phenomenon of selfies, a lot of photos are taken and shared on social media sites using mobile devices.  Why not utilise these uniquely captured moments for your brand and create another engaging experience for your customer via our new hashtag printer\r\n<h3>How it works:</h3>\r\nChequerBox SocialBox is a hashtag printer that allows you to crowdsource your event photos.  Pick a hashtag for your event and tell your guests to tag their photos when they upload them to Instagram and Twitter.  ChequerBox SocialBox will monitor these platforms for photos matching the hashtag and will automatically download them.  Your guests can then visit the hashtag printer station, find the photos that they have uploaded a then choose to print a branded copy.\r\n<h3><a href=\"http://chequerbox.co.za/wp-content/uploads/2015/06/SocialBooth.jpg\"><img class=\"aligncenter  wp-image-1239\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/06/SocialBooth.jpg\" alt=\"SocialBooth / HashtagPrinter\" width=\"2241\" height=\"1022\" /></a></h3>\r\n<h3>Three easy steps:</h3>\r\n<ol>\r\n	<li>Take a photo</li>\r\n</ol>\r\nTake a photo using your mobile phone\r\n<ol start=\"2\">\r\n	<li>Hashtag</li>\r\n</ol>\r\nUpload the image to Instagram or Twitter using the unique hashtag\r\n<ol start=\"3\">\r\n	<li>Print</li>\r\n</ol>\r\nVisit the hashtag printer station, select your image on the screen and print", "SocialBox Hashtag Printer", "", "inherit", "open", "open", "", "1060-revision-v1", "", "", "2015-07-06 14:33:45", "2015-07-06 14:33:45", "", "1060", "http://chequerbox.co.za/1060-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1254", "2", "2015-07-06 14:36:59", "2015-07-06 14:36:59", "&nbsp;\r\n\r\n<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\"><img class=\"aligncenter wp-image-1176 size-full\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\" alt=\"traditional photo booth\" width=\"700\" height=\"456\" /></a>\r\n\r\nA traditional photobooth remains great fun for any party, wedding or corporate function.  There is something about getting dressed up with silly or cute props and getting into a photobooth to have some fun.  This is the perfect ice breaker for any event.\r\n\r\nChequerBox offers The PhotoBox, a traditional photobooth that can be assembled at any party or event and instantly prints a traditional photo strip or postcard size photo with custom design.  We also have a touch screen for ease of use that displays a live view so that you can view the photos before they are printed.  Our photobooth includes the option to select between colour, black and white or sepia photo styles.  We always have assistants with our photobooth to ensure a smooth but fun process for everyone.  A digital copy of all photos will be made available to you after the event.\r\n<h3>Weddings</h3>\r\nThe PhotoBox photobooth hire is the perfect ice breaker for any wedding and you can use the photo strips as a wedding favor.  We bring along small magnets that we hand out to each guest with their first set of photos.  We also include a wedding guest book and encourage your guests to add some of their copies to the book along with hand-written messages.  A digital copy of all photos is given to you after the event.\r\n<h3>Corporate Events</h3>\r\nThe PhotoBox photobooth can be branded for your corporate event along with the photo background.  We can incorporate your logo on the live-display monitor inside the booth to leverage every branding opportunity for your event as well as automatically upload to your Facebook profile.  After each event a copy of all the digital photos is made available for your use.  Enquire about large screen displays for your event or custom props.\r\n<h3><strong>Gallery:</strong></h3>\r\n[gallery link=\"file\" size=\"medium\" ids=\"1129,1130,1131,1132,1133,1134,1135,1136,1137,1128,1138,1139,1140,1141\"]", "Traditional PhotoBooth", "", "inherit", "open", "open", "", "850-revision-v1", "", "", "2015-07-06 14:36:59", "2015-07-06 14:36:59", "", "850", "http://chequerbox.co.za/850-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1255", "2", "2015-07-06 14:38:44", "2015-07-06 14:38:44", "&nbsp;\r\n\r\n<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\"><img class=\"aligncenter wp-image-1176 size-full\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/03/traditional-photo-booth.jpg\" alt=\"traditional photo booth\" width=\"700\" height=\"456\" /></a>\r\n<h3>Traditional Photobooths</h3>\r\nA traditional photobooth remains great fun for any party, wedding or corporate function.  There is something about getting dressed up with silly or cute props and getting into a photobooth to have some fun.  This is the perfect ice breaker for any event.\r\n\r\nChequerBox offers The PhotoBox, a traditional photobooth that can be assembled at any party or event and instantly prints a traditional photo strip or postcard size photo with custom design.  We also have a touch screen for ease of use that displays a live view so that you can view the photos before they are printed.  Our photobooth includes the option to select between colour, black and white or sepia photo styles.  We always have assistants with our photobooth to ensure a smooth but fun process for everyone.  A digital copy of all photos will be made available to you after the event.\r\n<h3>Weddings</h3>\r\nThe PhotoBox photobooth hire is the perfect ice breaker for any wedding and you can use the photo strips as a wedding favor.  We bring along small magnets that we hand out to each guest with their first set of photos.  We also include a wedding guest book and encourage your guests to add some of their copies to the book along with hand-written messages.  A digital copy of all photos is given to you after the event.\r\n<h3>Corporate Events</h3>\r\nThe PhotoBox photobooth can be branded for your corporate event along with the photo background.  We can incorporate your logo on the live-display monitor inside the booth to leverage every branding opportunity for your event as well as automatically upload to your Facebook profile.  After each event a copy of all the digital photos is made available for your use.  Enquire about large screen displays for your event or custom props.\r\n<h3><strong>Gallery:</strong></h3>\r\n[gallery link=\"file\" size=\"medium\" ids=\"1129,1130,1131,1132,1133,1134,1135,1136,1137,1128,1138,1139,1140,1141\"]", "Traditional PhotoBooth", "", "inherit", "open", "open", "", "850-revision-v1", "", "", "2015-07-06 14:38:44", "2015-07-06 14:38:44", "", "850", "http://chequerbox.co.za/850-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1258", "2", "2015-07-15 13:23:18", "2015-07-15 13:23:18", "<blockquote>\r\n<p style=\"text-align: left;\"><strong>Pretty cute photobooth strips when you hire a ChequerBox - The PhotoBox photobooth</strong></p>\r\n</blockquote>\r\nWe just love these cute pink photobooth strip designs made by our graphic designer Nicol for René and Mila\'s 14th birthday party.\r\n\r\nWe here at ChequerBox love party themes and when you hire a photobooth from The PhotoBox we especially design a photobooth strip to match your party colours / theme.<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/07/150714_203202.jpg\">\r\n</a>\r\n\r\n<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/07/ReneMilaBirthday_Options.jpg\"><img class=\"aligncenter size-large wp-image-1260\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/07/ReneMilaBirthday_Options-1024x724.jpg\" alt=\"photobooth strips\" width=\"750\" height=\"530\" /></a>", "Pretty Photobooth Strip", "", "publish", "open", "open", "", "pretty-photobooth-strip", "", "", "2015-07-15 13:23:18", "2015-07-15 13:23:18", "", "0", "http://chequerbox.co.za/?p=1258", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1260", "2", "2015-07-15 13:18:55", "2015-07-15 13:18:55", "", "ReneMilaBirthday_Options", "", "inherit", "open", "open", "", "renemilabirthday_options", "", "", "2015-07-15 13:19:17", "2015-07-15 13:19:17", "", "1258", "http://chequerbox.co.za/wp-content/uploads/2015/07/ReneMilaBirthday_Options.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1261", "2", "2015-07-15 13:22:27", "2015-07-15 13:22:27", "<blockquote>\r\n<p style=\"text-align: left;\"><strong>Pretty cute photobooth strips when you hire a ChequerBox - The PhotoBox photobooth</strong></p>\r\n</blockquote>\r\nWe just love these cute pink photobooth strip designs made by our graphic designer Nicol for René and Mila\'s 14th birthday party.\r\n\r\nWe here at ChequerBox love party themes and when you hire a PhotoBox photobooth we especially design a photobooth strip to match your party colours / theme.<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/07/150714_203202.jpg\">\r\n</a>\r\n\r\n<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/07/ReneMilaBirthday_Options.jpg\"><img class=\"aligncenter size-large wp-image-1260\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/07/ReneMilaBirthday_Options-1024x724.jpg\" alt=\"photobooth strips\" width=\"750\" height=\"530\" /></a>", "Pretty Photobooth Strip", "", "inherit", "open", "open", "", "1258-revision-v1", "", "", "2015-07-15 13:22:27", "2015-07-15 13:22:27", "", "1258", "http://chequerbox.co.za/1258-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1262", "2", "2015-07-15 13:23:18", "2015-07-15 13:23:18", "<blockquote>\r\n<p style=\"text-align: left;\"><strong>Pretty cute photobooth strips when you hire a ChequerBox - The PhotoBox photobooth</strong></p>\r\n</blockquote>\r\nWe just love these cute pink photobooth strip designs made by our graphic designer Nicol for René and Mila\'s 14th birthday party.\r\n\r\nWe here at ChequerBox love party themes and when you hire a photobooth from The PhotoBox we especially design a photobooth strip to match your party colours / theme.<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/07/150714_203202.jpg\">\r\n</a>\r\n\r\n<a href=\"http://chequerbox.co.za/wp-content/uploads/2015/07/ReneMilaBirthday_Options.jpg\"><img class=\"aligncenter size-large wp-image-1260\" src=\"http://chequerbox.co.za/wp-content/uploads/2015/07/ReneMilaBirthday_Options-1024x724.jpg\" alt=\"photobooth strips\" width=\"750\" height=\"530\" /></a>", "Pretty Photobooth Strip", "", "inherit", "open", "open", "", "1258-revision-v1", "", "", "2015-07-15 13:23:18", "2015-07-15 13:23:18", "", "1258", "http://chequerbox.co.za/1258-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1263", "2", "2015-07-15 13:37:45", "2015-07-15 13:37:45", "", "Variation #1263 of Shopper Bag", "", "publish", "open", "open", "", "product-822-variation-3", "", "", "2015-07-15 13:37:45", "2015-07-15 13:37:45", "", "822", "http://chequerbox.co.za/product_variation/product-822-variation-3/", "2", "product_variation", "", "0");
INSERT INTO `wp_posts` VALUES("1264", "2", "2015-07-15 13:38:41", "2015-07-15 13:38:41", "", "Variation #1264 of Shopper Bag", "", "publish", "open", "open", "", "product-822-variation-4", "", "", "2015-07-15 13:38:41", "2015-07-15 13:38:41", "", "822", "http://chequerbox.co.za/product_variation/product-822-variation-4/", "3", "product_variation", "", "0");
INSERT INTO `wp_posts` VALUES("1266", "2", "2015-07-15 13:39:54", "2015-07-15 13:39:54", "Pretty handbags by Jenam - a coveted range of bags inspired by floral and natural themes, incorporating European trends to ensure a fashionable yet timeless range of bags.", "Shopper Bag", "(2-3 working day national delivery)", "inherit", "open", "open", "", "822-autosave-v1", "", "", "2015-07-15 13:39:54", "2015-07-15 13:39:54", "", "822", "http://chequerbox.co.za/822-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1269", "1", "2015-10-04 17:40:07", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-10-04 17:40:07", "0000-00-00 00:00:00", "", "0", "http://chequerbox.co.za/?p=1269", "0", "post", "", "0");

/* INSERT TABLE DATA: wp_term_relationships */
INSERT INTO `wp_term_relationships` VALUES("1", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("315", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("315", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("315", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("315", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("468", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("468", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("484", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("484", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("484", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("515", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("515", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("515", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("524", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("524", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("620", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("620", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("626", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("626", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("629", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("629", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("704", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("704", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("704", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("724", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("724", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("742", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("742", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("765", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("769", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("769", "14", "0");
INSERT INTO `wp_term_relationships` VALUES("769", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("781", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("781", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("783", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("787", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("789", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("792", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("792", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("793", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("793", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("794", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("794", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("797", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("798", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("799", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("810", "10", "0");
INSERT INTO `wp_term_relationships` VALUES("810", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("810", "20", "0");
INSERT INTO `wp_term_relationships` VALUES("810", "21", "0");
INSERT INTO `wp_term_relationships` VALUES("810", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("812", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("812", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("812", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("812", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("812", "23", "0");
INSERT INTO `wp_term_relationships` VALUES("812", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("815", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("815", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("817", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("817", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("818", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("820", "10", "0");
INSERT INTO `wp_term_relationships` VALUES("820", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("820", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("820", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("820", "23", "0");
INSERT INTO `wp_term_relationships` VALUES("820", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("821", "10", "0");
INSERT INTO `wp_term_relationships` VALUES("821", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("821", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("821", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("821", "23", "0");
INSERT INTO `wp_term_relationships` VALUES("821", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("822", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("822", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("822", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("822", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("822", "23", "0");
INSERT INTO `wp_term_relationships` VALUES("822", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("833", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("834", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("835", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("835", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("836", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("838", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("840", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("847", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("848", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("850", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("851", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("852", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("852", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("853", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("854", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("855", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("856", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("857", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("858", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("859", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("860", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("861", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("862", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("863", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("864", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("865", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("866", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("867", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("872", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("872", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("872", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("874", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("877", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("878", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("879", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("880", "10", "0");
INSERT INTO `wp_term_relationships` VALUES("880", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("880", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("883", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("884", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("885", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("886", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("887", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("888", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("888", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("889", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("891", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("893", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("895", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("897", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("898", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("899", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("904", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("904", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("905", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("906", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("907", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("907", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("909", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("909", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("910", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("910", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("911", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("911", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("912", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("912", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("913", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("913", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("914", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("914", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("915", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("915", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("919", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("919", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("919", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("925", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("925", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("925", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("931", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("931", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("936", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("936", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("936", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("941", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("941", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("941", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("947", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("947", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("953", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("953", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("958", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("958", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("961", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("961", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("977", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("977", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("978", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("978", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("979", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("979", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("980", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("980", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("981", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("981", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("982", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("982", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("983", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("983", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("991", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("991", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("998", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("998", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("1006", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("1006", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("1017", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("1017", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("1018", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("1019", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("1021", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("1023", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("1024", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("1026", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("1027", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("1029", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("1031", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("1032", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("1033", "24", "0");
INSERT INTO `wp_term_relationships` VALUES("1042", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("1043", "33", "0");
INSERT INTO `wp_term_relationships` VALUES("1049", "34", "0");
INSERT INTO `wp_term_relationships` VALUES("1051", "34", "0");
INSERT INTO `wp_term_relationships` VALUES("1053", "34", "0");
INSERT INTO `wp_term_relationships` VALUES("1055", "34", "0");
INSERT INTO `wp_term_relationships` VALUES("1065", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("1066", "33", "0");
INSERT INTO `wp_term_relationships` VALUES("1069", "33", "0");
INSERT INTO `wp_term_relationships` VALUES("1074", "33", "0");
INSERT INTO `wp_term_relationships` VALUES("1090", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("1095", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("1150", "36", "0");
INSERT INTO `wp_term_relationships` VALUES("1152", "36", "0");
INSERT INTO `wp_term_relationships` VALUES("1154", "36", "0");
INSERT INTO `wp_term_relationships` VALUES("1156", "36", "0");
INSERT INTO `wp_term_relationships` VALUES("1158", "36", "0");
INSERT INTO `wp_term_relationships` VALUES("1207", "9", "0");
INSERT INTO `wp_term_relationships` VALUES("1209", "9", "0");
INSERT INTO `wp_term_relationships` VALUES("1212", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("1212", "35", "0");
INSERT INTO `wp_term_relationships` VALUES("1221", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("1221", "35", "0");
INSERT INTO `wp_term_relationships` VALUES("1258", "4", "0");

/* INSERT TABLE DATA: wp_term_taxonomy */
INSERT INTO `wp_term_taxonomy` VALUES("1", "1", "category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("2", "2", "category", "", "35", "4");
INSERT INTO `wp_term_taxonomy` VALUES("3", "3", "category", "", "35", "6");
INSERT INTO `wp_term_taxonomy` VALUES("4", "4", "category", "", "35", "32");
INSERT INTO `wp_term_taxonomy` VALUES("5", "5", "category", "", "4", "5");
INSERT INTO `wp_term_taxonomy` VALUES("6", "6", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("7", "7", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("8", "8", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("9", "9", "nav_menu", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("10", "10", "product_type", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("11", "11", "product_type", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("12", "12", "product_type", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("13", "13", "product_type", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("14", "14", "product_cat", "The Bobbiyo™ Baby Chair has a flexible inner lining, which moulds to baby’s shape, offering the correct support for developing their pelvic muscles and little backs.", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("15", "15", "nav_menu", "", "0", "14");
INSERT INTO `wp_term_taxonomy` VALUES("16", "16", "ml-slider", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("17", "17", "product_cat", "<strong>Your comprehensive baby medical kit for babies</strong>\r\n\r\nBaby Medi Box is a comprehensive baby medical kit containing basic medical equipment as well as tried and tested over the counter medications and products.  Baby Medi Box is endorsed by Ann Richardson, qualified Nurse and Midwife, co-author of the international bestsellers, Baby Sense; Sleep Senseand author of the international bestseller Toddler Sense.  We have taken the time to ensure that all the essentials are included thereby making life easier for new moms as well as friends/family running out of original gift ideas, thus the perfect baby shower gift.  The kit also includes a booklet that acts as a guideline for new parents on basic baby healthcare.", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("18", "18", "product_cat", "Pretty bags by Jenam", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("19", "19", "product_cat", "Novel wedding day survival kits and bags for brides and bridesmaids ", "0", "6");
INSERT INTO `wp_term_taxonomy` VALUES("20", "20", "product_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("21", "21", "product_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("22", "22", "product_tag", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("23", "23", "product_tag", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("24", "24", "services_categories", "Default Category", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("29", "29", "category", "", "35", "0");
INSERT INTO `wp_term_taxonomy` VALUES("30", "30", "category", "", "29", "0");
INSERT INTO `wp_term_taxonomy` VALUES("31", "31", "category", "", "29", "0");
INSERT INTO `wp_term_taxonomy` VALUES("32", "32", "category", "", "29", "0");
INSERT INTO `wp_term_taxonomy` VALUES("33", "33", "category", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("34", "34", "category", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("35", "35", "category", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("36", "36", "category", "", "0", "5");

/* INSERT TABLE DATA: wp_terms */
INSERT INTO `wp_terms` VALUES("1", "Uncategorized", "uncategorized", "0");
INSERT INTO `wp_terms` VALUES("2", "baby chair", "baby-chair", "0");
INSERT INTO `wp_terms` VALUES("3", "baby medical kit", "baby-medical-kit", "0");
INSERT INTO `wp_terms` VALUES("4", "photo booth", "photo-booth", "0");
INSERT INTO `wp_terms` VALUES("5", "green screen photo booth", "green-screen-photo-booth", "0");
INSERT INTO `wp_terms` VALUES("6", "birthday party fun", "birthday-party-fun", "0");
INSERT INTO `wp_terms` VALUES("7", "photo booth", "photo-booth", "0");
INSERT INTO `wp_terms` VALUES("8", "photo booth wedding", "photo-booth-wedding", "0");
INSERT INTO `wp_terms` VALUES("9", "Footer Menu", "footer-menu", "0");
INSERT INTO `wp_terms` VALUES("10", "simple", "simple", "0");
INSERT INTO `wp_terms` VALUES("11", "grouped", "grouped", "0");
INSERT INTO `wp_terms` VALUES("12", "variable", "variable", "0");
INSERT INTO `wp_terms` VALUES("13", "external", "external", "0");
INSERT INTO `wp_terms` VALUES("14", "Baby Chair", "baby-chair", "0");
INSERT INTO `wp_terms` VALUES("15", "Main Menu", "main-menu", "0");
INSERT INTO `wp_terms` VALUES("16", "800", "800", "0");
INSERT INTO `wp_terms` VALUES("17", "Baby Medi Aid", "baby-medi-aid", "0");
INSERT INTO `wp_terms` VALUES("18", "Bags", "bags-handbags", "0");
INSERT INTO `wp_terms` VALUES("19", "Wedding Box", "wedding-day-kits", "0");
INSERT INTO `wp_terms` VALUES("20", "baby medical kit", "baby-medical-kit", "0");
INSERT INTO `wp_terms` VALUES("21", "baby shower gift", "baby-shower-gift", "0");
INSERT INTO `wp_terms` VALUES("22", "bags", "bags", "0");
INSERT INTO `wp_terms` VALUES("23", "handbags", "handbags", "0");
INSERT INTO `wp_terms` VALUES("24", "Misc", "misc", "0");
INSERT INTO `wp_terms` VALUES("29", "Items", "item", "0");
INSERT INTO `wp_terms` VALUES("30", "Items recommended", "itemreco", "0");
INSERT INTO `wp_terms` VALUES("31", "New items", "itemnew", "0");
INSERT INTO `wp_terms` VALUES("32", "Item genre", "itemgenre", "0");
INSERT INTO `wp_terms` VALUES("33", "Featured Product", "featured-product", "0");
INSERT INTO `wp_terms` VALUES("34", "SliderHomePage", "sliderhomepage", "0");
INSERT INTO `wp_terms` VALUES("35", "Our Blog", "our-blog", "0");
INSERT INTO `wp_terms` VALUES("36", "What our Clients have to say", "testimonials", "0");

/* INSERT TABLE DATA: wp_usces_log */
INSERT INTO `wp_usces_log` VALUES("1", "2015-03-09 07:46:43", "USCES_UP07 : Array\n(\n)\n", "", "");
INSERT INTO `wp_usces_log` VALUES("2", "2015-03-09 07:46:43", "USCES_UP11 : Array\n(\n)\n", "", "");
INSERT INTO `wp_usces_log` VALUES("3", "2015-03-09 07:46:43", "USCES_UP14 : Completed", "", "");
INSERT INTO `wp_usces_log` VALUES("4", "2015-03-09 07:46:43", "USCES_UP141 : Completed", "", "");

/* INSERT TABLE DATA: wp_usermeta */
INSERT INTO `wp_usermeta` VALUES("1", "1", "nickname", "chequerbox");
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", "wp_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("11", "1", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("12", "1", "dismissed_wp_pointers", "wp360_locks,wp390_widgets,wp410_dfw");
INSERT INTO `wp_usermeta` VALUES("13", "1", "show_welcome_panel", "1");
INSERT INTO `wp_usermeta` VALUES("14", "1", "session_tokens", "a:2:{s:64:\"abd28dcba3932eace471dad5cd2fb60159d5add7d4b4efc3eacc3bfa821c003d\";a:4:{s:10:\"expiration\";i:1444153202;s:2:\"ip\";s:12:\"105.208.89.2\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36\";s:5:\"login\";i:1443980402;}s:64:\"76ec2f4f2d6cc4efd9dfa0d9dfefc9f640a7aafd927fbfaa3a48d619154efdc7\";a:4:{s:10:\"expiration\";i:1444296170;s:2:\"ip\";s:13:\"41.161.76.247\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36\";s:5:\"login\";i:1444123370;}}");
INSERT INTO `wp_usermeta` VALUES("15", "1", "wp_dashboard_quick_press_last_post_id", "1269");
INSERT INTO `wp_usermeta` VALUES("16", "1", "wp_user-settings", "imgsize=medium&libraryContent=browse&align=center&urlbutton=none&editor=tinymce&hidetb=1&wplink=1");
INSERT INTO `wp_usermeta` VALUES("17", "1", "wp_user-settings-time", "1427396278");
INSERT INTO `wp_usermeta` VALUES("18", "1", "nav_menu_recently_edited", "9");
INSERT INTO `wp_usermeta` VALUES("19", "1", "managenav-menuscolumnshidden", "a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}");
INSERT INTO `wp_usermeta` VALUES("20", "1", "metaboxhidden_nav-menus", "a:5:{i:0;s:8:\"add-post\";i:1;s:11:\"add-product\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-product_cat\";i:4;s:15:\"add-product_tag\";}");
INSERT INTO `wp_usermeta` VALUES("21", "1", "signup_ip", "197.76.143.103");
INSERT INTO `wp_usermeta` VALUES("22", "2", "nickname", "pc");
INSERT INTO `wp_usermeta` VALUES("23", "2", "first_name", "Joleen");
INSERT INTO `wp_usermeta` VALUES("24", "2", "last_name", "Eden");
INSERT INTO `wp_usermeta` VALUES("25", "2", "description", "");
INSERT INTO `wp_usermeta` VALUES("26", "2", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("27", "2", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("28", "2", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("29", "2", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("30", "2", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("31", "2", "wp_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("32", "2", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("33", "2", "dismissed_wp_pointers", "wp360_locks,wp390_widgets,wp410_dfw");
INSERT INTO `wp_usermeta` VALUES("34", "1", "wporg_favorites", "kaira");
INSERT INTO `wp_usermeta` VALUES("36", "1", "closedpostboxes_product", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("37", "1", "metaboxhidden_product", "a:1:{i:0;s:7:\"slugdiv\";}");
INSERT INTO `wp_usermeta` VALUES("38", "1", "billing_country", "ZA");
INSERT INTO `wp_usermeta` VALUES("39", "1", "billing_first_name", "Anneke");
INSERT INTO `wp_usermeta` VALUES("40", "1", "billing_last_name", "Weber");
INSERT INTO `wp_usermeta` VALUES("41", "1", "billing_company", "");
INSERT INTO `wp_usermeta` VALUES("42", "1", "billing_address_1", "");
INSERT INTO `wp_usermeta` VALUES("43", "1", "billing_address_2", "");
INSERT INTO `wp_usermeta` VALUES("44", "1", "billing_city", "");
INSERT INTO `wp_usermeta` VALUES("45", "1", "billing_state", "GP");
INSERT INTO `wp_usermeta` VALUES("46", "1", "billing_postcode", "");
INSERT INTO `wp_usermeta` VALUES("47", "1", "billing_email", "anneke.weber@yahoo.com");
INSERT INTO `wp_usermeta` VALUES("48", "1", "billing_phone", "");
INSERT INTO `wp_usermeta` VALUES("49", "1", "shipping_country", "ZA");
INSERT INTO `wp_usermeta` VALUES("50", "1", "shipping_first_name", "Anneke");
INSERT INTO `wp_usermeta` VALUES("51", "1", "shipping_last_name", "Weber");
INSERT INTO `wp_usermeta` VALUES("52", "1", "shipping_company", "");
INSERT INTO `wp_usermeta` VALUES("53", "1", "shipping_address_1", "");
INSERT INTO `wp_usermeta` VALUES("54", "1", "shipping_address_2", "");
INSERT INTO `wp_usermeta` VALUES("55", "1", "shipping_city", "");
INSERT INTO `wp_usermeta` VALUES("56", "1", "shipping_state", "GP");
INSERT INTO `wp_usermeta` VALUES("57", "1", "shipping_postcode", "");
INSERT INTO `wp_usermeta` VALUES("58", "1", "_woocommerce_persistent_cart", "a:1:{s:4:\"cart\";a:1:{s:32:\"398e5476fb27f881e383514067fc1849\";a:9:{s:10:\"product_id\";i:769;s:12:\"variation_id\";i:770;s:9:\"variation\";a:1:{s:16:\"attribute_colour\";s:9:\"Turquoise\";}s:8:\"quantity\";i:1;s:10:\"line_total\";d:349;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:349;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}}");
INSERT INTO `wp_usermeta` VALUES("59", "2", "billing_first_name", "");
INSERT INTO `wp_usermeta` VALUES("60", "2", "billing_last_name", "");
INSERT INTO `wp_usermeta` VALUES("61", "2", "billing_company", "");
INSERT INTO `wp_usermeta` VALUES("62", "2", "billing_address_1", "");
INSERT INTO `wp_usermeta` VALUES("63", "2", "billing_address_2", "");
INSERT INTO `wp_usermeta` VALUES("64", "2", "billing_city", "");
INSERT INTO `wp_usermeta` VALUES("65", "2", "billing_postcode", "");
INSERT INTO `wp_usermeta` VALUES("66", "2", "billing_country", "");
INSERT INTO `wp_usermeta` VALUES("67", "2", "billing_state", "");
INSERT INTO `wp_usermeta` VALUES("68", "2", "billing_phone", "");
INSERT INTO `wp_usermeta` VALUES("69", "2", "billing_email", "");
INSERT INTO `wp_usermeta` VALUES("70", "2", "shipping_first_name", "");
INSERT INTO `wp_usermeta` VALUES("71", "2", "shipping_last_name", "");
INSERT INTO `wp_usermeta` VALUES("72", "2", "shipping_company", "");
INSERT INTO `wp_usermeta` VALUES("73", "2", "shipping_address_1", "");
INSERT INTO `wp_usermeta` VALUES("74", "2", "shipping_address_2", "");
INSERT INTO `wp_usermeta` VALUES("75", "2", "shipping_city", "");
INSERT INTO `wp_usermeta` VALUES("76", "2", "shipping_postcode", "");
INSERT INTO `wp_usermeta` VALUES("77", "2", "shipping_country", "");
INSERT INTO `wp_usermeta` VALUES("78", "2", "shipping_state", "");
INSERT INTO `wp_usermeta` VALUES("79", "1", "_yoast_wpseo_profile_updated", "1437842364");
INSERT INTO `wp_usermeta` VALUES("80", "2", "_yoast_wpseo_profile_updated", "1427565258");
INSERT INTO `wp_usermeta` VALUES("81", "1", "vfb-form-settings", "a:3:{i:1;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"notification\";}i:2;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:13:\"email-details\";}i:3;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"notification\";}}");
INSERT INTO `wp_usermeta` VALUES("82", "1", "_order_count", "");
INSERT INTO `wp_usermeta` VALUES("83", "1", "_money_spent", "");
INSERT INTO `wp_usermeta` VALUES("84", "2", "session_tokens", "a:1:{s:64:\"5c0903b57db4f5b8a35db558933633585cd16273bf01d206431d6a65bf8df7ed\";a:4:{s:10:\"expiration\";i:1443015027;s:2:\"ip\";s:12:\"169.0.81.104\";s:2:\"ua\";s:108:\"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.93 Safari/537.36\";s:5:\"login\";i:1442842227;}}");
INSERT INTO `wp_usermeta` VALUES("85", "2", "wp_dashboard_quick_press_last_post_id", "1267");
INSERT INTO `wp_usermeta` VALUES("86", "2", "wp_user-settings", "libraryContent=browse&editor=tinymce&imgsize=large&align=center");
INSERT INTO `wp_usermeta` VALUES("87", "2", "wp_user-settings-time", "1436966596");
INSERT INTO `wp_usermeta` VALUES("88", "1", "closedpostboxes_dashboard", "a:1:{i:0;s:21:\"dashboard_quick_press\";}");
INSERT INTO `wp_usermeta` VALUES("89", "1", "metaboxhidden_dashboard", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("90", "1", "AtD_options", "");
INSERT INTO `wp_usermeta` VALUES("91", "1", "AtD_check_when", "");
INSERT INTO `wp_usermeta` VALUES("92", "1", "AtD_guess_lang", "");
INSERT INTO `wp_usermeta` VALUES("93", "1", "AtD_ignored_phrases", "");
INSERT INTO `wp_usermeta` VALUES("94", "1", "googleplus", "");
INSERT INTO `wp_usermeta` VALUES("95", "1", "twitter", "");
INSERT INTO `wp_usermeta` VALUES("96", "1", "facebook", "");
INSERT INTO `wp_usermeta` VALUES("97", "1", "wpseo_ignore_tour", "1");
INSERT INTO `wp_usermeta` VALUES("98", "2", "wpseo_ignore_tour", "1");

/* INSERT TABLE DATA: wp_users */
INSERT INTO `wp_users` VALUES("1", "admin", "$P$BFCMNsdV0o4J6HkDjMzw3dYPFc586m.", "admin", "anneke.weber@yahoo.com", "", "2015-02-03 06:40:08", "", "0", "admin");
INSERT INTO `wp_users` VALUES("2", "pc", "$P$Bg5.wwFi5QwHotfG91yEhXld1RbvyQ/", "pc", "joleeneden@yahoo.com", "", "2015-03-06 12:15:27", "", "0", "pc");

/* INSERT TABLE DATA: wp_visual_form_builder_entries */
INSERT INTO `wp_visual_form_builder_entries` VALUES("1", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"AADILA\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"aadilasibda@gmail.com\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0747376970\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:97:\"Hi. Im having a 21st on the 25th of April. I am from Benoni. Am just interested in prices please.\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:1:{i:0;s:22:\"anneke.weber@yahoo.com\";}", "2015-04-15 18:40:31", "41.48.16.51", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("2", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Anneke Weber\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"anneke.weber@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+27832546695\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"testing form\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"14\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-04-15 21:07:21", "197.76.143.103", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("3", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Bridget Altenkirk\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"bridget.altenkirk@gmail.com\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0476263774\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:387:\"Hi there, you were recommended to me by Charneel (you did the photo booth at Ursula&#039;s bachelorette).\r\n\r\nI am having my 30th on 6 June and am keen to have a photo booth - I am looking at a &quot;Old hollywood glam&quot; theme. Would you be able to assist? Could you please quote me if you are :)\r\n\r\nThe venue is Panettone in Zoo lake, so its in the Parkhurst area.\r\n\r\nThanks SO much!\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-04-22 08:01:30", "203.11.225.5", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("4", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"A Weber\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Anneke.Weber@gmail.com\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+27832546695\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"testing form\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"14\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-06-22 18:52:00", "105.208.86.71", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("5", "2", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:2:\"11\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:16:\"name-and-surname\";s:4:\"name\";s:16:\"Name and Surname\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Anneke\";}i:2;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:14:\"contact-number\";s:4:\"name\";s:14:\"Contact Number\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"012326654654\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:13:\"email-address\";s:4:\"name\";s:13:\"Email Address\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"anneke.weber@yahoo.com\";}i:4;a:7:{s:2:\"id\";s:2:\"20\";s:4:\"slug\";s:20:\"any-special-requests\";s:4:\"name\";s:21:\"Any special requests?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"testing form\";}i:5;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"14\";}i:7;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}", "Vending Machine Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-06-22 18:55:04", "105.208.86.71", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("6", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"A Weber\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Anneke.Weber@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+27832546695\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:82:\"laat weet my as jy hierdie kry? Hierdie is toets nommer twee. Sidebar contact form\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"14\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-06-23 18:15:49", "105.208.83.162", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("7", "2", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:2:\"11\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:16:\"name-and-surname\";s:4:\"name\";s:16:\"Name and Surname\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Anneke\";}i:2;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:14:\"contact-number\";s:4:\"name\";s:14:\"Contact Number\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"012326654654\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:13:\"email-address\";s:4:\"name\";s:13:\"Email Address\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"anneke.weber@yahoo.com\";}i:4;a:7:{s:2:\"id\";s:2:\"20\";s:4:\"slug\";s:20:\"any-special-requests\";s:4:\"name\";s:21:\"Any special requests?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:95:\"Laat weet my as jy hierdie kry? Die is die vorm op die Vending machine bladsy. Testing number 3\";}i:5;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"14\";}i:7;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}", "Vending Machine Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-06-23 18:16:25", "105.208.83.162", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("8", "3", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:2:\"21\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"A Weber\";}i:2;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"anneke.weber@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+27832546695\";}i:4;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:117:\"Ek vermoed ek het dalk die issue gekry. Hopelik sal julle nou hierdie bladsy s&#039;n ook nou kry? Contact page form.\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:2:\"14\";}i:7;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-06-23 18:23:04", "105.208.83.162", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("9", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"joleen\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"joleeneden@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0723756254\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Test photo booth contact form\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"22\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-06-24 08:06:08", "41.183.86.10", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("10", "3", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:2:\"21\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"James\";}i:2;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"smile@boothnation.co.za\";}i:3;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0724803394\";}i:4;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:327:\"Hi guys, I run boothnation, photo booth company in Cape Town! \r\n\r\nI&#039;ve got a safari themed green screen event coming up and notice you&#039;ve done something similar. Would you like to do an image swap?  I&#039;ve got some good ones of Cape Town and other abstract ones including key sites around the world. Thanks, james.\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:2:\"12\";}i:7;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-07-22 09:57:25", "105.229.165.182", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("11", "3", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:2:\"21\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Tamryn McMillan\";}i:2;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"tamrynmc@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0823120651\";}i:4;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:81:\"please could i get a quote on a photo booth for the 10th October 2015 for 3hours.\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:2:\"23\";}i:7;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-07-22 19:25:13", "41.133.190.166", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("12", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Nicole\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"elly2266@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0742895049\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:145:\"Hi, Ï would like to know if you have availability for the 05 December 2015? and how much it will cost?\r\nPlease advise as to what it all includes\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"56\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-07-26 13:31:14", "197.89.205.111", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("13", "3", "a:9:{i:0;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:2:\"21\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Michelle\";}i:2;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"michlharrison81@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0799207071\";}i:4;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:256:\"Hi, I am enquiring about your photobooth options please.\r\n\r\nFirst of all, do you service Durban area of are you only based in JHB?\r\nPlease send me the packages and pricelists of both the photobooth and green screen options. \r\n\r\nThanks in advance.\r\nMichelle\";}i:5;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:7:\"section\";s:4:\"name\";s:7:\"Section\";s:4:\"type\";s:7:\"section\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:2:\"10\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-07-27 13:22:50", "105.237.151.189", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("14", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"Carla\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"carlaerasmus2705@gmail.com\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"072 415 9929\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:245:\"HI THERE,\r\n\r\nIM HAVING A PARTY THIS SATURDAY EVENING IN BLOUBERG, ARE YOU AVAILABLE? I WOULD LIKE TO HIRE OUT YOUR TRADITIONAL PHOTOBOOTH. PLEASE SEND IMAGES OF BOOTH AS WELL AS PRICE FOR ABOUT 4 HOURS!\r\nPLEASE GET BACK TO ME URGENTLY\r\n\r\nREGARDS\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"34\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-07-29 08:49:39", "105.237.79.206", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("15", "3", "a:9:{i:0;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:2:\"21\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"Kirsten\";}i:2;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"kirst4031@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0726254128\";}i:4;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:178:\"Hi there please send me a quote for two hours, in the Fourways Area, 50 people and props for the 16/01/2016.Please let me know what the quote includes.\r\n\r\nThanks\r\nKirsten Webster\";}i:5;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:7:\"section\";s:4:\"name\";s:7:\"Section\";s:4:\"type\";s:7:\"section\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:2:\"22\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-07-29 14:05:38", "105.184.237.35", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("16", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"Refilwe\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"schilwane@gmail.com\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0828869898\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:196:\"I would like a quote for a booth (not sure which one will be better at this stage) for my daughter&#039;s 5 year old birthday party which will be on the 5th September in brackenhurst.\r\n\r\nThank you\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-07-29 14:57:14", "196.41.221.2", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("17", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Melissa Volschenk\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:34:\"melissa.volschenk@bluepencil.co.za\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0114845364\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:206:\"Hi there,  we are looking for 2 photo booths for our year end function for 5 hours at the Woodmead Johannesburg country club. Our theme is Black &amp; white. Date: 14 November 2015 to start at about 19:30pm\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"25\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-07-30 11:13:17", "196.30.84.6", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("18", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"elsie\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"admin@berju.co.za\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0847803530\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:94:\"Please send me a quote for the 19 September 2015 for 2 hours. for a wedding.\r\n\r\nregards\r\nelsie\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"17\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-07-30 12:16:29", "41.135.51.23", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("19", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Angelina\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"angelina84@eac.co.za\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0728090146\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:113:\"Please quote me for traditional photo booth 10/10/15 at Shelanti Game Reserve 350km north of Joburg for a wedding\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-07-31 10:57:16", "105.210.121.159", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("20", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Carla Cronje\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"carla.vandermerwe20@gmail.com\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0723924673\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:100:\"Quote for a photobooth, 14 November, Anderland, Potchefstroom, 14:00 - 17:00\r\n\r\nKind regards \r\nCarla\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"46\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-08-10 09:59:27", "41.13.116.192", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("21", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Tumelo\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"digdeepromos@gmail.com\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0815548299\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:120:\"Hello there, where are you based. Do you sell photo booths buy anh chance or just render out the service?\r\n\r\n\r\nThank you\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"67\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-08-20 16:27:37", "82.145.222.9", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("22", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Olivia\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"olivia.pieters@gmail.com\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0848400844\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:231:\"Hi! \r\n\r\nI am interested in your photo booth for my wedding.\r\n16 DEC 2015 at Leipzig, Nuy Valley, Worcester.\r\nCan you please advise if you are available and also let me know about the rates and what it includes.\r\n\r\nthanks!\r\n\r\nOlivia\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-08-23 15:42:08", "41.13.204.79", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("23", "3", "a:9:{i:0;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:2:\"21\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Tamryn McMillan\";}i:2;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"tamrynmc@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0823120651\";}i:4;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:171:\"i need to hire the traditional photo booth for the 10th October 2015 for a 2hr period the address is 1 de la rey rd morningside . could yoou please could we have a quote .\";}i:5;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:7:\"section\";s:4:\"name\";s:7:\"Section\";s:4:\"type\";s:7:\"section\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:2:\"26\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-08-25 19:43:08", "41.135.102.43", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("24", "3", "a:9:{i:0;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:2:\"21\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"kathy Basson\";}i:2;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"kathy@micsouthafrica.co.za\";}i:3;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+27824684737\";}i:4;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:165:\"please may i have a quote for green screen and photo both for a corporate event  at katys palace bar on October 22 for about 3 hours.  Do you operate in CPT as well?\";}i:5;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:7:\"section\";s:4:\"name\";s:7:\"Section\";s:4:\"type\";s:7:\"section\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:2:\"56\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-08-26 12:45:10", "41.242.196.34", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("25", "3", "a:9:{i:0;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:2:\"21\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"kathy Basson\";}i:2;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"kathy@micsouthafrica.co.za\";}i:3;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+27824684737\";}i:4;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:165:\"please may i have a quote for green screen and photo both for a corporate event  at katys palace bar on October 22 for about 3 hours.  Do you operate in CPT as well?\";}i:5;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:7:\"section\";s:4:\"name\";s:7:\"Section\";s:4:\"type\";s:7:\"section\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:2:\"56\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-08-26 12:45:14", "41.242.196.34", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("26", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Ane Snyman\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"anemariesnyman@gmail.com\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0824909244\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:220:\"I am getting married 2 July 2016. I really want a photo booth at my wedding. The wedding is going to be at Brenton Haven in Brenton-on-Sea. What will it cost to have a photo booth there for 6 hours, including print outs.\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"20\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-08-28 11:20:15", "197.83.197.81", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("27", "3", "a:9:{i:0;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:2:\"21\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Romaen Tiffin\";}i:2;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"maenit85@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0725910870\";}i:4;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:83:\"Hi there i would like to find out about your packages for a wedding in August 2016?\";}i:5;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:7:\"section\";s:4:\"name\";s:7:\"Section\";s:4:\"type\";s:7:\"section\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-09-03 06:26:58", "105.210.114.231", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("28", "1", "a:8:{i:0;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:2:\"10\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"tanusha\";}i:2;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"tanusha.kirsten@thermofisher.com\";}i:3;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0820952343\";}i:4;a:7:{s:2:\"id\";s:1:\"9\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:165:\"Please can you quote me on the green screen and a photobooth. I have an event on the 5th of october in Centurion and would like to use on of the options. \r\n\r\nthanks!\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"54\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-09-15 10:03:36", "46.226.218.20", "1");
INSERT INTO `wp_visual_form_builder_entries` VALUES("29", "3", "a:9:{i:0;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:2:\"21\";s:4:\"name\";s:0:\"\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:4:\"name\";s:4:\"name\";s:4:\"Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Evelyn Tinka\";}i:2;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Evelyn.tinka@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:5:\"phone\";s:4:\"name\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0714210012\";}i:4;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:19:\"how-can-we-help-you\";s:4:\"name\";s:20:\"How can we help you?\";s:4:\"type\";s:8:\"textarea\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:39:\"How much is it to rent your photo booth\";}i:5;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:7:\"section\";s:4:\"name\";s:7:\"Section\";s:4:\"type\";s:7:\"section\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:2:\"45\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"22\";s:5:\"value\";s:0:\"\";}}", "Contact Request from Chequerbox Website", "Chequerbox", "info@chequerbox.co.za", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "2015-09-21 20:16:23", "196.216.137.20", "1");

/* INSERT TABLE DATA: wp_visual_form_builder_fields */
INSERT INTO `wp_visual_form_builder_fields` VALUES("10", "1", "10", "fieldset", "", "", "", "0", "0", "", "", "", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("2", "1", "verification", "verification", "", "", "Verification", "5", "0", "", "", "", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("3", "1", "please-enter-any-two-digits", "secret", "", "Example: 12", "Please enter any two digits", "6", "2", "", "yes", "medium", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("4", "1", "submit", "submit", "", "", "Submit", "7", "2", "", "", "", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("5", "1", "name", "text", "", "", "Name", "1", "0", "", "yes", "medium", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("11", "2", "11", "fieldset", "", "", "", "0", "0", "", "", "", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("7", "1", "email", "email", "", "", "Email", "2", "0", "email", "yes", "medium", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("8", "1", "phone", "phone", "", "", "Phone", "3", "0", "phone", "yes", "medium", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("9", "1", "how-can-we-help-you", "textarea", "", "", "How can we help you?", "4", "0", "", "no", "medium", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("12", "2", "verification", "verification", "", "", "Verification", "5", "0", "", "", "", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("13", "2", "please-enter-any-two-digits", "secret", "", "Example: 12", "Please enter any two digits", "6", "12", "", "yes", "medium", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("14", "2", "submit", "submit", "", "", "Submit", "7", "12", "", "", "", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("15", "2", "name-and-surname", "text", "", "", "Name and Surname", "1", "0", "", "yes", "medium", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("19", "2", "email-address", "email", "", "Please note that we will in no way send you unwarranted spam. Your privacy is important to us.", "Email Address", "3", "0", "email", "yes", "medium", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("18", "2", "contact-number", "phone", "", "", "Contact Number", "2", "0", "phone", "yes", "medium", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("20", "2", "any-special-requests", "textarea", "", "", "Any special requests?", "4", "0", "", "no", "medium", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("21", "3", "21", "fieldset", "", "", "", "0", "0", "", "", "", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("22", "3", "verification", "verification", "", "", "Verification", "6", "0", "", "", "", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("23", "3", "please-enter-any-two-digits", "secret", "", "Example: 12", "Please enter any two digits", "7", "22", "", "yes", "medium", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("24", "3", "submit", "submit", "", "", "Submit", "8", "22", "", "", "", "", "", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("25", "3", "name", "text", "", "", "Name", "1", "0", "", "yes", "medium", "", "left-two-thirds", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("26", "3", "email", "email", "", "", "Email", "2", "0", "email", "yes", "medium", "", "left-two-thirds", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("27", "3", "phone", "phone", "", "", "Phone", "3", "0", "phone", "yes", "medium", "", "left-two-thirds", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("28", "3", "how-can-we-help-you", "textarea", "", "", "How can we help you?", "4", "0", "", "no", "medium", "", "left-two-thirds", "");
INSERT INTO `wp_visual_form_builder_fields` VALUES("29", "3", "section", "section", "", NULL, "Section", "5", "0", "", NULL, "medium", NULL, NULL, NULL);

/* INSERT TABLE DATA: wp_visual_form_builder_forms */
INSERT INTO `wp_visual_form_builder_forms` VALUES("1", "quick-contact", "Quick Contact", "Contact Request from Chequerbox Website", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "info@chequerbox.co.za", "Chequerbox", "", "", "text", "&lt;p id=\\\"form_success\\\"&gt;Your form was successfully submitted. Thank you for contacting us.&lt;/p&gt;\n", "", "", "", "", "", "", "", "");
INSERT INTO `wp_visual_form_builder_forms` VALUES("2", "vending-machine-request", "Vending Machine Request", "Vending Machine Request from Chequerbox Website", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "info@chequerbox.co.za", "Chequerbox", "", "", "text", "&lt;p id=\\\"form_success\\\"&gt;Your form was successfully submitted. Thank you for contacting us.&lt;/p&gt;\n", "", "", "", "", "", "", "", "");
INSERT INTO `wp_visual_form_builder_forms` VALUES("3", "contact-us-page", "Contact US page", "Contact Request from Chequerbox Website", "a:2:{i:0;s:22:\"anneke.weber@yahoo.com\";i:1;s:21:\"info@chequerbox.co.za\";}", "info@chequerbox.co.za", "Chequerbox", "", "", "text", "&lt;p id=\\\"form_success\\\"&gt;Your form was successfully submitted. Thank you for contacting us.&lt;/p&gt;\n", "1", "Chequerbox", "info@chequerbox.co.za", "26", "Thank you for contacting us!", "&lt;p&gt;We will get back to you shortly. If we haven\\\'t responded within the next 24 hours, please don\\\'t hesitate to give us a call, or visit our facebook page.&lt;/p&gt;\n", "1", "");

/* INSERT TABLE DATA: wp_woocommerce_order_itemmeta */
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("1", "1", "_qty", "1");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("2", "1", "_tax_class", "");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("3", "1", "_product_id", "872");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("4", "1", "_variation_id", "877");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("5", "1", "_line_subtotal", "450");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("6", "1", "_line_total", "450");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("7", "1", "_line_subtotal_tax", "0");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("8", "1", "_line_tax", "0");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("9", "1", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("10", "1", "colour", "Navy Polka Dots");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("11", "2", "method_id", "free_shipping");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("12", "2", "cost", "0");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("13", "2", "taxes", "a:0:{}");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("14", "3", "_qty", "1");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("15", "3", "_tax_class", "");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("16", "3", "_product_id", "810");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("17", "3", "_variation_id", "0");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("18", "3", "_line_subtotal", "595");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("19", "3", "_line_total", "595");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("20", "3", "_line_subtotal_tax", "0");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("21", "3", "_line_tax", "0");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("22", "3", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("23", "4", "method_id", "flat_rate");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("24", "4", "cost", "55");
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES("25", "4", "taxes", "a:0:{}");

/* INSERT TABLE DATA: wp_woocommerce_order_items */
INSERT INTO `wp_woocommerce_order_items` VALUES("1", "Wedding Day Kits", "line_item", "1199");
INSERT INTO `wp_woocommerce_order_items` VALUES("2", "Free Shipping", "shipping", "1199");
INSERT INTO `wp_woocommerce_order_items` VALUES("3", "Baby Medi Box", "line_item", "1210");
INSERT INTO `wp_woocommerce_order_items` VALUES("4", "Flat Rate", "shipping", "1210");

/* INSERT TABLE DATA: wp_woocommerce_termmeta */
INSERT INTO `wp_woocommerce_termmeta` VALUES("1", "14", "order", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("2", "14", "product_count_product_cat", "1");
INSERT INTO `wp_woocommerce_termmeta` VALUES("3", "17", "order", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("4", "17", "display_type", "products");
INSERT INTO `wp_woocommerce_termmeta` VALUES("5", "17", "thumbnail_id", "805");
INSERT INTO `wp_woocommerce_termmeta` VALUES("6", "18", "order", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("7", "18", "display_type", "");
INSERT INTO `wp_woocommerce_termmeta` VALUES("8", "18", "thumbnail_id", "806");
INSERT INTO `wp_woocommerce_termmeta` VALUES("9", "19", "order", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("10", "19", "display_type", "");
INSERT INTO `wp_woocommerce_termmeta` VALUES("11", "19", "thumbnail_id", "808");
INSERT INTO `wp_woocommerce_termmeta` VALUES("12", "17", "product_count_product_cat", "1");
INSERT INTO `wp_woocommerce_termmeta` VALUES("13", "20", "product_count_product_tag", "1");
INSERT INTO `wp_woocommerce_termmeta` VALUES("14", "21", "product_count_product_tag", "1");
INSERT INTO `wp_woocommerce_termmeta` VALUES("15", "18", "product_count_product_cat", "4");
INSERT INTO `wp_woocommerce_termmeta` VALUES("16", "22", "product_count_product_tag", "4");
INSERT INTO `wp_woocommerce_termmeta` VALUES("17", "23", "product_count_product_tag", "4");
INSERT INTO `wp_woocommerce_termmeta` VALUES("18", "19", "product_count_product_cat", "6");
INSERT INTO `wp_woocommerce_termmeta` VALUES("19", "14", "display_type", "");
INSERT INTO `wp_woocommerce_termmeta` VALUES("20", "14", "thumbnail_id", "804");

SET FOREIGN_KEY_CHECKS = 1; 

/* Duplicator WordPress Timestamp: 2015-10-06 13:28:50*/
/* DUPLICATOR_MYSQLDUMP_EOF */
